From 850d14115f196a207ad2cfe230f40a5a6fd0d649 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 30 Jan 2025 12:22:05 +0900 Subject: [PATCH 01/32] Fix: de --- .../_pro/outer/deprecated/save/index.js | 71 +++---------------- 1 file changed, 11 insertions(+), 60 deletions(-) diff --git a/src/blocks/_pro/outer/deprecated/save/index.js b/src/blocks/_pro/outer/deprecated/save/index.js index e2e67e7a1..69c80a13f 100644 --- a/src/blocks/_pro/outer/deprecated/save/index.js +++ b/src/blocks/_pro/outer/deprecated/save/index.js @@ -11,7 +11,6 @@ import save1_76_0 from './1.76.0/save'; import save1_89_0 from './1.89.0/save'; import save1_92_1 from './1.92.1/save'; import save1_93_0 from './1.93.0/save'; -import save1_93_2 from './1.93.2/save'; const blockAttributes = { bgColor: { @@ -72,7 +71,7 @@ const blockAttributes = { }, borderColor: { type: 'string', - default: '#fff', + default: '#000', }, borderRadius: { type: 'number', @@ -133,52 +132,32 @@ const blockAttributes4 = { ...blockAttributes3, levelSettingPerDevice: { type: 'boolean', - default: false }, upper_level_mobile: { type: 'number', - default: 0 }, upper_level_tablet: { type: 'number', - default: 0 }, upper_level_pc: { type: 'number', - default: 0 }, lower_level_mobile: { type: 'number', - default: 0 }, lower_level_tablet: { type: 'number', - default: 0 }, lower_level_pc: { type: 'number', - default: 0 }, }; // 1.64.0 から attributes を変更 const blockAttributes5 = { ...blockAttributes4, - minHeightValuePC: { - type: 'number', - default: 0 - }, - minHeightValueTablet: { - type: 'number', - default: 0 - }, - minHeightValueMobile: { - type: 'number', - default: 0 - }, - minHeightUnit: { - type: 'string', - default: 'px' + minHeight: { + type: 'object', }, }; @@ -207,49 +186,21 @@ const blockAttributes7 = { }, }; -/* -// save1_89_0 から attributes を変更 -const blockAttributes8 = { - ...blockAttributes7, - bgFocalPointPC: { - type: 'object', - default: { 'x': 0.5, 'y': 0.5 } - }, - bgFocalPointTablet: { - type: 'object', - default: { 'x': 0.5, 'y': 0.5 } - }, - bgFocalPointMobile: { - type: 'object', - default: { 'x': 0.5, 'y': 0.5 } - }, - enableFocalPointPC: { - type: 'boolean', - default: false - }, - enableFocalPointTablet: { - type: 'boolean', - default: false - }, - enableFocalPointMobile: { - type: 'boolean', - default: false - }, -}; -*/ - const deprecated = [ - { - attributes: blockAttributes7, - save: save1_93_2, - }, { attributes: blockAttributes7, save: save1_93_0, }, { - attributes: blockAttributes7, + attributes: blockAttributes6, save: save1_92_1, + migrate: (attributes) => { + return { + ...attributes, + relAttribute: attributes.relAttribute ?? '', + linkDescription: attributes.linkDescription ?? '', + }; + }, }, { attributes: blockAttributes6, From 098cca10b35ea18cfcac3c616033ab9d660b32ba Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 31 Jan 2025 09:53:50 +0900 Subject: [PATCH 02/32] Merge develop file --- .../_pro/outer/deprecated/save/index.js | 58 ++++++++++++++++++- 1 file changed, 55 insertions(+), 3 deletions(-) diff --git a/src/blocks/_pro/outer/deprecated/save/index.js b/src/blocks/_pro/outer/deprecated/save/index.js index 69c80a13f..9e9fa40f6 100644 --- a/src/blocks/_pro/outer/deprecated/save/index.js +++ b/src/blocks/_pro/outer/deprecated/save/index.js @@ -11,6 +11,7 @@ import save1_76_0 from './1.76.0/save'; import save1_89_0 from './1.89.0/save'; import save1_92_1 from './1.92.1/save'; import save1_93_0 from './1.93.0/save'; +import save1_93_2 from './1.93.2/save'; const blockAttributes = { bgColor: { @@ -71,7 +72,7 @@ const blockAttributes = { }, borderColor: { type: 'string', - default: '#000', + default: '#fff', }, borderRadius: { type: 'number', @@ -132,32 +133,52 @@ const blockAttributes4 = { ...blockAttributes3, levelSettingPerDevice: { type: 'boolean', + default: false }, upper_level_mobile: { type: 'number', + default: 0 }, upper_level_tablet: { type: 'number', + default: 0 }, upper_level_pc: { type: 'number', + default: 0 }, lower_level_mobile: { type: 'number', + default: 0 }, lower_level_tablet: { type: 'number', + default: 0 }, lower_level_pc: { type: 'number', + default: 0 }, }; // 1.64.0 から attributes を変更 const blockAttributes5 = { ...blockAttributes4, - minHeight: { - type: 'object', + minHeightValuePC: { + type: 'number', + default: 0 + }, + minHeightValueTablet: { + type: 'number', + default: 0 + }, + minHeightValueMobile: { + type: 'number', + default: 0 + }, + minHeightUnit: { + type: 'string', + default: 'px' }, }; @@ -186,6 +207,37 @@ const blockAttributes7 = { }, }; +/* +// save1_89_0 から attributes を変更 +const blockAttributes8 = { + ...blockAttributes7, + bgFocalPointPC: { + type: 'object', + default: { 'x': 0.5, 'y': 0.5 } + }, + bgFocalPointTablet: { + type: 'object', + default: { 'x': 0.5, 'y': 0.5 } + }, + bgFocalPointMobile: { + type: 'object', + default: { 'x': 0.5, 'y': 0.5 } + }, + enableFocalPointPC: { + type: 'boolean', + default: false + }, + enableFocalPointTablet: { + type: 'boolean', + default: false + }, + enableFocalPointMobile: { + type: 'boolean', + default: false + }, +}; +*/ + const deprecated = [ { attributes: blockAttributes7, From 6f7e0e5ceccda29e7966e5cc5e6c8c524dfc6094 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 31 Jan 2025 09:55:24 +0900 Subject: [PATCH 03/32] Merge develop file --- src/blocks/_pro/outer/deprecated/save/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/blocks/_pro/outer/deprecated/save/index.js b/src/blocks/_pro/outer/deprecated/save/index.js index 9e9fa40f6..d3040d532 100644 --- a/src/blocks/_pro/outer/deprecated/save/index.js +++ b/src/blocks/_pro/outer/deprecated/save/index.js @@ -239,6 +239,10 @@ const blockAttributes8 = { */ const deprecated = [ + { + attributes: blockAttributes7, + save: save1_93_2, + }, { attributes: blockAttributes7, save: save1_93_0, From 64c56030b46596976cabf7c152c793ae1138b7a7 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 19 Feb 2025 15:24:41 +0800 Subject: [PATCH 04/32] update readme --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index cfbd1cab0..4de063ddb 100644 --- a/readme.txt +++ b/readme.txt @@ -108,6 +108,9 @@ e.g. == Changelog == += 1.96.1 = +[ Other ] Rollback 1.95.0.3 + = 1.96.0 = [ Add function ][ Slider / group / Icon / Grid Column Card (Pro) ] Added noreferrer, nofollow, and link description options to the link feature. [ Specification change ][ Animation (Pro) / Fixed Display (Pro) / Outer (Pro) ] Added support for layout.allowJustification: false, allowing full-width/wide alignment in block themes where wrapped blocks previously did not appear as full-width or wide in the editor. From 76c26289f56893e811206118b6ab3c75f5f20544 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Wed, 19 Feb 2025 17:32:37 +0900 Subject: [PATCH 05/32] Fix: Enable tab switching with or without iframe --- src/blocks/_pro/post-list-slider/edit.js | 55 ++---------------------- src/blocks/_pro/post-list/edit.js | 26 +++-------- src/blocks/alert/block.json | 2 +- 3 files changed, 10 insertions(+), 73 deletions(-) diff --git a/src/blocks/_pro/post-list-slider/edit.js b/src/blocks/_pro/post-list-slider/edit.js index ef15f9e71..337210909 100644 --- a/src/blocks/_pro/post-list-slider/edit.js +++ b/src/blocks/_pro/post-list-slider/edit.js @@ -1,4 +1,4 @@ -/* globals MutationObserver, vk_block_post_type_params */ +/* globals vk_block_post_type_params */ // import WordPress Scripts import { __ } from '@wordpress/i18n'; import { @@ -65,54 +65,6 @@ export default function PostListSliderEdit(props) { } }, [layout]); - const disableLinks = () => { - // iframe内のドキュメントを取得 - const iframe = document.querySelector( - '.block-editor-iframe__container iframe' - ); - - const iframeDocument = iframe.contentWindow.document; - - const links = iframeDocument.querySelectorAll( - '.vk_post a, .card-intext .card-intext-inner, .postListText_singleTermLabel_inner' - ); - links.forEach((link) => { - link.addEventListener('click', (event) => { - event.preventDefault(); - }); - link.style.cursor = 'default'; - link.style.boxShadow = 'unset'; - - // ホバー効果を無効化 - link.style.textDecorationColor = 'inherit'; - }); - }; - - useEffect(() => { - // MutationObserverでDOMの変化を監視 - const observer = new MutationObserver(disableLinks); - - // iframeの中身を監視 - const iframe = document.querySelector( - '.block-editor-iframe__container iframe' - ); - if (iframe && iframe.contentWindow) { - const iframeDocument = iframe.contentWindow.document; - observer.observe(iframeDocument.body, { - childList: true, - subtree: true, - }); - } - - // 初回およびattributesの変更時にリンクを無効化 - disableLinks(); - - // クリーンアップ関数 - return () => { - observer.disconnect(); // 監視を停止 - }; - }, [attributes]); - return ( <> @@ -185,7 +137,7 @@ export default function PostListSliderEdit(props) { initialOpen={false} > diff --git a/src/blocks/_pro/post-list/edit.js b/src/blocks/_pro/post-list/edit.js index 89b87c86d..73d008d31 100644 --- a/src/blocks/_pro/post-list/edit.js +++ b/src/blocks/_pro/post-list/edit.js @@ -17,16 +17,10 @@ export default function PostListEdit(props) { const blockProps = useBlockProps(); + // リンクを無効にする関数 const disableLinks = () => { - // iframe内のドキュメントを取得 - const iframe = document.querySelector( - '.block-editor-iframe__container iframe' - ); - - const iframeDocument = iframe.contentWindow.document; - - const links = iframeDocument.querySelectorAll( - '.vk_post a, .card-intext .card-intext-inner, .postListText_singleTermLabel_inner' + const links = document.querySelectorAll( + '.vk_post_imgOuter a, .vk_post .vk_post_title a, .postListText_title a, .card-intext .card-intext-inner, .postListText_singleTermLabel_inner, .vk_post_btnOuter a' ); links.forEach((link) => { link.addEventListener('click', (event) => { @@ -44,17 +38,9 @@ export default function PostListEdit(props) { // MutationObserverでDOMの変化を監視 const observer = new MutationObserver(disableLinks); - // iframeの中身を監視 - const iframe = document.querySelector( - '.block-editor-iframe__container iframe' - ); - if (iframe && iframe.contentWindow) { - const iframeDocument = iframe.contentWindow.document; - observer.observe(iframeDocument.body, { - childList: true, - subtree: true, - }); - } + // body全体を監視 + const targetNode = document.querySelector('body'); + observer.observe(targetNode, { childList: true, subtree: true }); // 初回およびattributesの変更時にリンクを無効化 disableLinks(); diff --git a/src/blocks/alert/block.json b/src/blocks/alert/block.json index 38233b1c6..492177dc3 100644 --- a/src/blocks/alert/block.json +++ b/src/blocks/alert/block.json @@ -1,5 +1,5 @@ { - "apiVersion": 3, + "apiVersion": 2, "name": "vk-blocks/alert", "category": "vk-blocks-cat", "title": "Alert", From 85059b998ba609dd7b5f36342ae57b218ee0c985 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Wed, 19 Feb 2025 17:34:55 +0900 Subject: [PATCH 06/32] Fix: Enable tab switching with or without iframe --- src/blocks/_pro/post-list-slider/edit.js | 4 +- src/blocks/_pro/post-list/edit.js | 18 ++++--- src/blocks/_pro/tab/edit.js | 61 +++++++++++++++--------- 3 files changed, 52 insertions(+), 31 deletions(-) diff --git a/src/blocks/_pro/post-list-slider/edit.js b/src/blocks/_pro/post-list-slider/edit.js index 337210909..b2bbaa44f 100644 --- a/src/blocks/_pro/post-list-slider/edit.js +++ b/src/blocks/_pro/post-list-slider/edit.js @@ -137,7 +137,7 @@ export default function PostListSliderEdit(props) { initialOpen={false} > { - const links = document.querySelectorAll( + // iframe の有無を確認して適切なドキュメントを取得 + const iframe = document.querySelector('.block-editor-iframe__container iframe'); + const targetDocument = iframe?.contentWindow?.document || document; + + const links = targetDocument.querySelectorAll( '.vk_post_imgOuter a, .vk_post .vk_post_title a, .postListText_title a, .card-intext .card-intext-inner, .postListText_singleTermLabel_inner, .vk_post_btnOuter a' ); links.forEach((link) => { @@ -28,7 +32,6 @@ export default function PostListEdit(props) { }); link.style.cursor = 'default'; link.style.boxShadow = 'unset'; - // ホバー効果を無効化 link.style.textDecorationColor = 'inherit'; }); @@ -36,11 +39,14 @@ export default function PostListEdit(props) { useEffect(() => { // MutationObserverでDOMの変化を監視 - const observer = new MutationObserver(disableLinks); + const iframe = document.querySelector('.block-editor-iframe__container iframe'); + const targetDocument = iframe?.contentWindow?.document || document; + const observerTarget = targetDocument.querySelector('body'); - // body全体を監視 - const targetNode = document.querySelector('body'); - observer.observe(targetNode, { childList: true, subtree: true }); + const observer = new MutationObserver(disableLinks); + if (observerTarget) { + observer.observe(observerTarget, { childList: true, subtree: true }); + } // 初回およびattributesの変更時にリンクを無効化 disableLinks(); diff --git a/src/blocks/_pro/tab/edit.js b/src/blocks/_pro/tab/edit.js index dce1e0d87..2c226352b 100644 --- a/src/blocks/_pro/tab/edit.js +++ b/src/blocks/_pro/tab/edit.js @@ -210,20 +210,31 @@ export default function TabEdit(props) { const liOnClick = (e) => { if (childBlocks) { + // iframeの有無を確認し、適切なdocumentを取得 const iframe = document.querySelector( '.block-editor-iframe__container iframe' ); - const iframeDocument = iframe?.contentWindow?.document; + const targetDocument = iframe?.contentWindow?.document || document; const vkTab = e.target.closest('.vk_tab'); + if (!vkTab) { + return; + } + const vkTabLabels = vkTab.querySelector('.vk_tab_labels'); + if (!vkTabLabels) { + return; + } // ブロック ID を抽出 - const TabLabelId = e.target.closest('.vk_tab_labels_label').id; + const TabLabelId = e.target.closest('.vk_tab_labels_label')?.id; + if (!TabLabelId) { + return; + } + const TabId = TabLabelId.replace('vk_tab_labels_label-', ''); - /* ラベルの処理 */ - // カレントを探して全て外す + /* --- ラベルの処理 --- */ const activeLabels = vkTabLabels.querySelectorAll( '.vk_tab_labels_label-state-active' ); @@ -249,33 +260,37 @@ export default function TabEdit(props) { const newActiveLabel = vkTabLabels.querySelector( `#vk_tab_labels_label-${TabId}` ); - newActiveLabel.classList.add('vk_tab_labels_label-state-active'); - newActiveLabel.classList.remove( - 'vk_tab_labels_label-state-inactive' - ); - newActiveLabel.style.removeProperty('background-color'); + if (newActiveLabel) { + newActiveLabel.classList.add( + 'vk_tab_labels_label-state-active' + ); + newActiveLabel.classList.remove( + 'vk_tab_labels_label-state-inactive' + ); + newActiveLabel.style.removeProperty('background-color'); + } - const activeTabBody = iframeDocument.querySelector( + /* --- 本体の処理 --- */ + const activeTabBody = targetDocument.querySelector( `#block-${TabId}` ); - const activeTabBodyStyle = window.getComputedStyle(activeTabBody); - if ( - !newActiveLabel - .closest('.vk_tab') - .classList.contains('is-style-vk_tab_labels-line') - ) { - newActiveLabel.style.backgroundColor = - activeTabBodyStyle.borderTopColor || ''; + if (activeTabBody) { + const activeTabBodyStyle = + window.getComputedStyle(activeTabBody); + if ( + !newActiveLabel + .closest('.vk_tab') + .classList.contains('is-style-vk_tab_labels-line') + ) { + newActiveLabel.style.backgroundColor = + activeTabBodyStyle.borderTopColor || ''; + } } - /* 本体の処理 */ + // タブ切り替えのステートを更新 childBlocks.forEach((childBlock, index) => { if (TabId === childBlock.clientId) { setAttributes({ firstActive: parseInt(index, 10) }); - // 子ブロックを選択状態にする -> タブ文字が隠れて編集できなくなるので一旦コメントアウト - // dispatch('core/block-editor').selectBlock( - // childBlock.clientId - // ); } }); } From 52fac79cd1dbcccf25a7d876ad72111b0514b7ba Mon Sep 17 00:00:00 2001 From: mtdkei Date: Wed, 19 Feb 2025 17:38:18 +0900 Subject: [PATCH 07/32] Fix: Enable tab switching with or without iframe --- src/blocks/slider/edit-slider.js | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index 177b8e5da..fd042e563 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -307,23 +307,14 @@ const editorRootLaunch = (editorRoot) => { }; export const editSliderLaunch = () => { - const blockEditorRoot = document.querySelector( - '.block-editor__container iframe' - ); - if (blockEditorRoot && blockEditorRoot.contentWindow) { - const editorRoot = blockEditorRoot.contentWindow.document.querySelector( - '.block-editor-block-list__layout' - ); - if (editorRoot) { - editorRootLaunch(editorRoot); - } - } - const iframe = document.querySelector('#site-editor iframe'); - if (iframe) { - const siteEditorRoot = - iframe.contentWindow.document.querySelector('.is-root-container'); - if (siteEditorRoot) { - editorRootLaunch(siteEditorRoot); - } - } + const iframe = document.querySelector('.block-editor__container iframe'); + const iframeDoc = iframe?.contentWindow?.document; + const editorRoot = iframeDoc?.querySelector('.block-editor-block-list__layout') || document.querySelector('.block-editor-block-list__layout'); + + if (editorRoot) editorRootLaunch(editorRoot); + + const siteIframe = document.querySelector('#site-editor iframe'); + const siteEditorRoot = siteIframe?.contentWindow?.document.querySelector('.is-root-container'); + + if (siteEditorRoot) editorRootLaunch(siteEditorRoot); }; From a69219cbece9380f5e4381f5f7b06125d0eca5f0 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Wed, 19 Feb 2025 17:38:43 +0900 Subject: [PATCH 08/32] Fix: lint --- src/blocks/_pro/post-list/edit.js | 13 ++++++++++--- src/blocks/slider/edit-slider.js | 15 +++++++++++---- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/src/blocks/_pro/post-list/edit.js b/src/blocks/_pro/post-list/edit.js index 70fd8ddf9..7451362b2 100644 --- a/src/blocks/_pro/post-list/edit.js +++ b/src/blocks/_pro/post-list/edit.js @@ -20,7 +20,9 @@ export default function PostListEdit(props) { // リンクを無効にする関数 const disableLinks = () => { // iframe の有無を確認して適切なドキュメントを取得 - const iframe = document.querySelector('.block-editor-iframe__container iframe'); + const iframe = document.querySelector( + '.block-editor-iframe__container iframe' + ); const targetDocument = iframe?.contentWindow?.document || document; const links = targetDocument.querySelectorAll( @@ -39,13 +41,18 @@ export default function PostListEdit(props) { useEffect(() => { // MutationObserverでDOMの変化を監視 - const iframe = document.querySelector('.block-editor-iframe__container iframe'); + const iframe = document.querySelector( + '.block-editor-iframe__container iframe' + ); const targetDocument = iframe?.contentWindow?.document || document; const observerTarget = targetDocument.querySelector('body'); const observer = new MutationObserver(disableLinks); if (observerTarget) { - observer.observe(observerTarget, { childList: true, subtree: true }); + observer.observe(observerTarget, { + childList: true, + subtree: true, + }); } // 初回およびattributesの変更時にリンクを無効化 diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index fd042e563..38549564c 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -309,12 +309,19 @@ const editorRootLaunch = (editorRoot) => { export const editSliderLaunch = () => { const iframe = document.querySelector('.block-editor__container iframe'); const iframeDoc = iframe?.contentWindow?.document; - const editorRoot = iframeDoc?.querySelector('.block-editor-block-list__layout') || document.querySelector('.block-editor-block-list__layout'); + const editorRoot = + iframeDoc?.querySelector('.block-editor-block-list__layout') || + document.querySelector('.block-editor-block-list__layout'); - if (editorRoot) editorRootLaunch(editorRoot); + if (editorRoot) { + editorRootLaunch(editorRoot); + } const siteIframe = document.querySelector('#site-editor iframe'); - const siteEditorRoot = siteIframe?.contentWindow?.document.querySelector('.is-root-container'); + const siteEditorRoot = + siteIframe?.contentWindow?.document.querySelector('.is-root-container'); - if (siteEditorRoot) editorRootLaunch(siteEditorRoot); + if (siteEditorRoot) { + editorRootLaunch(siteEditorRoot); + } }; From eccc87b4cf50f4b9dd0a8f4a1c210e215db7a0e8 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 08:23:50 +0900 Subject: [PATCH 09/32] Undo code --- src/blocks/_pro/tab/edit.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/blocks/_pro/tab/edit.js b/src/blocks/_pro/tab/edit.js index 2c226352b..2a00a15cf 100644 --- a/src/blocks/_pro/tab/edit.js +++ b/src/blocks/_pro/tab/edit.js @@ -234,7 +234,8 @@ export default function TabEdit(props) { const TabId = TabLabelId.replace('vk_tab_labels_label-', ''); - /* --- ラベルの処理 --- */ + /* ラベルの処理 */ + // カレントを探して全て外す const activeLabels = vkTabLabels.querySelectorAll( '.vk_tab_labels_label-state-active' ); @@ -270,7 +271,6 @@ export default function TabEdit(props) { newActiveLabel.style.removeProperty('background-color'); } - /* --- 本体の処理 --- */ const activeTabBody = targetDocument.querySelector( `#block-${TabId}` ); @@ -287,12 +287,16 @@ export default function TabEdit(props) { } } - // タブ切り替えのステートを更新 + /* 本体の処理 */ childBlocks.forEach((childBlock, index) => { if (TabId === childBlock.clientId) { setAttributes({ firstActive: parseInt(index, 10) }); } }); + // 子ブロックを選択状態にする -> タブ文字が隠れて編集できなくなるので一旦コメントアウト + // dispatch('core/block-editor').selectBlock( + // childBlock.clientId + // ); } }; From 7d580b3d592cf24690ebe2a56603713e6cf7da47 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 08:24:26 +0900 Subject: [PATCH 10/32] Fix: lint --- src/blocks/_pro/tab/edit.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/blocks/_pro/tab/edit.js b/src/blocks/_pro/tab/edit.js index 2a00a15cf..065c555b3 100644 --- a/src/blocks/_pro/tab/edit.js +++ b/src/blocks/_pro/tab/edit.js @@ -293,10 +293,10 @@ export default function TabEdit(props) { setAttributes({ firstActive: parseInt(index, 10) }); } }); - // 子ブロックを選択状態にする -> タブ文字が隠れて編集できなくなるので一旦コメントアウト - // dispatch('core/block-editor').selectBlock( - // childBlock.clientId - // ); + // 子ブロックを選択状態にする -> タブ文字が隠れて編集できなくなるので一旦コメントアウト + // dispatch('core/block-editor').selectBlock( + // childBlock.clientId + // ); } }; From c8b948c2b432fc91c333263d635cbb1d504c5e1f Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 08:25:55 +0900 Subject: [PATCH 11/32] Revert src/blocks/alert/block.json to develop branch state --- src/blocks/alert/block.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/alert/block.json b/src/blocks/alert/block.json index 492177dc3..38233b1c6 100644 --- a/src/blocks/alert/block.json +++ b/src/blocks/alert/block.json @@ -1,5 +1,5 @@ { - "apiVersion": 2, + "apiVersion": 3, "name": "vk-blocks/alert", "category": "vk-blocks-cat", "title": "Alert", From 8c969e9606c24e9e4f9d6d7bbc267949f521ac10 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 08:27:35 +0900 Subject: [PATCH 12/32] Undo code --- src/blocks/_pro/tab/edit.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/blocks/_pro/tab/edit.js b/src/blocks/_pro/tab/edit.js index 065c555b3..3d990c26d 100644 --- a/src/blocks/_pro/tab/edit.js +++ b/src/blocks/_pro/tab/edit.js @@ -291,12 +291,12 @@ export default function TabEdit(props) { childBlocks.forEach((childBlock, index) => { if (TabId === childBlock.clientId) { setAttributes({ firstActive: parseInt(index, 10) }); + // 子ブロックを選択状態にする -> タブ文字が隠れて編集できなくなるので一旦コメントアウト + // dispatch('core/block-editor').selectBlock( + // childBlock.clientId + // ); } }); - // 子ブロックを選択状態にする -> タブ文字が隠れて編集できなくなるので一旦コメントアウト - // dispatch('core/block-editor').selectBlock( - // childBlock.clientId - // ); } }; From 0db3e752c43022cc0900e58045f8e018418fb2c1 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 09:13:56 +0900 Subject: [PATCH 13/32] Update readme.txt --- readme.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.txt b/readme.txt index cfbd1cab0..c898893b2 100644 --- a/readme.txt +++ b/readme.txt @@ -108,6 +108,8 @@ e.g. == Changelog == +[ Bug fix ][ Post list (Pro) / Post list slider (Pro) / Tab (Pro) / Slider ] Fixed errors occurring regardless of whether the editing screen environment is in an iframe and improved the stability of feature performance. + = 1.96.0 = [ Add function ][ Slider / group / Icon / Grid Column Card (Pro) ] Added noreferrer, nofollow, and link description options to the link feature. [ Specification change ][ Animation (Pro) / Fixed Display (Pro) / Outer (Pro) ] Added support for layout.allowJustification: false, allowing full-width/wide alignment in block themes where wrapped blocks previously did not appear as full-width or wide in the editor. From d5971070f7250a6c53d491f5816f2620a7d6df9f Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 09:18:30 +0900 Subject: [PATCH 14/32] Undo globals MutationObserver --- src/blocks/_pro/post-list-slider/edit.js | 50 +++++++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/src/blocks/_pro/post-list-slider/edit.js b/src/blocks/_pro/post-list-slider/edit.js index b2bbaa44f..af4ea1aff 100644 --- a/src/blocks/_pro/post-list-slider/edit.js +++ b/src/blocks/_pro/post-list-slider/edit.js @@ -1,4 +1,4 @@ -/* globals vk_block_post_type_params */ +/* globals MutationObserver, vk_block_post_type_params */ // import WordPress Scripts import { __ } from '@wordpress/i18n'; import { @@ -65,6 +65,53 @@ export default function PostListSliderEdit(props) { } }, [layout]); + // リンクを無効にする関数 + const disableLinks = () => { + // iframe の有無を確認して適切なドキュメントを取得 + const iframe = document.querySelector( + '.block-editor-iframe__container iframe' + ); + const targetDocument = iframe?.contentWindow?.document || document; + + const links = targetDocument.querySelectorAll( + '.vk_post_imgOuter a, .vk_post .vk_post_title a, .postListText_title a, .card-intext .card-intext-inner, .postListText_singleTermLabel_inner, .vk_post_btnOuter a' + ); + links.forEach((link) => { + link.addEventListener('click', (event) => { + event.preventDefault(); + }); + link.style.cursor = 'default'; + link.style.boxShadow = 'unset'; + // ホバー効果を無効化 + link.style.textDecorationColor = 'inherit'; + }); + }; + + useEffect(() => { + // MutationObserverでDOMの変化を監視 + const iframe = document.querySelector( + '.block-editor-iframe__container iframe' + ); + const targetDocument = iframe?.contentWindow?.document || document; + const observerTarget = targetDocument.querySelector('body'); + + const observer = new MutationObserver(disableLinks); + if (observerTarget) { + observer.observe(observerTarget, { + childList: true, + subtree: true, + }); + } + + // 初回およびattributesの変更時にリンクを無効化 + disableLinks(); + + // クリーンアップ関数 + return () => { + observer.disconnect(); // 監視を停止 + }; + }, [attributes]); + return ( <> @@ -307,6 +354,7 @@ export default function PostListSliderEdit(props) { From 88736ae82114a69300041612d301ceea8f1504c7 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 14:07:23 +0900 Subject: [PATCH 15/32] Add getEditorRoot --- src/blocks/slider/edit-slider.js | 61 +++++++++++++++++++++++++------- 1 file changed, 48 insertions(+), 13 deletions(-) diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index 38549564c..b73ecba21 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -1,3 +1,4 @@ +import { select, subscribe } from '@wordpress/data'; import Swiper from 'swiper/bundle'; // スライダーの格納 @@ -306,22 +307,56 @@ const editorRootLaunch = (editorRoot) => { SliderObserver(editorRoot); }; -export const editSliderLaunch = () => { - const iframe = document.querySelector('.block-editor__container iframe'); - const iframeDoc = iframe?.contentWindow?.document; - const editorRoot = - iframeDoc?.querySelector('.block-editor-block-list__layout') || - document.querySelector('.block-editor-block-list__layout'); +// iframe 有無を確認して editorRoot を取得 +const getEditorRoot = () => { + // block-editor__container iframe を確認 + const blockEditorIframe = document.querySelector( + '.block-editor__container iframe' + ); + if (blockEditorIframe && blockEditorIframe.contentWindow) { + const editorRoot = + blockEditorIframe.contentWindow.document.querySelector( + '.block-editor-block-list__layout' + ); + if (editorRoot) { + return editorRoot; + } + } - if (editorRoot) { - editorRootLaunch(editorRoot); + // site-editor iframe を確認 + const siteEditorIframe = document.querySelector('#site-editor iframe'); + if (siteEditorIframe && siteEditorIframe.contentWindow) { + const siteEditorRoot = + siteEditorIframe.contentWindow.document.querySelector( + '.is-root-container' + ); + if (siteEditorRoot) { + return siteEditorRoot; + } } - const siteIframe = document.querySelector('#site-editor iframe'); - const siteEditorRoot = - siteIframe?.contentWindow?.document.querySelector('.is-root-container'); + // iframe がない場合は通常の DOM から取得 + return document.querySelector('.block-editor-block-list__layout'); +}; - if (siteEditorRoot) { - editorRootLaunch(siteEditorRoot); +// メイン処理 +export const editSliderLaunch = () => { + // 初回起動 + const initialEditorRoot = getEditorRoot(); + if (initialEditorRoot) { + editorRootLaunch(initialEditorRoot); } + + // ブロックの変化を監視 + subscribe(() => { + const editorRoot = getEditorRoot(); + if (editorRoot) { + const blocks = select('core/block-editor').getBlocks(); + blocks.forEach((block) => { + if (block.name === 'vk-blocks/slider') { + editorRootLaunch(editorRoot); + } + }); + } + }); }; From e83ad13a562942b189bfe89f4d25f32f88d4b9b3 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 16:42:36 +0900 Subject: [PATCH 16/32] Delete: console.log --- src/blocks/slider/edit-slider.js | 58 +++++++++++++++++--------------- 1 file changed, 31 insertions(+), 27 deletions(-) diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index b73ecba21..205cdb004 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -307,41 +307,45 @@ const editorRootLaunch = (editorRoot) => { SliderObserver(editorRoot); }; -// iframe 有無を確認して editorRoot を取得 -const getEditorRoot = () => { - // block-editor__container iframe を確認 - const blockEditorIframe = document.querySelector( - '.block-editor__container iframe' - ); - if (blockEditorIframe && blockEditorIframe.contentWindow) { - const editorRoot = - blockEditorIframe.contentWindow.document.querySelector( - '.block-editor-block-list__layout' - ); - if (editorRoot) { - return editorRoot; +export const editSliderLaunch = () => { + // iframeや通常DOMからeditorRootを取得する関数 + const getEditorRoot = () => { + // block-editor__container iframeを確認 + const blockEditorIframe = document.querySelector( + '.block-editor__container iframe' + ); + + const blockEditorRoot = + blockEditorIframe?.contentDocument?.readyState === 'complete' + ? blockEditorIframe.contentDocument.querySelector( + '.block-editor-block-list__layout' + ) + : null; + + if (blockEditorRoot) { + return blockEditorRoot; } - } - // site-editor iframe を確認 - const siteEditorIframe = document.querySelector('#site-editor iframe'); - if (siteEditorIframe && siteEditorIframe.contentWindow) { + // #site-editor iframeを確認 + const siteEditorIframe = document.querySelector('#site-editor iframe'); const siteEditorRoot = - siteEditorIframe.contentWindow.document.querySelector( - '.is-root-container' - ); + siteEditorIframe?.contentDocument?.readyState === 'complete' + ? siteEditorIframe.contentDocument.querySelector( + '.is-root-container' + ) + : null; + if (siteEditorRoot) { return siteEditorRoot; } - } - // iframe がない場合は通常の DOM から取得 - return document.querySelector('.block-editor-block-list__layout'); -}; + // iframeがない場合は通常のDOMを確認 + return ( + document.querySelector('.block-editor-block-list__layout') + ); + }; -// メイン処理 -export const editSliderLaunch = () => { - // 初回起動 + // 初回起動時にeditorRootを取得してスライダー初期化 const initialEditorRoot = getEditorRoot(); if (initialEditorRoot) { editorRootLaunch(initialEditorRoot); From 437bde883292e2dcf2e1e4b8be14e22c9dcad580 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Thu, 20 Feb 2025 16:43:27 +0900 Subject: [PATCH 17/32] Fix: lint --- src/blocks/slider/edit-slider.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index 205cdb004..ed5b4d309 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -340,9 +340,7 @@ export const editSliderLaunch = () => { } // iframeがない場合は通常のDOMを確認 - return ( - document.querySelector('.block-editor-block-list__layout') - ); + return document.querySelector('.block-editor-block-list__layout'); }; // 初回起動時にeditorRootを取得してスライダー初期化 From 8810ef56568b321485a990854861558ccb844c7a Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 21 Feb 2025 09:42:30 +0900 Subject: [PATCH 18/32] Fix: editSliderLaunch() --- src/blocks/slider/edit.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/blocks/slider/edit.js b/src/blocks/slider/edit.js index df91a73c8..9ef711ee8 100644 --- a/src/blocks/slider/edit.js +++ b/src/blocks/slider/edit.js @@ -51,10 +51,11 @@ export default function SliderEdit(props) { blockId, } = attributes; - editSliderLaunch(); useEffect(() => { - editSliderLaunch(); - }, [attributes]); + if (editorMode) { + editSliderLaunch(); + } + }, [editorMode]); useEffect(() => { // attributes の clientId は使わなくなったので削除 From 4ff7a648c281f2900bf67891fc6d46668b69059f Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 21 Feb 2025 11:33:23 +0900 Subject: [PATCH 19/32] Revert edit-slider.js to commit a69219c --- src/blocks/slider/edit-slider.js | 65 +++++++------------------------- 1 file changed, 14 insertions(+), 51 deletions(-) diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index ed5b4d309..38549564c 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -1,4 +1,3 @@ -import { select, subscribe } from '@wordpress/data'; import Swiper from 'swiper/bundle'; // スライダーの格納 @@ -308,57 +307,21 @@ const editorRootLaunch = (editorRoot) => { }; export const editSliderLaunch = () => { - // iframeや通常DOMからeditorRootを取得する関数 - const getEditorRoot = () => { - // block-editor__container iframeを確認 - const blockEditorIframe = document.querySelector( - '.block-editor__container iframe' - ); - - const blockEditorRoot = - blockEditorIframe?.contentDocument?.readyState === 'complete' - ? blockEditorIframe.contentDocument.querySelector( - '.block-editor-block-list__layout' - ) - : null; - - if (blockEditorRoot) { - return blockEditorRoot; - } - - // #site-editor iframeを確認 - const siteEditorIframe = document.querySelector('#site-editor iframe'); - const siteEditorRoot = - siteEditorIframe?.contentDocument?.readyState === 'complete' - ? siteEditorIframe.contentDocument.querySelector( - '.is-root-container' - ) - : null; - - if (siteEditorRoot) { - return siteEditorRoot; - } + const iframe = document.querySelector('.block-editor__container iframe'); + const iframeDoc = iframe?.contentWindow?.document; + const editorRoot = + iframeDoc?.querySelector('.block-editor-block-list__layout') || + document.querySelector('.block-editor-block-list__layout'); + + if (editorRoot) { + editorRootLaunch(editorRoot); + } - // iframeがない場合は通常のDOMを確認 - return document.querySelector('.block-editor-block-list__layout'); - }; + const siteIframe = document.querySelector('#site-editor iframe'); + const siteEditorRoot = + siteIframe?.contentWindow?.document.querySelector('.is-root-container'); - // 初回起動時にeditorRootを取得してスライダー初期化 - const initialEditorRoot = getEditorRoot(); - if (initialEditorRoot) { - editorRootLaunch(initialEditorRoot); + if (siteEditorRoot) { + editorRootLaunch(siteEditorRoot); } - - // ブロックの変化を監視 - subscribe(() => { - const editorRoot = getEditorRoot(); - if (editorRoot) { - const blocks = select('core/block-editor').getBlocks(); - blocks.forEach((block) => { - if (block.name === 'vk-blocks/slider') { - editorRootLaunch(editorRoot); - } - }); - } - }); }; From 825b79377b67623a741f5fac41713ca2fc64bc90 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 21 Feb 2025 11:43:15 +0900 Subject: [PATCH 20/32] Fix: useEffect --- src/blocks/slider/edit.js | 73 +++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 34 deletions(-) diff --git a/src/blocks/slider/edit.js b/src/blocks/slider/edit.js index 9ef711ee8..5c174fd65 100644 --- a/src/blocks/slider/edit.js +++ b/src/blocks/slider/edit.js @@ -1,7 +1,7 @@ import { AdvancedToggleControl } from '@vkblocks/components/advanced-toggle-control'; import AdvancedUnitControl from '@vkblocks/components/advanced-unit-control'; import { __ } from '@wordpress/i18n'; -import { useEffect } from '@wordpress/element'; +import { useEffect,useCallback } from '@wordpress/element'; import { InspectorControls, BlockControls, @@ -52,9 +52,14 @@ export default function SliderEdit(props) { } = attributes; useEffect(() => { + let timer; if (editorMode) { - editSliderLaunch(); + timer = setTimeout(() => { + editSliderLaunch(); + }, 50); } + + return () => clearTimeout(timer); }, [editorMode]); useEffect(() => { @@ -225,6 +230,14 @@ export default function SliderEdit(props) { > ); } + const handleEditorModeChange = useCallback( + (mode) => { + if (editorMode !== mode) { + setAttributes({ editorMode: mode }); + } + }, + [editorMode, setAttributes] + ); const blockProps = useBlockProps({ className: `vk_slider vk_swiper vk_slider_editorMode--${editorMode} vk_slider_${clientId}${alignClass}`, @@ -241,38 +254,30 @@ export default function SliderEdit(props) { controls={['wide', 'full']} /> - - ) : ( - - ) - } - label={__('Change Slide Editor Mode', 'vk-blocks-pro')} - controls={[ - { - title: __( - 'Edit ( Stacked Layout ) Mode', - 'vk-blocks-pro' - ), - icon: , - isActive: editorMode === 'default', - onClick: () => - setAttributes({ editorMode: 'default' }), - }, - { - title: __( - 'Preview ( Slide ) Mode', - 'vk-blocks-pro' - ), - icon: , - isActive: editorMode === 'slide', - onClick: () => - setAttributes({ editorMode: 'slide' }), - }, - ]} - /> + + ) : ( + + ) + } + label={__('Change Slide Editor Mode', 'vk-blocks-pro')} + controls={[ + { + title: __('Edit ( Stacked Layout ) Mode', 'vk-blocks-pro'), + icon: , + isActive: editorMode === 'default', + onClick: () => handleEditorModeChange('default'), + }, + { + title: __('Preview ( Slide ) Mode', 'vk-blocks-pro'), + icon: , + isActive: editorMode === 'slide', + onClick: () => handleEditorModeChange('slide'), + }, + ]} +/> From 557d52f29688676695c265e49819efa8686d405d Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 21 Feb 2025 11:55:33 +0900 Subject: [PATCH 21/32] Undo some codes --- src/blocks/slider/edit.js | 70 +++++++++++++++++++-------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src/blocks/slider/edit.js b/src/blocks/slider/edit.js index 5c174fd65..8a5af6a44 100644 --- a/src/blocks/slider/edit.js +++ b/src/blocks/slider/edit.js @@ -1,7 +1,7 @@ import { AdvancedToggleControl } from '@vkblocks/components/advanced-toggle-control'; import AdvancedUnitControl from '@vkblocks/components/advanced-unit-control'; import { __ } from '@wordpress/i18n'; -import { useEffect,useCallback } from '@wordpress/element'; +import { useEffect } from '@wordpress/element'; import { InspectorControls, BlockControls, @@ -60,7 +60,7 @@ export default function SliderEdit(props) { } return () => clearTimeout(timer); - }, [editorMode]); + }, [editorMode]); useEffect(() => { // attributes の clientId は使わなくなったので削除 @@ -230,14 +230,6 @@ export default function SliderEdit(props) { > ); } - const handleEditorModeChange = useCallback( - (mode) => { - if (editorMode !== mode) { - setAttributes({ editorMode: mode }); - } - }, - [editorMode, setAttributes] - ); const blockProps = useBlockProps({ className: `vk_slider vk_swiper vk_slider_editorMode--${editorMode} vk_slider_${clientId}${alignClass}`, @@ -254,30 +246,38 @@ export default function SliderEdit(props) { controls={['wide', 'full']} /> - - ) : ( - - ) - } - label={__('Change Slide Editor Mode', 'vk-blocks-pro')} - controls={[ - { - title: __('Edit ( Stacked Layout ) Mode', 'vk-blocks-pro'), - icon: , - isActive: editorMode === 'default', - onClick: () => handleEditorModeChange('default'), - }, - { - title: __('Preview ( Slide ) Mode', 'vk-blocks-pro'), - icon: , - isActive: editorMode === 'slide', - onClick: () => handleEditorModeChange('slide'), - }, - ]} -/> + + ) : ( + + ) + } + label={__('Change Slide Editor Mode', 'vk-blocks-pro')} + controls={[ + { + title: __( + 'Edit ( Stacked Layout ) Mode', + 'vk-blocks-pro' + ), + icon: , + isActive: editorMode === 'default', + onClick: () => + setAttributes({ editorMode: 'default' }), + }, + { + title: __( + 'Preview ( Slide ) Mode', + 'vk-blocks-pro' + ), + icon: , + isActive: editorMode === 'slide', + onClick: () => + setAttributes({ editorMode: 'slide' }), + }, + ]} + /> @@ -578,4 +578,4 @@ export default function SliderEdit(props) { ); -} +} \ No newline at end of file From 505569a613e3b7ed6d21e6c758db8cd5e16f28fc Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 21 Feb 2025 12:05:37 +0900 Subject: [PATCH 22/32] Add swiperPagination --- src/blocks/slider/edit-slider.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index 38549564c..bdc5fb38e 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -75,6 +75,12 @@ const LaunchSwiper = (slider) => { if (swiperButtonNext) { swiperButtonNext.style.display = ''; } + const swiperPagination = slider.querySelector( + '.swiper-pagination' + ); + if (swiperPagination) { + swiperPagination.style.display = ''; + } // Sloder の設定を作成 const SwiperSetting = {}; @@ -211,7 +217,7 @@ const LaunchSwiper = (slider) => { removeSwiperClassName(newSwiperDiv); } - // 不要な wiper-wrapper クラスを削除 + // 不要な swiper-wrapper クラスを削除 const newSwiperWrapper = slider.querySelector( '.block-editor-block-list__layout' ); @@ -243,6 +249,15 @@ const LaunchSwiper = (slider) => { if (swiperButtonNext) { swiperButtonNext.style.display = 'none'; } + + // ページネーションの非表示 + const swiperPagination = slider.querySelector( + '.swiper-pagination' + ); + if (swiperPagination) { + swiperPagination.style.display = 'none'; + } + if (swiper[sliderId]) { swiper[sliderId].destroy(); swiper[sliderId] = null; From 5a012304f1c301ad972f6cc48c53465e5ff74e92 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Fri, 21 Feb 2025 13:24:00 +0900 Subject: [PATCH 23/32] Fix: lint --- src/blocks/slider/edit-slider.js | 11 ++++------- src/blocks/slider/edit.js | 4 ++-- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/blocks/slider/edit-slider.js b/src/blocks/slider/edit-slider.js index bdc5fb38e..64ba57bdb 100644 --- a/src/blocks/slider/edit-slider.js +++ b/src/blocks/slider/edit-slider.js @@ -75,12 +75,11 @@ const LaunchSwiper = (slider) => { if (swiperButtonNext) { swiperButtonNext.style.display = ''; } - const swiperPagination = slider.querySelector( - '.swiper-pagination' - ); + const swiperPagination = + slider.querySelector('.swiper-pagination'); if (swiperPagination) { swiperPagination.style.display = ''; - } + } // Sloder の設定を作成 const SwiperSetting = {}; @@ -251,9 +250,7 @@ const LaunchSwiper = (slider) => { } // ページネーションの非表示 - const swiperPagination = slider.querySelector( - '.swiper-pagination' - ); + const swiperPagination = slider.querySelector('.swiper-pagination'); if (swiperPagination) { swiperPagination.style.display = 'none'; } diff --git a/src/blocks/slider/edit.js b/src/blocks/slider/edit.js index 8a5af6a44..16c797c56 100644 --- a/src/blocks/slider/edit.js +++ b/src/blocks/slider/edit.js @@ -58,7 +58,7 @@ export default function SliderEdit(props) { editSliderLaunch(); }, 50); } - + return () => clearTimeout(timer); }, [editorMode]); @@ -578,4 +578,4 @@ export default function SliderEdit(props) { ); -} \ No newline at end of file +} From 1e33ae1835363b714ba94122faefe2549346375b Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 09:05:35 +0900 Subject: [PATCH 24/32] Fix: Remove extra 's' and convert the first letter to lowercase --- inc/vk-blocks/view/class-vk-blocks-postlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/vk-blocks/view/class-vk-blocks-postlist.php b/inc/vk-blocks/view/class-vk-blocks-postlist.php index db58d1570..6f3c5e891 100644 --- a/inc/vk-blocks/view/class-vk-blocks-postlist.php +++ b/inc/vk-blocks/view/class-vk-blocks-postlist.php @@ -287,7 +287,7 @@ public static function get_render_no_post( $wp_query = null ) { } /* translators: %s: 投稿タイプ名 */ - $html = '
' . sprintf( __( 'There are no %ss.', 'vk-blocks-pro' ), $name ) . '
'; + $html = '
' . sprintf( __( 'There are no %s.', 'vk-blocks' ), strtolower($name) ) . '
'; return apply_filters( 'vk_blocks_post_list_render_no_post', $html, $wp_query ); } } From af59d670077c071563a02db6b30eac1ecc87403d Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 09:08:45 +0900 Subject: [PATCH 25/32] Add changelog --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index d55ac49a0..4c3049dd8 100644 --- a/readme.txt +++ b/readme.txt @@ -109,6 +109,7 @@ e.g. == Changelog == [ Bug fix ][ Post list (Pro) / Post list slider (Pro) / Tab (Pro) / Slider ] Fixed errors occurring regardless of whether the editing screen environment is in an iframe and improved the stability of feature performance. +[ Bug fix ][ Post list (Pro) / Post list slider (Pro) ] Removed the 's' notation and standardized the first letter to lowercase. = 1.96.1 = [ Other ] Rollback 1.95.0.3 From 9c16bf3698a17ed71be7b6a6b07a7cdda9d71300 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 09:12:35 +0900 Subject: [PATCH 26/32] Fix: changelog --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 4c3049dd8..ed5908425 100644 --- a/readme.txt +++ b/readme.txt @@ -109,7 +109,7 @@ e.g. == Changelog == [ Bug fix ][ Post list (Pro) / Post list slider (Pro) / Tab (Pro) / Slider ] Fixed errors occurring regardless of whether the editing screen environment is in an iframe and improved the stability of feature performance. -[ Bug fix ][ Post list (Pro) / Post list slider (Pro) ] Removed the 's' notation and standardized the first letter to lowercase. +[ Bug fix ][ Post list (Pro) / Post list slider (Pro) ] Fixed the text displayed when no posts are available by removing the 's' notation and standardizing the first letter to lowercase. = 1.96.1 = [ Other ] Rollback 1.95.0.3 From d890ce5898d2c68fd1839000154a4999aa380fa1 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 09:22:14 +0900 Subject: [PATCH 27/32] Fix: _() --- inc/vk-blocks/view/class-vk-blocks-postlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/vk-blocks/view/class-vk-blocks-postlist.php b/inc/vk-blocks/view/class-vk-blocks-postlist.php index 6f3c5e891..2729a20f5 100644 --- a/inc/vk-blocks/view/class-vk-blocks-postlist.php +++ b/inc/vk-blocks/view/class-vk-blocks-postlist.php @@ -287,7 +287,7 @@ public static function get_render_no_post( $wp_query = null ) { } /* translators: %s: 投稿タイプ名 */ - $html = '
' . sprintf( __( 'There are no %s.', 'vk-blocks' ), strtolower($name) ) . '
'; + $html = '
' . sprintf( __( 'There are no %s.', 'vk-blocks-pro' ), strtolower($name) ) . '
'; return apply_filters( 'vk_blocks_post_list_render_no_post', $html, $wp_query ); } } From fcb77718d397be3d61eb81e7601d4735b1e9db68 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 09:23:08 +0900 Subject: [PATCH 28/32] Fix: translation --- languages/vk-blocks-pro-ja.po | 222 ++++++++++++++++++--------------- languages/vk-blocks-pro-js.pot | 134 ++++++++++---------- languages/vk-blocks-pro.pot | 138 ++++++++++---------- 3 files changed, 254 insertions(+), 240 deletions(-) diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index a39bb0307..f81cbe137 100644 --- a/languages/vk-blocks-pro-ja.po +++ b/languages/vk-blocks-pro-ja.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: VK Blocks Pro\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" -"POT-Creation-Date: 2025-02-02T12:48:57+00:00\n" +"POT-Creation-Date: 2025-02-25T00:21:01+00:00\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -558,7 +558,7 @@ msgstr "XXL" #: src/blocks/_pro/outer/edit.js:1365 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 src/blocks/slider/edit-multiItem.js:198 -#: src/blocks/slider/edit.js:329 +#: src/blocks/slider/edit.js:335 #: src/components/advanced-viewport-control/index.js:25 msgid "PC" msgstr "PC" @@ -567,7 +567,7 @@ msgstr "PC" #: src/blocks/_pro/outer/edit.js:1349 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 src/blocks/slider/edit-multiItem.js:225 -#: src/blocks/slider/edit.js:350 +#: src/blocks/slider/edit.js:356 #: src/components/advanced-viewport-control/index.js:32 msgid "Tablet" msgstr "タブレット" @@ -576,7 +576,7 @@ msgstr "タブレット" #: src/blocks/_pro/outer/edit.js:1333 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 src/blocks/slider/edit-multiItem.js:254 -#: src/blocks/slider/edit.js:371 +#: src/blocks/slider/edit.js:377 #: src/components/advanced-viewport-control/index.js:41 msgid "Mobile" msgstr "モバイル" @@ -661,7 +661,9 @@ msgid "Background color / Border" msgstr "背景あり / 枠線" #: src/blocks/_pro/accordion/index.js:39 -msgid "Background color / Rounded " +#, fuzzy +#| msgid "Background color / Rounded " +msgid "Background color / Rounded" msgstr "背景あり / 角丸" #: src/blocks/_pro/accordion/index.js:43 @@ -843,7 +845,7 @@ msgid "2:3" msgstr "2:3" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:156 -#: src/blocks/slider/edit.js:317 +#: src/blocks/slider/edit.js:323 msgid "Height" msgstr "高さ" @@ -981,9 +983,13 @@ msgid "Delete Image" msgstr "画像を削除" #: src/blocks/_pro/card-item/edit.js:140 src/utils/example-data.js:3 +#, fuzzy +#| msgid "" +#| "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +#| "tempor incididunt ut labore et dolore magna aliqua. " msgid "" "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. " +"tempor incididunt ut labore et dolore magna aliqua." msgstr "" "あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくし" "い森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。" @@ -1057,7 +1063,7 @@ msgstr "ボタンの文字" msgid "Image Height" msgstr "画像高さ" -#: src/blocks/_pro/card/edit.js:88 src/blocks/slider/edit.js:322 +#: src/blocks/_pro/card/edit.js:88 src/blocks/slider/edit.js:328 msgid "Slide Height for each device." msgstr "デバイス毎の高さ" @@ -1209,7 +1215,7 @@ msgid "Setting up a link" msgstr "リンクの設定" #: src/blocks/_pro/dynamic-text/edit.js:389 -#: src/blocks/_pro/gridcolcard-item/edit.js:353 +#: src/blocks/_pro/gridcolcard-item/edit.js:308 #: src/blocks/_pro/icon-card-item/edit.js:128 src/blocks/button/edit.js:283 #: src/blocks/icon/edit.js:316 src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 src/components/link-toolbar/index.js:321 @@ -1270,7 +1276,7 @@ msgstr "" "ださい。" #: src/blocks/_pro/fixed-display/edit.js:147 -#: src/blocks/_pro/post-list-slider/edit.js:91 +#: src/blocks/_pro/post-list-slider/edit.js:138 #: src/blocks/_pro/table-of-contents-new/edit.js:109 #: src/components/column-layout-control/index.js:69 msgid "Display type" @@ -1450,55 +1456,48 @@ msgstr "下部の余白" msgid "You can create a variety of layouts with grid column card blocks." msgstr "グリッドカラムカードブロックでは柔軟なレイアウトが可能です。" -#: src/blocks/_pro/gridcolcard-item/edit.js:249 -#: src/blocks/_pro/select-post-list-item/edit.js:66 -#: src/blocks/button/edit.js:249 src/components/link-toolbar/index.js:280 -msgid "Unlink" -msgstr "リンクを解除する" - -#: src/blocks/_pro/gridcolcard-item/edit.js:250 src/blocks/button/edit.js:250 -#: src/components/link-toolbar/index.js:281 -msgid "Input Link URL" -msgstr "リンクURL" - -#: src/blocks/_pro/gridcolcard-item/edit.js:280 -#: src/blocks/_pro/select-post-list-item/edit.js:102 -#: src/blocks/button/edit.js:278 src/components/link-toolbar/index.js:315 -msgid "Submit" -msgstr "送信" - -#: src/blocks/_pro/gridcolcard-item/edit.js:304 +#: src/blocks/_pro/gridcolcard-item/edit.js:259 msgid "Edit mode" msgstr "編集モード" -#: src/blocks/_pro/gridcolcard-item/edit.js:314 +#: src/blocks/_pro/gridcolcard-item/edit.js:269 msgid "All columns" msgstr "すべてのカラム" -#: src/blocks/_pro/gridcolcard-item/edit.js:322 +#: src/blocks/_pro/gridcolcard-item/edit.js:277 msgid "This column only" msgstr "このカラムのみ" -#: src/blocks/_pro/gridcolcard-item/edit.js:327 +#: src/blocks/_pro/gridcolcard-item/edit.js:282 msgid "Edit Lock" msgstr "編集ロック" -#: src/blocks/_pro/gridcolcard-item/edit.js:330 +#: src/blocks/_pro/gridcolcard-item/edit.js:285 msgid "Lock edits this block from the parent and other Grid Column Item block" msgstr "" "このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにす" "る" -#: src/blocks/_pro/gridcolcard-item/edit.js:341 +#: src/blocks/_pro/gridcolcard-item/edit.js:296 msgid "Column Setting" msgstr "カラム設定" -#: src/blocks/_pro/gridcolcard-item/edit.js:345 +#: src/blocks/_pro/gridcolcard-item/edit.js:300 #: src/blocks/_pro/icon-card-item/edit.js:120 src/blocks/pr-blocks/edit.js:254 msgid "Link URL:" msgstr "リンク URL:" -#: src/blocks/_pro/gridcolcard-item/edit.js:360 +#: src/blocks/_pro/gridcolcard-item/edit.js:316 +#: src/components/link-toolbar/index.js:334 +msgid "Add noreferrer" +msgstr "noreferrer を追加" + +#: src/blocks/_pro/gridcolcard-item/edit.js:324 +#: src/components/link-toolbar/index.js:351 +msgid "Add nofollow" +msgstr "nofollow を追加" + +#: src/blocks/_pro/gridcolcard-item/edit.js:332 msgid "" "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." @@ -1506,7 +1505,7 @@ msgstr "" "リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキス" "トやボタン)を配置しないでください。 正しく表示されない場合があります。" -#: src/blocks/_pro/gridcolcard-item/edit.js:364 +#: src/blocks/_pro/gridcolcard-item/edit.js:336 msgid "Make sure that no link is specified for the image block, etc." msgstr "画像ブロックなどにもリンクが指定されていないか注意してください。" @@ -1528,8 +1527,8 @@ msgid "Display" msgstr "表示" #: src/blocks/_pro/gridcolcard/edit-common.js:155 -#: src/blocks/_pro/post-list-slider/edit.js:277 src/blocks/heading/edit.js:376 -#: src/blocks/slider/edit.js:535 +#: src/blocks/_pro/post-list-slider/edit.js:324 src/blocks/heading/edit.js:376 +#: src/blocks/slider/edit.js:541 msgid "Hide" msgstr "非表示" @@ -1549,7 +1548,7 @@ msgid "Border Width" msgstr "線の幅" #: src/blocks/_pro/gridcolcard/edit-common.js:212 -#: src/blocks/border-box/edit.js:239 src/extensions/core/group/style.js:99 +#: src/blocks/border-box/edit.js:239 src/extensions/core/group/style.js:119 msgid "Border Color" msgstr "線の色" @@ -1938,104 +1937,108 @@ msgstr "タクソノミーを選択" msgid "Auto" msgstr "自動" -#: src/blocks/_pro/post-list-slider/edit.js:102 +#: src/blocks/_pro/post-list-slider/edit.js:149 #: src/components/column-layout-control/index.js:26 msgid "Card" msgstr "カード" -#: src/blocks/_pro/post-list-slider/edit.js:106 +#: src/blocks/_pro/post-list-slider/edit.js:153 #: src/components/column-layout-control/index.js:30 msgid "Card (No border)" msgstr "カード(線なし)" -#: src/blocks/_pro/post-list-slider/edit.js:113 +#: src/blocks/_pro/post-list-slider/edit.js:160 #: src/components/column-layout-control/index.js:34 msgid "Card (Intext)" msgstr "カード(インテキスト)" -#: src/blocks/_pro/post-list-slider/edit.js:117 +#: src/blocks/_pro/post-list-slider/edit.js:164 #: src/components/column-layout-control/index.js:38 msgid "Card (Horizontal)" msgstr "カード(水平)" -#: src/blocks/_pro/post-list-slider/edit.js:124 +#: src/blocks/_pro/post-list-slider/edit.js:171 #: src/components/column-layout-control/index.js:42 msgid "Media" msgstr "メディア" -#: src/blocks/_pro/post-list-slider/edit.js:128 +#: src/blocks/_pro/post-list-slider/edit.js:175 #: src/components/column-layout-control/index.js:46 msgid "Text 1 Column" msgstr "テキスト 1 カラム" -#: src/blocks/_pro/post-list-slider/edit.js:136 src/blocks/slider/edit.js:394 +#: src/blocks/_pro/post-list-slider/edit.js:183 src/blocks/slider/edit.js:400 msgid "Slider Settings" msgstr "スライド設定" -#: src/blocks/_pro/post-list-slider/edit.js:140 src/blocks/slider/edit.js:398 -msgid "Effect " +#: src/blocks/_pro/post-list-slider/edit.js:187 src/blocks/slider/edit.js:404 +#, fuzzy +#| msgid "Effect " +msgid "Effect" msgstr "エフェクト" -#: src/blocks/_pro/post-list-slider/edit.js:150 src/blocks/slider/edit.js:408 +#: src/blocks/_pro/post-list-slider/edit.js:197 src/blocks/slider/edit.js:414 msgid "Slide" msgstr "スライド" -#: src/blocks/_pro/post-list-slider/edit.js:154 src/blocks/slider/edit.js:412 +#: src/blocks/_pro/post-list-slider/edit.js:201 src/blocks/slider/edit.js:418 msgid "Fade" msgstr "フェード" -#: src/blocks/_pro/post-list-slider/edit.js:161 src/blocks/slider/edit.js:419 -msgid "Loop " +#: src/blocks/_pro/post-list-slider/edit.js:208 src/blocks/slider/edit.js:425 +#, fuzzy +#| msgid "Loop " +msgid "Loop" msgstr "繰り返し" -#: src/blocks/_pro/post-list-slider/edit.js:171 src/blocks/slider/edit.js:429 +#: src/blocks/_pro/post-list-slider/edit.js:218 src/blocks/slider/edit.js:435 msgid "AutoPlay" msgstr "自動再生" -#: src/blocks/_pro/post-list-slider/edit.js:181 src/blocks/slider/edit.js:439 +#: src/blocks/_pro/post-list-slider/edit.js:228 src/blocks/slider/edit.js:445 msgid "Stop AutoPlay when swipe" msgstr "スワイプ時に自動再生を停止" -#: src/blocks/_pro/post-list-slider/edit.js:191 src/blocks/slider/edit.js:449 +#: src/blocks/_pro/post-list-slider/edit.js:238 src/blocks/slider/edit.js:455 msgid "Display Time" msgstr "表示時間" -#: src/blocks/_pro/post-list-slider/edit.js:218 src/blocks/slider/edit.js:476 +#: src/blocks/_pro/post-list-slider/edit.js:265 src/blocks/slider/edit.js:482 msgid "Change Speed" msgstr "切り替え時間" -#: src/blocks/_pro/post-list-slider/edit.js:242 src/blocks/slider/edit.js:500 +#: src/blocks/_pro/post-list-slider/edit.js:289 src/blocks/slider/edit.js:506 msgid "Pagination Type" msgstr "ページネーションの種類" -#: src/blocks/_pro/post-list-slider/edit.js:253 +#: src/blocks/_pro/post-list-slider/edit.js:300 #: src/blocks/_pro/step-item/edit.js:137 #: src/blocks/_pro/table-of-contents-new/edit.js:124 #: src/blocks/_pro/timeline-item/edit.js:103 src/blocks/heading/edit.js:264 -#: src/blocks/slider/edit.js:511 src/blocks/staff/edit.js:173 +#: src/blocks/slider/edit.js:517 src/blocks/staff/edit.js:173 #: src/components/advanced-color-gradient-control/index.js:47 msgid "Default" msgstr "標準" -#: src/blocks/_pro/post-list-slider/edit.js:257 src/blocks/slider/edit.js:515 +#: src/blocks/_pro/post-list-slider/edit.js:304 src/blocks/slider/edit.js:521 msgid "Number of slides" msgstr "スライドの枚数" -#: src/blocks/_pro/post-list-slider/edit.js:270 src/blocks/slider/edit.js:528 +#: src/blocks/_pro/post-list-slider/edit.js:317 src/blocks/slider/edit.js:534 msgid "Navigation Position" msgstr "ナビゲーションの位置" -#: src/blocks/_pro/post-list-slider/edit.js:281 src/blocks/button/edit.js:365 -#: src/blocks/slider/edit.js:539 +#: src/blocks/_pro/post-list-slider/edit.js:328 src/blocks/button/edit.js:365 +#: src/blocks/slider/edit.js:545 #: src/components/display-items-control/index.js:136 msgid "Center" msgstr "中央" -#: src/blocks/_pro/post-list-slider/edit.js:285 src/blocks/slider/edit.js:543 +#: src/blocks/_pro/post-list-slider/edit.js:332 src/blocks/slider/edit.js:549 msgid "Bottom on Mobile device" msgstr "モバイルでは下部に表示" -#: src/blocks/_pro/post-list-slider/edit.js:302 +#: src/blocks/_pro/post-list-slider/edit.js:349 msgid "Please check the actual behavior on the live site." msgstr "実際の動作は公開画面で確認してください。" @@ -2143,11 +2146,21 @@ msgstr "テキストを編集…" msgid "New Badge" msgstr "新着バッジ" +#: src/blocks/_pro/select-post-list-item/edit.js:102 +#: src/blocks/button/edit.js:278 src/components/link-toolbar/index.js:315 +msgid "Submit" +msgstr "送信" + #: src/blocks/_pro/select-post-list-item/edit.js:34 #: src/blocks/page-content/edit.js:59 msgid "Because no post is selected, The block Will not render" msgstr "ページが選択されていないためこのブロックはレンダリングされません" +#: src/blocks/_pro/select-post-list-item/edit.js:66 +#: src/blocks/button/edit.js:249 src/components/link-toolbar/index.js:280 +msgid "Unlink" +msgstr "リンクを解除する" + #: src/blocks/_pro/select-post-list-item/edit.js:67 msgid "Input Internal Post URL" msgstr "このサイトの投稿の URL を入力してください" @@ -2202,39 +2215,39 @@ msgid "Tab 02" msgstr "タブ 02" #. %s is the tab number -#: src/blocks/_pro/tab/edit.js:511 +#: src/blocks/_pro/tab/edit.js:543 msgid "Tab Label [ %s ]" msgstr "タブラベル [ %s ]" -#: src/blocks/_pro/tab/edit.js:537 +#: src/blocks/_pro/tab/edit.js:569 msgid "Tab Size Setting" msgstr "タブサイズ設定" -#: src/blocks/_pro/tab/edit.js:539 +#: src/blocks/_pro/tab/edit.js:571 msgid "Tab Size ( Smart Phone )" msgstr "タブサイズ ( スマートフォン )" -#: src/blocks/_pro/tab/edit.js:556 +#: src/blocks/_pro/tab/edit.js:588 msgid "Tab Size ( Tablet )" msgstr "タブサイズ ( タブレット )" -#: src/blocks/_pro/tab/edit.js:573 +#: src/blocks/_pro/tab/edit.js:605 msgid "Tab Size ( PC )" msgstr "タブサイズ ( PC )" -#: src/blocks/_pro/tab/edit.js:577 +#: src/blocks/_pro/tab/edit.js:609 msgid "Fit to the text" msgstr "テキストに合わせる" -#: src/blocks/_pro/tab/edit.js:581 +#: src/blocks/_pro/tab/edit.js:613 msgid "Monospaced" msgstr "等幅" -#: src/blocks/_pro/tab/edit.js:590 +#: src/blocks/_pro/tab/edit.js:622 msgid "Tab Display Options" msgstr "タブ表示オプション" -#: src/blocks/_pro/tab/edit.js:592 +#: src/blocks/_pro/tab/edit.js:624 msgid "" "If there are many labels or the screen width is narrow, you can adjust it " "here. *Tab size setting will not be effective." @@ -2242,27 +2255,27 @@ msgstr "" "ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサ" "イズの設定は反映されなくなります。" -#: src/blocks/_pro/tab/edit.js:598 +#: src/blocks/_pro/tab/edit.js:630 msgid "Tab Display Options ( Smart Phone )" msgstr "タブ表示オプション ( スマートフォン )" -#: src/blocks/_pro/tab/edit.js:622 +#: src/blocks/_pro/tab/edit.js:654 msgid "Tab Display Options ( Tablet )" msgstr "タブ表示オプション ( タブレット )" -#: src/blocks/_pro/tab/edit.js:646 +#: src/blocks/_pro/tab/edit.js:678 msgid "Tab Display Options ( PC )" msgstr "タブ表示オプション ( PC )" -#: src/blocks/_pro/tab/edit.js:653 +#: src/blocks/_pro/tab/edit.js:685 msgid "Not set" msgstr "未設定" -#: src/blocks/_pro/tab/edit.js:657 +#: src/blocks/_pro/tab/edit.js:689 msgid "Scroll" msgstr "スクロール" -#: src/blocks/_pro/tab/edit.js:661 +#: src/blocks/_pro/tab/edit.js:693 msgid "Wrap to 2 rows" msgstr "2行に折り返す" @@ -2450,7 +2463,9 @@ msgid "Ancestor page title class name" msgstr "先祖階層ページタイトルのクラス名" #: src/blocks/balloon/edit.js:141 -msgid " Image Border" +#, fuzzy +#| msgid " Image Border" +msgid "Image Border" msgstr "画像の線" #: src/blocks/balloon/edit.js:144 @@ -2596,6 +2611,10 @@ msgstr "直線 ピン角 内側" msgid "Solid Angle iconFeature" msgstr "直線 ピン角 アイコン" +#: src/blocks/button/edit.js:250 src/components/link-toolbar/index.js:281 +msgid "Input Link URL" +msgstr "リンクURL" + #: src/blocks/button/edit.js:301 msgid "Button setting" msgstr "ボタン設定" @@ -3062,31 +3081,31 @@ msgstr "" "スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示" "したいアイテム数の2倍以上である必要があります。" -#: src/blocks/slider/edit.js:251 +#: src/blocks/slider/edit.js:257 msgid "Change Slide Editor Mode" msgstr "スライド編集モードの変更" -#: src/blocks/slider/edit.js:254 +#: src/blocks/slider/edit.js:260 msgid "Edit ( Stacked Layout ) Mode" msgstr "編集(縦積み配置)モード" -#: src/blocks/slider/edit.js:264 +#: src/blocks/slider/edit.js:270 msgid "Preview ( Slide ) Mode" msgstr "プレビュー(スライド)モード" -#: src/blocks/slider/edit.js:279 +#: src/blocks/slider/edit.js:285 msgid "Editor Setting" msgstr "エディタ設定" -#: src/blocks/slider/edit.js:283 +#: src/blocks/slider/edit.js:289 msgid "Editor Mode" msgstr "編集モード" -#: src/blocks/slider/edit.js:298 +#: src/blocks/slider/edit.js:304 msgid "Edit ( Stacked Layout )" msgstr "編集(縦積み配置)" -#: src/blocks/slider/edit.js:311 +#: src/blocks/slider/edit.js:317 msgid "Preview ( Slide )" msgstr "プレビュー(スライド)" @@ -3416,18 +3435,10 @@ msgstr "新着表示日数" msgid "Link target" msgstr "リンクターゲット" -#: src/components/link-toolbar/index.js:334 -msgid "Add noreferrer" -msgstr "noreferrer を追加" - #: src/components/link-toolbar/index.js:34 msgid "Currently selected" msgstr "" -#: src/components/link-toolbar/index.js:351 -msgid "Add nofollow" -msgstr "nofollow を追加" - #: src/components/link-toolbar/index.js:371 msgid "Accessibility link description" msgstr "リンクの説明" @@ -3778,11 +3789,16 @@ msgstr "カラムの方向" msgid "Reverse" msgstr "逆" -#: src/extensions/core/cover/style.js:97 +#: src/extensions/core/cover/style.js:91 msgid "Cover link" msgstr "カバーリンク" -#: src/extensions/core/group/style.js:104 +#: src/extensions/core/group/deprecated/1.95.2/save.js:31 +#: src/extensions/core/group/style.js:217 +msgid "Group link" +msgstr "グループリンク" + +#: src/extensions/core/group/style.js:124 msgid "" "Because of the theme that enabled theme.json become can specify the color " "from border panel that, specification from here is deprecated." @@ -3790,10 +3806,6 @@ msgstr "" "theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、" "ここでの色指定は非推奨になりました。" -#: src/extensions/core/group/style.js:192 -msgid "Group link" -msgstr "グループリンク" - #: src/extensions/core/list/style.js:107 msgid "List Icon Color" msgstr "リストアイコンの色" @@ -3884,7 +3896,9 @@ msgstr "" "力してください。" #: src/utils/font-awesome-new.js:394 -msgid "Ex) " +#, fuzzy +#| msgid "Ex) " +msgid "Ex)" msgstr "例) " #: src/utils/font-awesome-new.js:408 @@ -4423,7 +4437,7 @@ msgstr "投稿" #. translators: %s: 投稿タイプ名 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:290 -msgid "There are no %ss." +msgid "There are no %s." msgstr "該当の%sはありません。" #: inc/vk-css-optimize/config.php:13 diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index ca0b28b94..a35840821 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -556,7 +556,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 -#: src/blocks/slider/edit.js:329 +#: src/blocks/slider/edit.js:335 #: src/components/advanced-viewport-control/index.js:25 msgid "PC" msgstr "" @@ -567,7 +567,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 -#: src/blocks/slider/edit.js:350 +#: src/blocks/slider/edit.js:356 #: src/components/advanced-viewport-control/index.js:32 msgid "Tablet" msgstr "" @@ -578,7 +578,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 -#: src/blocks/slider/edit.js:371 +#: src/blocks/slider/edit.js:377 #: src/components/advanced-viewport-control/index.js:41 msgid "Mobile" msgstr "" @@ -856,7 +856,7 @@ msgid "2:3" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:156 -#: src/blocks/slider/edit.js:317 +#: src/blocks/slider/edit.js:323 msgid "Height" msgstr "" @@ -1069,7 +1069,7 @@ msgid "Image Height" msgstr "" #: src/blocks/_pro/card/edit.js:88 -#: src/blocks/slider/edit.js:322 +#: src/blocks/slider/edit.js:328 msgid "Slide Height for each device." msgstr "" @@ -1280,7 +1280,7 @@ msgid "" msgstr "" #: src/blocks/_pro/fixed-display/edit.js:147 -#: src/blocks/_pro/post-list-slider/edit.js:139 +#: src/blocks/_pro/post-list-slider/edit.js:138 #: src/blocks/_pro/table-of-contents-new/edit.js:109 #: src/components/column-layout-control/index.js:69 msgid "Display type" @@ -1537,9 +1537,9 @@ msgid "Display" msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:155 -#: src/blocks/_pro/post-list-slider/edit.js:325 +#: src/blocks/_pro/post-list-slider/edit.js:324 #: src/blocks/heading/edit.js:376 -#: src/blocks/slider/edit.js:535 +#: src/blocks/slider/edit.js:541 msgid "Hide" msgstr "" @@ -1964,120 +1964,120 @@ msgstr "" msgid "Auto" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:150 +#: src/blocks/_pro/post-list-slider/edit.js:149 #: src/components/column-layout-control/index.js:26 msgid "Card" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:154 +#: src/blocks/_pro/post-list-slider/edit.js:153 #: src/components/column-layout-control/index.js:30 msgid "Card (No border)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:161 +#: src/blocks/_pro/post-list-slider/edit.js:160 #: src/components/column-layout-control/index.js:34 msgid "Card (Intext)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:165 +#: src/blocks/_pro/post-list-slider/edit.js:164 #: src/components/column-layout-control/index.js:38 msgid "Card (Horizontal)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:172 +#: src/blocks/_pro/post-list-slider/edit.js:171 #: src/components/column-layout-control/index.js:42 msgid "Media" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:176 +#: src/blocks/_pro/post-list-slider/edit.js:175 #: src/components/column-layout-control/index.js:46 msgid "Text 1 Column" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:184 -#: src/blocks/slider/edit.js:394 +#: src/blocks/_pro/post-list-slider/edit.js:183 +#: src/blocks/slider/edit.js:400 msgid "Slider Settings" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:188 -#: src/blocks/slider/edit.js:398 +#: src/blocks/_pro/post-list-slider/edit.js:187 +#: src/blocks/slider/edit.js:404 msgid "Effect" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:198 -#: src/blocks/slider/edit.js:408 +#: src/blocks/_pro/post-list-slider/edit.js:197 +#: src/blocks/slider/edit.js:414 msgid "Slide" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:202 -#: src/blocks/slider/edit.js:412 +#: src/blocks/_pro/post-list-slider/edit.js:201 +#: src/blocks/slider/edit.js:418 msgid "Fade" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:209 -#: src/blocks/slider/edit.js:419 +#: src/blocks/_pro/post-list-slider/edit.js:208 +#: src/blocks/slider/edit.js:425 msgid "Loop" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:219 -#: src/blocks/slider/edit.js:429 +#: src/blocks/_pro/post-list-slider/edit.js:218 +#: src/blocks/slider/edit.js:435 msgid "AutoPlay" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:229 -#: src/blocks/slider/edit.js:439 +#: src/blocks/_pro/post-list-slider/edit.js:228 +#: src/blocks/slider/edit.js:445 msgid "Stop AutoPlay when swipe" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:239 -#: src/blocks/slider/edit.js:449 +#: src/blocks/_pro/post-list-slider/edit.js:238 +#: src/blocks/slider/edit.js:455 msgid "Display Time" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:266 -#: src/blocks/slider/edit.js:476 +#: src/blocks/_pro/post-list-slider/edit.js:265 +#: src/blocks/slider/edit.js:482 msgid "Change Speed" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:290 -#: src/blocks/slider/edit.js:500 +#: src/blocks/_pro/post-list-slider/edit.js:289 +#: src/blocks/slider/edit.js:506 msgid "Pagination Type" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:301 +#: src/blocks/_pro/post-list-slider/edit.js:300 #: src/blocks/_pro/step-item/edit.js:137 #: src/blocks/_pro/table-of-contents-new/edit.js:124 #: src/blocks/_pro/timeline-item/edit.js:103 #: src/blocks/heading/edit.js:264 -#: src/blocks/slider/edit.js:511 +#: src/blocks/slider/edit.js:517 #: src/blocks/staff/edit.js:173 #: src/components/advanced-color-gradient-control/index.js:47 msgid "Default" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:305 -#: src/blocks/slider/edit.js:515 +#: src/blocks/_pro/post-list-slider/edit.js:304 +#: src/blocks/slider/edit.js:521 msgid "Number of slides" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:318 -#: src/blocks/slider/edit.js:528 +#: src/blocks/_pro/post-list-slider/edit.js:317 +#: src/blocks/slider/edit.js:534 msgid "Navigation Position" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:329 +#: src/blocks/_pro/post-list-slider/edit.js:328 #: src/blocks/button/edit.js:365 -#: src/blocks/slider/edit.js:539 +#: src/blocks/slider/edit.js:545 #: src/components/display-items-control/index.js:136 msgid "Center" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:333 -#: src/blocks/slider/edit.js:543 +#: src/blocks/_pro/post-list-slider/edit.js:332 +#: src/blocks/slider/edit.js:549 msgid "Bottom on Mobile device" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:350 +#: src/blocks/_pro/post-list-slider/edit.js:349 msgid "Please check the actual behavior on the live site." msgstr "" @@ -2247,66 +2247,66 @@ msgstr "" msgid "Tab 02" msgstr "" -#: src/blocks/_pro/tab/edit.js:514 +#: src/blocks/_pro/tab/edit.js:543 #. %s is the tab number msgid "Tab Label [ %s ]" msgstr "" -#: src/blocks/_pro/tab/edit.js:540 +#: src/blocks/_pro/tab/edit.js:569 msgid "Tab Size Setting" msgstr "" -#: src/blocks/_pro/tab/edit.js:542 +#: src/blocks/_pro/tab/edit.js:571 msgid "Tab Size ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:559 +#: src/blocks/_pro/tab/edit.js:588 msgid "Tab Size ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:576 +#: src/blocks/_pro/tab/edit.js:605 msgid "Tab Size ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:580 +#: src/blocks/_pro/tab/edit.js:609 msgid "Fit to the text" msgstr "" -#: src/blocks/_pro/tab/edit.js:584 +#: src/blocks/_pro/tab/edit.js:613 msgid "Monospaced" msgstr "" -#: src/blocks/_pro/tab/edit.js:593 +#: src/blocks/_pro/tab/edit.js:622 msgid "Tab Display Options" msgstr "" -#: src/blocks/_pro/tab/edit.js:595 +#: src/blocks/_pro/tab/edit.js:624 msgid "" "If there are many labels or the screen width is narrow, you can adjust it " "here. *Tab size setting will not be effective." msgstr "" -#: src/blocks/_pro/tab/edit.js:601 +#: src/blocks/_pro/tab/edit.js:630 msgid "Tab Display Options ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:625 +#: src/blocks/_pro/tab/edit.js:654 msgid "Tab Display Options ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:649 +#: src/blocks/_pro/tab/edit.js:678 msgid "Tab Display Options ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:656 +#: src/blocks/_pro/tab/edit.js:685 msgid "Not set" msgstr "" -#: src/blocks/_pro/tab/edit.js:660 +#: src/blocks/_pro/tab/edit.js:689 msgid "Scroll" msgstr "" -#: src/blocks/_pro/tab/edit.js:664 +#: src/blocks/_pro/tab/edit.js:693 msgid "Wrap to 2 rows" msgstr "" @@ -3121,31 +3121,31 @@ msgid "" "view." msgstr "" -#: src/blocks/slider/edit.js:251 +#: src/blocks/slider/edit.js:257 msgid "Change Slide Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:254 +#: src/blocks/slider/edit.js:260 msgid "Edit ( Stacked Layout ) Mode" msgstr "" -#: src/blocks/slider/edit.js:264 +#: src/blocks/slider/edit.js:270 msgid "Preview ( Slide ) Mode" msgstr "" -#: src/blocks/slider/edit.js:279 +#: src/blocks/slider/edit.js:285 msgid "Editor Setting" msgstr "" -#: src/blocks/slider/edit.js:283 +#: src/blocks/slider/edit.js:289 msgid "Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:298 +#: src/blocks/slider/edit.js:304 msgid "Edit ( Stacked Layout )" msgstr "" -#: src/blocks/slider/edit.js:311 +#: src/blocks/slider/edit.js:317 msgid "Preview ( Slide )" msgstr "" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index aafe54885..36eed8d24 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,7 +9,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-02-19T00:55:07+00:00\n" +"POT-Creation-Date: 2025-02-25T00:21:01+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" @@ -557,7 +557,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 -#: src/blocks/slider/edit.js:329 +#: src/blocks/slider/edit.js:335 #: src/components/advanced-viewport-control/index.js:25 msgid "PC" msgstr "" @@ -568,7 +568,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 -#: src/blocks/slider/edit.js:350 +#: src/blocks/slider/edit.js:356 #: src/components/advanced-viewport-control/index.js:32 msgid "Tablet" msgstr "" @@ -579,7 +579,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 -#: src/blocks/slider/edit.js:371 +#: src/blocks/slider/edit.js:377 #: src/components/advanced-viewport-control/index.js:41 msgid "Mobile" msgstr "" @@ -858,7 +858,7 @@ msgid "2:3" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:156 -#: src/blocks/slider/edit.js:317 +#: src/blocks/slider/edit.js:323 msgid "Height" msgstr "" @@ -1061,7 +1061,7 @@ msgid "Image Height" msgstr "" #: src/blocks/_pro/card/edit.js:88 -#: src/blocks/slider/edit.js:322 +#: src/blocks/slider/edit.js:328 msgid "Slide Height for each device." msgstr "" @@ -1270,7 +1270,7 @@ msgid "The fixed position of the fixed position block will not change on the edi msgstr "" #: src/blocks/_pro/fixed-display/edit.js:147 -#: src/blocks/_pro/post-list-slider/edit.js:139 +#: src/blocks/_pro/post-list-slider/edit.js:138 #: src/blocks/_pro/table-of-contents-new/edit.js:109 #: src/components/column-layout-control/index.js:69 msgid "Display type" @@ -1521,9 +1521,9 @@ msgid "Display" msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:155 -#: src/blocks/_pro/post-list-slider/edit.js:325 +#: src/blocks/_pro/post-list-slider/edit.js:324 #: src/blocks/heading/edit.js:376 -#: src/blocks/slider/edit.js:535 +#: src/blocks/slider/edit.js:541 msgid "Hide" msgstr "" @@ -1949,120 +1949,120 @@ msgstr "" msgid "Auto" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:150 +#: src/blocks/_pro/post-list-slider/edit.js:149 #: src/components/column-layout-control/index.js:26 msgid "Card" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:154 +#: src/blocks/_pro/post-list-slider/edit.js:153 #: src/components/column-layout-control/index.js:30 msgid "Card (No border)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:161 +#: src/blocks/_pro/post-list-slider/edit.js:160 #: src/components/column-layout-control/index.js:34 msgid "Card (Intext)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:165 +#: src/blocks/_pro/post-list-slider/edit.js:164 #: src/components/column-layout-control/index.js:38 msgid "Card (Horizontal)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:172 +#: src/blocks/_pro/post-list-slider/edit.js:171 #: src/components/column-layout-control/index.js:42 msgid "Media" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:176 +#: src/blocks/_pro/post-list-slider/edit.js:175 #: src/components/column-layout-control/index.js:46 msgid "Text 1 Column" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:184 -#: src/blocks/slider/edit.js:394 +#: src/blocks/_pro/post-list-slider/edit.js:183 +#: src/blocks/slider/edit.js:400 msgid "Slider Settings" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:188 -#: src/blocks/slider/edit.js:398 +#: src/blocks/_pro/post-list-slider/edit.js:187 +#: src/blocks/slider/edit.js:404 msgid "Effect" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:198 -#: src/blocks/slider/edit.js:408 +#: src/blocks/_pro/post-list-slider/edit.js:197 +#: src/blocks/slider/edit.js:414 msgid "Slide" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:202 -#: src/blocks/slider/edit.js:412 +#: src/blocks/_pro/post-list-slider/edit.js:201 +#: src/blocks/slider/edit.js:418 msgid "Fade" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:209 -#: src/blocks/slider/edit.js:419 +#: src/blocks/_pro/post-list-slider/edit.js:208 +#: src/blocks/slider/edit.js:425 msgid "Loop" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:219 -#: src/blocks/slider/edit.js:429 +#: src/blocks/_pro/post-list-slider/edit.js:218 +#: src/blocks/slider/edit.js:435 msgid "AutoPlay" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:229 -#: src/blocks/slider/edit.js:439 +#: src/blocks/_pro/post-list-slider/edit.js:228 +#: src/blocks/slider/edit.js:445 msgid "Stop AutoPlay when swipe" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:239 -#: src/blocks/slider/edit.js:449 +#: src/blocks/_pro/post-list-slider/edit.js:238 +#: src/blocks/slider/edit.js:455 msgid "Display Time" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:266 -#: src/blocks/slider/edit.js:476 +#: src/blocks/_pro/post-list-slider/edit.js:265 +#: src/blocks/slider/edit.js:482 msgid "Change Speed" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:290 -#: src/blocks/slider/edit.js:500 +#: src/blocks/_pro/post-list-slider/edit.js:289 +#: src/blocks/slider/edit.js:506 msgid "Pagination Type" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:301 +#: src/blocks/_pro/post-list-slider/edit.js:300 #: src/blocks/_pro/step-item/edit.js:137 #: src/blocks/_pro/table-of-contents-new/edit.js:124 #: src/blocks/_pro/timeline-item/edit.js:103 #: src/blocks/heading/edit.js:264 -#: src/blocks/slider/edit.js:511 +#: src/blocks/slider/edit.js:517 #: src/blocks/staff/edit.js:173 #: src/components/advanced-color-gradient-control/index.js:47 msgid "Default" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:305 -#: src/blocks/slider/edit.js:515 +#: src/blocks/_pro/post-list-slider/edit.js:304 +#: src/blocks/slider/edit.js:521 msgid "Number of slides" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:318 -#: src/blocks/slider/edit.js:528 +#: src/blocks/_pro/post-list-slider/edit.js:317 +#: src/blocks/slider/edit.js:534 msgid "Navigation Position" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:329 +#: src/blocks/_pro/post-list-slider/edit.js:328 #: src/blocks/button/edit.js:365 -#: src/blocks/slider/edit.js:539 +#: src/blocks/slider/edit.js:545 #: src/components/display-items-control/index.js:136 msgid "Center" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:333 -#: src/blocks/slider/edit.js:543 +#: src/blocks/_pro/post-list-slider/edit.js:332 +#: src/blocks/slider/edit.js:549 msgid "Bottom on Mobile device" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:350 +#: src/blocks/_pro/post-list-slider/edit.js:349 msgid "Please check the actual behavior on the live site." msgstr "" @@ -2221,63 +2221,63 @@ msgid "Tab 02" msgstr "" #. %s is the tab number -#: src/blocks/_pro/tab/edit.js:514 +#: src/blocks/_pro/tab/edit.js:543 msgid "Tab Label [ %s ]" msgstr "" -#: src/blocks/_pro/tab/edit.js:540 +#: src/blocks/_pro/tab/edit.js:569 msgid "Tab Size Setting" msgstr "" -#: src/blocks/_pro/tab/edit.js:542 +#: src/blocks/_pro/tab/edit.js:571 msgid "Tab Size ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:559 +#: src/blocks/_pro/tab/edit.js:588 msgid "Tab Size ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:576 +#: src/blocks/_pro/tab/edit.js:605 msgid "Tab Size ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:580 +#: src/blocks/_pro/tab/edit.js:609 msgid "Fit to the text" msgstr "" -#: src/blocks/_pro/tab/edit.js:584 +#: src/blocks/_pro/tab/edit.js:613 msgid "Monospaced" msgstr "" -#: src/blocks/_pro/tab/edit.js:593 +#: src/blocks/_pro/tab/edit.js:622 msgid "Tab Display Options" msgstr "" -#: src/blocks/_pro/tab/edit.js:595 +#: src/blocks/_pro/tab/edit.js:624 msgid "If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective." msgstr "" -#: src/blocks/_pro/tab/edit.js:601 +#: src/blocks/_pro/tab/edit.js:630 msgid "Tab Display Options ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:625 +#: src/blocks/_pro/tab/edit.js:654 msgid "Tab Display Options ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:649 +#: src/blocks/_pro/tab/edit.js:678 msgid "Tab Display Options ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:656 +#: src/blocks/_pro/tab/edit.js:685 msgid "Not set" msgstr "" -#: src/blocks/_pro/tab/edit.js:660 +#: src/blocks/_pro/tab/edit.js:689 msgid "Scroll" msgstr "" -#: src/blocks/_pro/tab/edit.js:664 +#: src/blocks/_pro/tab/edit.js:693 msgid "Wrap to 2 rows" msgstr "" @@ -3075,31 +3075,31 @@ msgstr "" msgid "If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view." msgstr "" -#: src/blocks/slider/edit.js:251 +#: src/blocks/slider/edit.js:257 msgid "Change Slide Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:254 +#: src/blocks/slider/edit.js:260 msgid "Edit ( Stacked Layout ) Mode" msgstr "" -#: src/blocks/slider/edit.js:264 +#: src/blocks/slider/edit.js:270 msgid "Preview ( Slide ) Mode" msgstr "" -#: src/blocks/slider/edit.js:279 +#: src/blocks/slider/edit.js:285 msgid "Editor Setting" msgstr "" -#: src/blocks/slider/edit.js:283 +#: src/blocks/slider/edit.js:289 msgid "Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:298 +#: src/blocks/slider/edit.js:304 msgid "Edit ( Stacked Layout )" msgstr "" -#: src/blocks/slider/edit.js:311 +#: src/blocks/slider/edit.js:317 msgid "Preview ( Slide )" msgstr "" @@ -4332,7 +4332,7 @@ msgstr "" #. translators: %s: 投稿タイプ名 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:290 -msgid "There are no %ss." +msgid "There are no %s." msgstr "" #: inc/vk-css-optimize/config.php:13 From 1c46caa0a108dc3a0b8c6400c5a63cb0a2766f44 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 09:23:49 +0900 Subject: [PATCH 29/32] Fix: lint --- inc/vk-blocks/view/class-vk-blocks-postlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/vk-blocks/view/class-vk-blocks-postlist.php b/inc/vk-blocks/view/class-vk-blocks-postlist.php index 2729a20f5..44e28ec4e 100644 --- a/inc/vk-blocks/view/class-vk-blocks-postlist.php +++ b/inc/vk-blocks/view/class-vk-blocks-postlist.php @@ -287,7 +287,7 @@ public static function get_render_no_post( $wp_query = null ) { } /* translators: %s: 投稿タイプ名 */ - $html = '
' . sprintf( __( 'There are no %s.', 'vk-blocks-pro' ), strtolower($name) ) . '
'; + $html = '
' . sprintf( __( 'There are no %s.', 'vk-blocks-pro' ), strtolower( $name ) ) . '
'; return apply_filters( 'vk_blocks_post_list_render_no_post', $html, $wp_query ); } } From 45ef390754e06e7e60d8022469cbb27367cabe1b Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 09:55:47 +0900 Subject: [PATCH 30/32] Revert "Fix: translation" This reverts commit fcb77718d397be3d61eb81e7601d4735b1e9db68. --- languages/vk-blocks-pro-ja.po | 222 +++++++++++++++------------------ languages/vk-blocks-pro-js.pot | 134 ++++++++++---------- languages/vk-blocks-pro.pot | 138 ++++++++++---------- 3 files changed, 240 insertions(+), 254 deletions(-) diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index f81cbe137..a39bb0307 100644 --- a/languages/vk-blocks-pro-ja.po +++ b/languages/vk-blocks-pro-ja.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: VK Blocks Pro\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" -"POT-Creation-Date: 2025-02-25T00:21:01+00:00\n" +"POT-Creation-Date: 2025-02-02T12:48:57+00:00\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -558,7 +558,7 @@ msgstr "XXL" #: src/blocks/_pro/outer/edit.js:1365 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 src/blocks/slider/edit-multiItem.js:198 -#: src/blocks/slider/edit.js:335 +#: src/blocks/slider/edit.js:329 #: src/components/advanced-viewport-control/index.js:25 msgid "PC" msgstr "PC" @@ -567,7 +567,7 @@ msgstr "PC" #: src/blocks/_pro/outer/edit.js:1349 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 src/blocks/slider/edit-multiItem.js:225 -#: src/blocks/slider/edit.js:356 +#: src/blocks/slider/edit.js:350 #: src/components/advanced-viewport-control/index.js:32 msgid "Tablet" msgstr "タブレット" @@ -576,7 +576,7 @@ msgstr "タブレット" #: src/blocks/_pro/outer/edit.js:1333 #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 src/blocks/slider/edit-multiItem.js:254 -#: src/blocks/slider/edit.js:377 +#: src/blocks/slider/edit.js:371 #: src/components/advanced-viewport-control/index.js:41 msgid "Mobile" msgstr "モバイル" @@ -661,9 +661,7 @@ msgid "Background color / Border" msgstr "背景あり / 枠線" #: src/blocks/_pro/accordion/index.js:39 -#, fuzzy -#| msgid "Background color / Rounded " -msgid "Background color / Rounded" +msgid "Background color / Rounded " msgstr "背景あり / 角丸" #: src/blocks/_pro/accordion/index.js:43 @@ -845,7 +843,7 @@ msgid "2:3" msgstr "2:3" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:156 -#: src/blocks/slider/edit.js:323 +#: src/blocks/slider/edit.js:317 msgid "Height" msgstr "高さ" @@ -983,13 +981,9 @@ msgid "Delete Image" msgstr "画像を削除" #: src/blocks/_pro/card-item/edit.js:140 src/utils/example-data.js:3 -#, fuzzy -#| msgid "" -#| "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -#| "tempor incididunt ut labore et dolore magna aliqua. " msgid "" "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua." +"tempor incididunt ut labore et dolore magna aliqua. " msgstr "" "あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくし" "い森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。" @@ -1063,7 +1057,7 @@ msgstr "ボタンの文字" msgid "Image Height" msgstr "画像高さ" -#: src/blocks/_pro/card/edit.js:88 src/blocks/slider/edit.js:328 +#: src/blocks/_pro/card/edit.js:88 src/blocks/slider/edit.js:322 msgid "Slide Height for each device." msgstr "デバイス毎の高さ" @@ -1215,7 +1209,7 @@ msgid "Setting up a link" msgstr "リンクの設定" #: src/blocks/_pro/dynamic-text/edit.js:389 -#: src/blocks/_pro/gridcolcard-item/edit.js:308 +#: src/blocks/_pro/gridcolcard-item/edit.js:353 #: src/blocks/_pro/icon-card-item/edit.js:128 src/blocks/button/edit.js:283 #: src/blocks/icon/edit.js:316 src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 src/components/link-toolbar/index.js:321 @@ -1276,7 +1270,7 @@ msgstr "" "ださい。" #: src/blocks/_pro/fixed-display/edit.js:147 -#: src/blocks/_pro/post-list-slider/edit.js:138 +#: src/blocks/_pro/post-list-slider/edit.js:91 #: src/blocks/_pro/table-of-contents-new/edit.js:109 #: src/components/column-layout-control/index.js:69 msgid "Display type" @@ -1456,48 +1450,55 @@ msgstr "下部の余白" msgid "You can create a variety of layouts with grid column card blocks." msgstr "グリッドカラムカードブロックでは柔軟なレイアウトが可能です。" -#: src/blocks/_pro/gridcolcard-item/edit.js:259 +#: src/blocks/_pro/gridcolcard-item/edit.js:249 +#: src/blocks/_pro/select-post-list-item/edit.js:66 +#: src/blocks/button/edit.js:249 src/components/link-toolbar/index.js:280 +msgid "Unlink" +msgstr "リンクを解除する" + +#: src/blocks/_pro/gridcolcard-item/edit.js:250 src/blocks/button/edit.js:250 +#: src/components/link-toolbar/index.js:281 +msgid "Input Link URL" +msgstr "リンクURL" + +#: src/blocks/_pro/gridcolcard-item/edit.js:280 +#: src/blocks/_pro/select-post-list-item/edit.js:102 +#: src/blocks/button/edit.js:278 src/components/link-toolbar/index.js:315 +msgid "Submit" +msgstr "送信" + +#: src/blocks/_pro/gridcolcard-item/edit.js:304 msgid "Edit mode" msgstr "編集モード" -#: src/blocks/_pro/gridcolcard-item/edit.js:269 +#: src/blocks/_pro/gridcolcard-item/edit.js:314 msgid "All columns" msgstr "すべてのカラム" -#: src/blocks/_pro/gridcolcard-item/edit.js:277 +#: src/blocks/_pro/gridcolcard-item/edit.js:322 msgid "This column only" msgstr "このカラムのみ" -#: src/blocks/_pro/gridcolcard-item/edit.js:282 +#: src/blocks/_pro/gridcolcard-item/edit.js:327 msgid "Edit Lock" msgstr "編集ロック" -#: src/blocks/_pro/gridcolcard-item/edit.js:285 +#: src/blocks/_pro/gridcolcard-item/edit.js:330 msgid "Lock edits this block from the parent and other Grid Column Item block" msgstr "" "このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにす" "る" -#: src/blocks/_pro/gridcolcard-item/edit.js:296 +#: src/blocks/_pro/gridcolcard-item/edit.js:341 msgid "Column Setting" msgstr "カラム設定" -#: src/blocks/_pro/gridcolcard-item/edit.js:300 +#: src/blocks/_pro/gridcolcard-item/edit.js:345 #: src/blocks/_pro/icon-card-item/edit.js:120 src/blocks/pr-blocks/edit.js:254 msgid "Link URL:" msgstr "リンク URL:" -#: src/blocks/_pro/gridcolcard-item/edit.js:316 -#: src/components/link-toolbar/index.js:334 -msgid "Add noreferrer" -msgstr "noreferrer を追加" - -#: src/blocks/_pro/gridcolcard-item/edit.js:324 -#: src/components/link-toolbar/index.js:351 -msgid "Add nofollow" -msgstr "nofollow を追加" - -#: src/blocks/_pro/gridcolcard-item/edit.js:332 +#: src/blocks/_pro/gridcolcard-item/edit.js:360 msgid "" "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." @@ -1505,7 +1506,7 @@ msgstr "" "リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキス" "トやボタン)を配置しないでください。 正しく表示されない場合があります。" -#: src/blocks/_pro/gridcolcard-item/edit.js:336 +#: src/blocks/_pro/gridcolcard-item/edit.js:364 msgid "Make sure that no link is specified for the image block, etc." msgstr "画像ブロックなどにもリンクが指定されていないか注意してください。" @@ -1527,8 +1528,8 @@ msgid "Display" msgstr "表示" #: src/blocks/_pro/gridcolcard/edit-common.js:155 -#: src/blocks/_pro/post-list-slider/edit.js:324 src/blocks/heading/edit.js:376 -#: src/blocks/slider/edit.js:541 +#: src/blocks/_pro/post-list-slider/edit.js:277 src/blocks/heading/edit.js:376 +#: src/blocks/slider/edit.js:535 msgid "Hide" msgstr "非表示" @@ -1548,7 +1549,7 @@ msgid "Border Width" msgstr "線の幅" #: src/blocks/_pro/gridcolcard/edit-common.js:212 -#: src/blocks/border-box/edit.js:239 src/extensions/core/group/style.js:119 +#: src/blocks/border-box/edit.js:239 src/extensions/core/group/style.js:99 msgid "Border Color" msgstr "線の色" @@ -1937,108 +1938,104 @@ msgstr "タクソノミーを選択" msgid "Auto" msgstr "自動" -#: src/blocks/_pro/post-list-slider/edit.js:149 +#: src/blocks/_pro/post-list-slider/edit.js:102 #: src/components/column-layout-control/index.js:26 msgid "Card" msgstr "カード" -#: src/blocks/_pro/post-list-slider/edit.js:153 +#: src/blocks/_pro/post-list-slider/edit.js:106 #: src/components/column-layout-control/index.js:30 msgid "Card (No border)" msgstr "カード(線なし)" -#: src/blocks/_pro/post-list-slider/edit.js:160 +#: src/blocks/_pro/post-list-slider/edit.js:113 #: src/components/column-layout-control/index.js:34 msgid "Card (Intext)" msgstr "カード(インテキスト)" -#: src/blocks/_pro/post-list-slider/edit.js:164 +#: src/blocks/_pro/post-list-slider/edit.js:117 #: src/components/column-layout-control/index.js:38 msgid "Card (Horizontal)" msgstr "カード(水平)" -#: src/blocks/_pro/post-list-slider/edit.js:171 +#: src/blocks/_pro/post-list-slider/edit.js:124 #: src/components/column-layout-control/index.js:42 msgid "Media" msgstr "メディア" -#: src/blocks/_pro/post-list-slider/edit.js:175 +#: src/blocks/_pro/post-list-slider/edit.js:128 #: src/components/column-layout-control/index.js:46 msgid "Text 1 Column" msgstr "テキスト 1 カラム" -#: src/blocks/_pro/post-list-slider/edit.js:183 src/blocks/slider/edit.js:400 +#: src/blocks/_pro/post-list-slider/edit.js:136 src/blocks/slider/edit.js:394 msgid "Slider Settings" msgstr "スライド設定" -#: src/blocks/_pro/post-list-slider/edit.js:187 src/blocks/slider/edit.js:404 -#, fuzzy -#| msgid "Effect " -msgid "Effect" +#: src/blocks/_pro/post-list-slider/edit.js:140 src/blocks/slider/edit.js:398 +msgid "Effect " msgstr "エフェクト" -#: src/blocks/_pro/post-list-slider/edit.js:197 src/blocks/slider/edit.js:414 +#: src/blocks/_pro/post-list-slider/edit.js:150 src/blocks/slider/edit.js:408 msgid "Slide" msgstr "スライド" -#: src/blocks/_pro/post-list-slider/edit.js:201 src/blocks/slider/edit.js:418 +#: src/blocks/_pro/post-list-slider/edit.js:154 src/blocks/slider/edit.js:412 msgid "Fade" msgstr "フェード" -#: src/blocks/_pro/post-list-slider/edit.js:208 src/blocks/slider/edit.js:425 -#, fuzzy -#| msgid "Loop " -msgid "Loop" +#: src/blocks/_pro/post-list-slider/edit.js:161 src/blocks/slider/edit.js:419 +msgid "Loop " msgstr "繰り返し" -#: src/blocks/_pro/post-list-slider/edit.js:218 src/blocks/slider/edit.js:435 +#: src/blocks/_pro/post-list-slider/edit.js:171 src/blocks/slider/edit.js:429 msgid "AutoPlay" msgstr "自動再生" -#: src/blocks/_pro/post-list-slider/edit.js:228 src/blocks/slider/edit.js:445 +#: src/blocks/_pro/post-list-slider/edit.js:181 src/blocks/slider/edit.js:439 msgid "Stop AutoPlay when swipe" msgstr "スワイプ時に自動再生を停止" -#: src/blocks/_pro/post-list-slider/edit.js:238 src/blocks/slider/edit.js:455 +#: src/blocks/_pro/post-list-slider/edit.js:191 src/blocks/slider/edit.js:449 msgid "Display Time" msgstr "表示時間" -#: src/blocks/_pro/post-list-slider/edit.js:265 src/blocks/slider/edit.js:482 +#: src/blocks/_pro/post-list-slider/edit.js:218 src/blocks/slider/edit.js:476 msgid "Change Speed" msgstr "切り替え時間" -#: src/blocks/_pro/post-list-slider/edit.js:289 src/blocks/slider/edit.js:506 +#: src/blocks/_pro/post-list-slider/edit.js:242 src/blocks/slider/edit.js:500 msgid "Pagination Type" msgstr "ページネーションの種類" -#: src/blocks/_pro/post-list-slider/edit.js:300 +#: src/blocks/_pro/post-list-slider/edit.js:253 #: src/blocks/_pro/step-item/edit.js:137 #: src/blocks/_pro/table-of-contents-new/edit.js:124 #: src/blocks/_pro/timeline-item/edit.js:103 src/blocks/heading/edit.js:264 -#: src/blocks/slider/edit.js:517 src/blocks/staff/edit.js:173 +#: src/blocks/slider/edit.js:511 src/blocks/staff/edit.js:173 #: src/components/advanced-color-gradient-control/index.js:47 msgid "Default" msgstr "標準" -#: src/blocks/_pro/post-list-slider/edit.js:304 src/blocks/slider/edit.js:521 +#: src/blocks/_pro/post-list-slider/edit.js:257 src/blocks/slider/edit.js:515 msgid "Number of slides" msgstr "スライドの枚数" -#: src/blocks/_pro/post-list-slider/edit.js:317 src/blocks/slider/edit.js:534 +#: src/blocks/_pro/post-list-slider/edit.js:270 src/blocks/slider/edit.js:528 msgid "Navigation Position" msgstr "ナビゲーションの位置" -#: src/blocks/_pro/post-list-slider/edit.js:328 src/blocks/button/edit.js:365 -#: src/blocks/slider/edit.js:545 +#: src/blocks/_pro/post-list-slider/edit.js:281 src/blocks/button/edit.js:365 +#: src/blocks/slider/edit.js:539 #: src/components/display-items-control/index.js:136 msgid "Center" msgstr "中央" -#: src/blocks/_pro/post-list-slider/edit.js:332 src/blocks/slider/edit.js:549 +#: src/blocks/_pro/post-list-slider/edit.js:285 src/blocks/slider/edit.js:543 msgid "Bottom on Mobile device" msgstr "モバイルでは下部に表示" -#: src/blocks/_pro/post-list-slider/edit.js:349 +#: src/blocks/_pro/post-list-slider/edit.js:302 msgid "Please check the actual behavior on the live site." msgstr "実際の動作は公開画面で確認してください。" @@ -2146,21 +2143,11 @@ msgstr "テキストを編集…" msgid "New Badge" msgstr "新着バッジ" -#: src/blocks/_pro/select-post-list-item/edit.js:102 -#: src/blocks/button/edit.js:278 src/components/link-toolbar/index.js:315 -msgid "Submit" -msgstr "送信" - #: src/blocks/_pro/select-post-list-item/edit.js:34 #: src/blocks/page-content/edit.js:59 msgid "Because no post is selected, The block Will not render" msgstr "ページが選択されていないためこのブロックはレンダリングされません" -#: src/blocks/_pro/select-post-list-item/edit.js:66 -#: src/blocks/button/edit.js:249 src/components/link-toolbar/index.js:280 -msgid "Unlink" -msgstr "リンクを解除する" - #: src/blocks/_pro/select-post-list-item/edit.js:67 msgid "Input Internal Post URL" msgstr "このサイトの投稿の URL を入力してください" @@ -2215,39 +2202,39 @@ msgid "Tab 02" msgstr "タブ 02" #. %s is the tab number -#: src/blocks/_pro/tab/edit.js:543 +#: src/blocks/_pro/tab/edit.js:511 msgid "Tab Label [ %s ]" msgstr "タブラベル [ %s ]" -#: src/blocks/_pro/tab/edit.js:569 +#: src/blocks/_pro/tab/edit.js:537 msgid "Tab Size Setting" msgstr "タブサイズ設定" -#: src/blocks/_pro/tab/edit.js:571 +#: src/blocks/_pro/tab/edit.js:539 msgid "Tab Size ( Smart Phone )" msgstr "タブサイズ ( スマートフォン )" -#: src/blocks/_pro/tab/edit.js:588 +#: src/blocks/_pro/tab/edit.js:556 msgid "Tab Size ( Tablet )" msgstr "タブサイズ ( タブレット )" -#: src/blocks/_pro/tab/edit.js:605 +#: src/blocks/_pro/tab/edit.js:573 msgid "Tab Size ( PC )" msgstr "タブサイズ ( PC )" -#: src/blocks/_pro/tab/edit.js:609 +#: src/blocks/_pro/tab/edit.js:577 msgid "Fit to the text" msgstr "テキストに合わせる" -#: src/blocks/_pro/tab/edit.js:613 +#: src/blocks/_pro/tab/edit.js:581 msgid "Monospaced" msgstr "等幅" -#: src/blocks/_pro/tab/edit.js:622 +#: src/blocks/_pro/tab/edit.js:590 msgid "Tab Display Options" msgstr "タブ表示オプション" -#: src/blocks/_pro/tab/edit.js:624 +#: src/blocks/_pro/tab/edit.js:592 msgid "" "If there are many labels or the screen width is narrow, you can adjust it " "here. *Tab size setting will not be effective." @@ -2255,27 +2242,27 @@ msgstr "" "ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサ" "イズの設定は反映されなくなります。" -#: src/blocks/_pro/tab/edit.js:630 +#: src/blocks/_pro/tab/edit.js:598 msgid "Tab Display Options ( Smart Phone )" msgstr "タブ表示オプション ( スマートフォン )" -#: src/blocks/_pro/tab/edit.js:654 +#: src/blocks/_pro/tab/edit.js:622 msgid "Tab Display Options ( Tablet )" msgstr "タブ表示オプション ( タブレット )" -#: src/blocks/_pro/tab/edit.js:678 +#: src/blocks/_pro/tab/edit.js:646 msgid "Tab Display Options ( PC )" msgstr "タブ表示オプション ( PC )" -#: src/blocks/_pro/tab/edit.js:685 +#: src/blocks/_pro/tab/edit.js:653 msgid "Not set" msgstr "未設定" -#: src/blocks/_pro/tab/edit.js:689 +#: src/blocks/_pro/tab/edit.js:657 msgid "Scroll" msgstr "スクロール" -#: src/blocks/_pro/tab/edit.js:693 +#: src/blocks/_pro/tab/edit.js:661 msgid "Wrap to 2 rows" msgstr "2行に折り返す" @@ -2463,9 +2450,7 @@ msgid "Ancestor page title class name" msgstr "先祖階層ページタイトルのクラス名" #: src/blocks/balloon/edit.js:141 -#, fuzzy -#| msgid " Image Border" -msgid "Image Border" +msgid " Image Border" msgstr "画像の線" #: src/blocks/balloon/edit.js:144 @@ -2611,10 +2596,6 @@ msgstr "直線 ピン角 内側" msgid "Solid Angle iconFeature" msgstr "直線 ピン角 アイコン" -#: src/blocks/button/edit.js:250 src/components/link-toolbar/index.js:281 -msgid "Input Link URL" -msgstr "リンクURL" - #: src/blocks/button/edit.js:301 msgid "Button setting" msgstr "ボタン設定" @@ -3081,31 +3062,31 @@ msgstr "" "スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示" "したいアイテム数の2倍以上である必要があります。" -#: src/blocks/slider/edit.js:257 +#: src/blocks/slider/edit.js:251 msgid "Change Slide Editor Mode" msgstr "スライド編集モードの変更" -#: src/blocks/slider/edit.js:260 +#: src/blocks/slider/edit.js:254 msgid "Edit ( Stacked Layout ) Mode" msgstr "編集(縦積み配置)モード" -#: src/blocks/slider/edit.js:270 +#: src/blocks/slider/edit.js:264 msgid "Preview ( Slide ) Mode" msgstr "プレビュー(スライド)モード" -#: src/blocks/slider/edit.js:285 +#: src/blocks/slider/edit.js:279 msgid "Editor Setting" msgstr "エディタ設定" -#: src/blocks/slider/edit.js:289 +#: src/blocks/slider/edit.js:283 msgid "Editor Mode" msgstr "編集モード" -#: src/blocks/slider/edit.js:304 +#: src/blocks/slider/edit.js:298 msgid "Edit ( Stacked Layout )" msgstr "編集(縦積み配置)" -#: src/blocks/slider/edit.js:317 +#: src/blocks/slider/edit.js:311 msgid "Preview ( Slide )" msgstr "プレビュー(スライド)" @@ -3435,10 +3416,18 @@ msgstr "新着表示日数" msgid "Link target" msgstr "リンクターゲット" +#: src/components/link-toolbar/index.js:334 +msgid "Add noreferrer" +msgstr "noreferrer を追加" + #: src/components/link-toolbar/index.js:34 msgid "Currently selected" msgstr "" +#: src/components/link-toolbar/index.js:351 +msgid "Add nofollow" +msgstr "nofollow を追加" + #: src/components/link-toolbar/index.js:371 msgid "Accessibility link description" msgstr "リンクの説明" @@ -3789,16 +3778,11 @@ msgstr "カラムの方向" msgid "Reverse" msgstr "逆" -#: src/extensions/core/cover/style.js:91 +#: src/extensions/core/cover/style.js:97 msgid "Cover link" msgstr "カバーリンク" -#: src/extensions/core/group/deprecated/1.95.2/save.js:31 -#: src/extensions/core/group/style.js:217 -msgid "Group link" -msgstr "グループリンク" - -#: src/extensions/core/group/style.js:124 +#: src/extensions/core/group/style.js:104 msgid "" "Because of the theme that enabled theme.json become can specify the color " "from border panel that, specification from here is deprecated." @@ -3806,6 +3790,10 @@ msgstr "" "theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、" "ここでの色指定は非推奨になりました。" +#: src/extensions/core/group/style.js:192 +msgid "Group link" +msgstr "グループリンク" + #: src/extensions/core/list/style.js:107 msgid "List Icon Color" msgstr "リストアイコンの色" @@ -3896,9 +3884,7 @@ msgstr "" "力してください。" #: src/utils/font-awesome-new.js:394 -#, fuzzy -#| msgid "Ex) " -msgid "Ex)" +msgid "Ex) " msgstr "例) " #: src/utils/font-awesome-new.js:408 @@ -4437,7 +4423,7 @@ msgstr "投稿" #. translators: %s: 投稿タイプ名 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:290 -msgid "There are no %s." +msgid "There are no %ss." msgstr "該当の%sはありません。" #: inc/vk-css-optimize/config.php:13 diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index a35840821..ca0b28b94 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -556,7 +556,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 -#: src/blocks/slider/edit.js:335 +#: src/blocks/slider/edit.js:329 #: src/components/advanced-viewport-control/index.js:25 msgid "PC" msgstr "" @@ -567,7 +567,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 -#: src/blocks/slider/edit.js:356 +#: src/blocks/slider/edit.js:350 #: src/components/advanced-viewport-control/index.js:32 msgid "Tablet" msgstr "" @@ -578,7 +578,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 -#: src/blocks/slider/edit.js:377 +#: src/blocks/slider/edit.js:371 #: src/components/advanced-viewport-control/index.js:41 msgid "Mobile" msgstr "" @@ -856,7 +856,7 @@ msgid "2:3" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:156 -#: src/blocks/slider/edit.js:323 +#: src/blocks/slider/edit.js:317 msgid "Height" msgstr "" @@ -1069,7 +1069,7 @@ msgid "Image Height" msgstr "" #: src/blocks/_pro/card/edit.js:88 -#: src/blocks/slider/edit.js:328 +#: src/blocks/slider/edit.js:322 msgid "Slide Height for each device." msgstr "" @@ -1280,7 +1280,7 @@ msgid "" msgstr "" #: src/blocks/_pro/fixed-display/edit.js:147 -#: src/blocks/_pro/post-list-slider/edit.js:138 +#: src/blocks/_pro/post-list-slider/edit.js:139 #: src/blocks/_pro/table-of-contents-new/edit.js:109 #: src/components/column-layout-control/index.js:69 msgid "Display type" @@ -1537,9 +1537,9 @@ msgid "Display" msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:155 -#: src/blocks/_pro/post-list-slider/edit.js:324 +#: src/blocks/_pro/post-list-slider/edit.js:325 #: src/blocks/heading/edit.js:376 -#: src/blocks/slider/edit.js:541 +#: src/blocks/slider/edit.js:535 msgid "Hide" msgstr "" @@ -1964,120 +1964,120 @@ msgstr "" msgid "Auto" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:149 +#: src/blocks/_pro/post-list-slider/edit.js:150 #: src/components/column-layout-control/index.js:26 msgid "Card" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:153 +#: src/blocks/_pro/post-list-slider/edit.js:154 #: src/components/column-layout-control/index.js:30 msgid "Card (No border)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:160 +#: src/blocks/_pro/post-list-slider/edit.js:161 #: src/components/column-layout-control/index.js:34 msgid "Card (Intext)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:164 +#: src/blocks/_pro/post-list-slider/edit.js:165 #: src/components/column-layout-control/index.js:38 msgid "Card (Horizontal)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:171 +#: src/blocks/_pro/post-list-slider/edit.js:172 #: src/components/column-layout-control/index.js:42 msgid "Media" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:175 +#: src/blocks/_pro/post-list-slider/edit.js:176 #: src/components/column-layout-control/index.js:46 msgid "Text 1 Column" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:183 -#: src/blocks/slider/edit.js:400 +#: src/blocks/_pro/post-list-slider/edit.js:184 +#: src/blocks/slider/edit.js:394 msgid "Slider Settings" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:187 -#: src/blocks/slider/edit.js:404 +#: src/blocks/_pro/post-list-slider/edit.js:188 +#: src/blocks/slider/edit.js:398 msgid "Effect" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:197 -#: src/blocks/slider/edit.js:414 +#: src/blocks/_pro/post-list-slider/edit.js:198 +#: src/blocks/slider/edit.js:408 msgid "Slide" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:201 -#: src/blocks/slider/edit.js:418 +#: src/blocks/_pro/post-list-slider/edit.js:202 +#: src/blocks/slider/edit.js:412 msgid "Fade" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:208 -#: src/blocks/slider/edit.js:425 +#: src/blocks/_pro/post-list-slider/edit.js:209 +#: src/blocks/slider/edit.js:419 msgid "Loop" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:218 -#: src/blocks/slider/edit.js:435 +#: src/blocks/_pro/post-list-slider/edit.js:219 +#: src/blocks/slider/edit.js:429 msgid "AutoPlay" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:228 -#: src/blocks/slider/edit.js:445 +#: src/blocks/_pro/post-list-slider/edit.js:229 +#: src/blocks/slider/edit.js:439 msgid "Stop AutoPlay when swipe" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:238 -#: src/blocks/slider/edit.js:455 +#: src/blocks/_pro/post-list-slider/edit.js:239 +#: src/blocks/slider/edit.js:449 msgid "Display Time" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:265 -#: src/blocks/slider/edit.js:482 +#: src/blocks/_pro/post-list-slider/edit.js:266 +#: src/blocks/slider/edit.js:476 msgid "Change Speed" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:289 -#: src/blocks/slider/edit.js:506 +#: src/blocks/_pro/post-list-slider/edit.js:290 +#: src/blocks/slider/edit.js:500 msgid "Pagination Type" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:300 +#: src/blocks/_pro/post-list-slider/edit.js:301 #: src/blocks/_pro/step-item/edit.js:137 #: src/blocks/_pro/table-of-contents-new/edit.js:124 #: src/blocks/_pro/timeline-item/edit.js:103 #: src/blocks/heading/edit.js:264 -#: src/blocks/slider/edit.js:517 +#: src/blocks/slider/edit.js:511 #: src/blocks/staff/edit.js:173 #: src/components/advanced-color-gradient-control/index.js:47 msgid "Default" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:304 -#: src/blocks/slider/edit.js:521 +#: src/blocks/_pro/post-list-slider/edit.js:305 +#: src/blocks/slider/edit.js:515 msgid "Number of slides" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:317 -#: src/blocks/slider/edit.js:534 +#: src/blocks/_pro/post-list-slider/edit.js:318 +#: src/blocks/slider/edit.js:528 msgid "Navigation Position" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:328 +#: src/blocks/_pro/post-list-slider/edit.js:329 #: src/blocks/button/edit.js:365 -#: src/blocks/slider/edit.js:545 +#: src/blocks/slider/edit.js:539 #: src/components/display-items-control/index.js:136 msgid "Center" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:332 -#: src/blocks/slider/edit.js:549 +#: src/blocks/_pro/post-list-slider/edit.js:333 +#: src/blocks/slider/edit.js:543 msgid "Bottom on Mobile device" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:349 +#: src/blocks/_pro/post-list-slider/edit.js:350 msgid "Please check the actual behavior on the live site." msgstr "" @@ -2247,66 +2247,66 @@ msgstr "" msgid "Tab 02" msgstr "" -#: src/blocks/_pro/tab/edit.js:543 +#: src/blocks/_pro/tab/edit.js:514 #. %s is the tab number msgid "Tab Label [ %s ]" msgstr "" -#: src/blocks/_pro/tab/edit.js:569 +#: src/blocks/_pro/tab/edit.js:540 msgid "Tab Size Setting" msgstr "" -#: src/blocks/_pro/tab/edit.js:571 +#: src/blocks/_pro/tab/edit.js:542 msgid "Tab Size ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:588 +#: src/blocks/_pro/tab/edit.js:559 msgid "Tab Size ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:605 +#: src/blocks/_pro/tab/edit.js:576 msgid "Tab Size ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:609 +#: src/blocks/_pro/tab/edit.js:580 msgid "Fit to the text" msgstr "" -#: src/blocks/_pro/tab/edit.js:613 +#: src/blocks/_pro/tab/edit.js:584 msgid "Monospaced" msgstr "" -#: src/blocks/_pro/tab/edit.js:622 +#: src/blocks/_pro/tab/edit.js:593 msgid "Tab Display Options" msgstr "" -#: src/blocks/_pro/tab/edit.js:624 +#: src/blocks/_pro/tab/edit.js:595 msgid "" "If there are many labels or the screen width is narrow, you can adjust it " "here. *Tab size setting will not be effective." msgstr "" -#: src/blocks/_pro/tab/edit.js:630 +#: src/blocks/_pro/tab/edit.js:601 msgid "Tab Display Options ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:654 +#: src/blocks/_pro/tab/edit.js:625 msgid "Tab Display Options ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:678 +#: src/blocks/_pro/tab/edit.js:649 msgid "Tab Display Options ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:685 +#: src/blocks/_pro/tab/edit.js:656 msgid "Not set" msgstr "" -#: src/blocks/_pro/tab/edit.js:689 +#: src/blocks/_pro/tab/edit.js:660 msgid "Scroll" msgstr "" -#: src/blocks/_pro/tab/edit.js:693 +#: src/blocks/_pro/tab/edit.js:664 msgid "Wrap to 2 rows" msgstr "" @@ -3121,31 +3121,31 @@ msgid "" "view." msgstr "" -#: src/blocks/slider/edit.js:257 +#: src/blocks/slider/edit.js:251 msgid "Change Slide Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:260 +#: src/blocks/slider/edit.js:254 msgid "Edit ( Stacked Layout ) Mode" msgstr "" -#: src/blocks/slider/edit.js:270 +#: src/blocks/slider/edit.js:264 msgid "Preview ( Slide ) Mode" msgstr "" -#: src/blocks/slider/edit.js:285 +#: src/blocks/slider/edit.js:279 msgid "Editor Setting" msgstr "" -#: src/blocks/slider/edit.js:289 +#: src/blocks/slider/edit.js:283 msgid "Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:304 +#: src/blocks/slider/edit.js:298 msgid "Edit ( Stacked Layout )" msgstr "" -#: src/blocks/slider/edit.js:317 +#: src/blocks/slider/edit.js:311 msgid "Preview ( Slide )" msgstr "" diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index 36eed8d24..aafe54885 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,7 +9,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-02-25T00:21:01+00:00\n" +"POT-Creation-Date: 2025-02-19T00:55:07+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" @@ -557,7 +557,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:174 #: src/blocks/button/edit.js:537 #: src/blocks/slider/edit-multiItem.js:198 -#: src/blocks/slider/edit.js:335 +#: src/blocks/slider/edit.js:329 #: src/components/advanced-viewport-control/index.js:25 msgid "PC" msgstr "" @@ -568,7 +568,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:201 #: src/blocks/button/edit.js:472 #: src/blocks/slider/edit-multiItem.js:225 -#: src/blocks/slider/edit.js:356 +#: src/blocks/slider/edit.js:350 #: src/components/advanced-viewport-control/index.js:32 msgid "Tablet" msgstr "" @@ -579,7 +579,7 @@ msgstr "" #: src/blocks/_pro/post-list-slider/multi-item-setting.js:230 #: src/blocks/button/edit.js:407 #: src/blocks/slider/edit-multiItem.js:254 -#: src/blocks/slider/edit.js:377 +#: src/blocks/slider/edit.js:371 #: src/components/advanced-viewport-control/index.js:41 msgid "Mobile" msgstr "" @@ -858,7 +858,7 @@ msgid "2:3" msgstr "" #: src/blocks/_pro/blog-card-featured-image/dimension-controls.js:156 -#: src/blocks/slider/edit.js:323 +#: src/blocks/slider/edit.js:317 msgid "Height" msgstr "" @@ -1061,7 +1061,7 @@ msgid "Image Height" msgstr "" #: src/blocks/_pro/card/edit.js:88 -#: src/blocks/slider/edit.js:328 +#: src/blocks/slider/edit.js:322 msgid "Slide Height for each device." msgstr "" @@ -1270,7 +1270,7 @@ msgid "The fixed position of the fixed position block will not change on the edi msgstr "" #: src/blocks/_pro/fixed-display/edit.js:147 -#: src/blocks/_pro/post-list-slider/edit.js:138 +#: src/blocks/_pro/post-list-slider/edit.js:139 #: src/blocks/_pro/table-of-contents-new/edit.js:109 #: src/components/column-layout-control/index.js:69 msgid "Display type" @@ -1521,9 +1521,9 @@ msgid "Display" msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:155 -#: src/blocks/_pro/post-list-slider/edit.js:324 +#: src/blocks/_pro/post-list-slider/edit.js:325 #: src/blocks/heading/edit.js:376 -#: src/blocks/slider/edit.js:541 +#: src/blocks/slider/edit.js:535 msgid "Hide" msgstr "" @@ -1949,120 +1949,120 @@ msgstr "" msgid "Auto" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:149 +#: src/blocks/_pro/post-list-slider/edit.js:150 #: src/components/column-layout-control/index.js:26 msgid "Card" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:153 +#: src/blocks/_pro/post-list-slider/edit.js:154 #: src/components/column-layout-control/index.js:30 msgid "Card (No border)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:160 +#: src/blocks/_pro/post-list-slider/edit.js:161 #: src/components/column-layout-control/index.js:34 msgid "Card (Intext)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:164 +#: src/blocks/_pro/post-list-slider/edit.js:165 #: src/components/column-layout-control/index.js:38 msgid "Card (Horizontal)" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:171 +#: src/blocks/_pro/post-list-slider/edit.js:172 #: src/components/column-layout-control/index.js:42 msgid "Media" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:175 +#: src/blocks/_pro/post-list-slider/edit.js:176 #: src/components/column-layout-control/index.js:46 msgid "Text 1 Column" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:183 -#: src/blocks/slider/edit.js:400 +#: src/blocks/_pro/post-list-slider/edit.js:184 +#: src/blocks/slider/edit.js:394 msgid "Slider Settings" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:187 -#: src/blocks/slider/edit.js:404 +#: src/blocks/_pro/post-list-slider/edit.js:188 +#: src/blocks/slider/edit.js:398 msgid "Effect" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:197 -#: src/blocks/slider/edit.js:414 +#: src/blocks/_pro/post-list-slider/edit.js:198 +#: src/blocks/slider/edit.js:408 msgid "Slide" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:201 -#: src/blocks/slider/edit.js:418 +#: src/blocks/_pro/post-list-slider/edit.js:202 +#: src/blocks/slider/edit.js:412 msgid "Fade" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:208 -#: src/blocks/slider/edit.js:425 +#: src/blocks/_pro/post-list-slider/edit.js:209 +#: src/blocks/slider/edit.js:419 msgid "Loop" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:218 -#: src/blocks/slider/edit.js:435 +#: src/blocks/_pro/post-list-slider/edit.js:219 +#: src/blocks/slider/edit.js:429 msgid "AutoPlay" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:228 -#: src/blocks/slider/edit.js:445 +#: src/blocks/_pro/post-list-slider/edit.js:229 +#: src/blocks/slider/edit.js:439 msgid "Stop AutoPlay when swipe" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:238 -#: src/blocks/slider/edit.js:455 +#: src/blocks/_pro/post-list-slider/edit.js:239 +#: src/blocks/slider/edit.js:449 msgid "Display Time" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:265 -#: src/blocks/slider/edit.js:482 +#: src/blocks/_pro/post-list-slider/edit.js:266 +#: src/blocks/slider/edit.js:476 msgid "Change Speed" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:289 -#: src/blocks/slider/edit.js:506 +#: src/blocks/_pro/post-list-slider/edit.js:290 +#: src/blocks/slider/edit.js:500 msgid "Pagination Type" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:300 +#: src/blocks/_pro/post-list-slider/edit.js:301 #: src/blocks/_pro/step-item/edit.js:137 #: src/blocks/_pro/table-of-contents-new/edit.js:124 #: src/blocks/_pro/timeline-item/edit.js:103 #: src/blocks/heading/edit.js:264 -#: src/blocks/slider/edit.js:517 +#: src/blocks/slider/edit.js:511 #: src/blocks/staff/edit.js:173 #: src/components/advanced-color-gradient-control/index.js:47 msgid "Default" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:304 -#: src/blocks/slider/edit.js:521 +#: src/blocks/_pro/post-list-slider/edit.js:305 +#: src/blocks/slider/edit.js:515 msgid "Number of slides" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:317 -#: src/blocks/slider/edit.js:534 +#: src/blocks/_pro/post-list-slider/edit.js:318 +#: src/blocks/slider/edit.js:528 msgid "Navigation Position" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:328 +#: src/blocks/_pro/post-list-slider/edit.js:329 #: src/blocks/button/edit.js:365 -#: src/blocks/slider/edit.js:545 +#: src/blocks/slider/edit.js:539 #: src/components/display-items-control/index.js:136 msgid "Center" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:332 -#: src/blocks/slider/edit.js:549 +#: src/blocks/_pro/post-list-slider/edit.js:333 +#: src/blocks/slider/edit.js:543 msgid "Bottom on Mobile device" msgstr "" -#: src/blocks/_pro/post-list-slider/edit.js:349 +#: src/blocks/_pro/post-list-slider/edit.js:350 msgid "Please check the actual behavior on the live site." msgstr "" @@ -2221,63 +2221,63 @@ msgid "Tab 02" msgstr "" #. %s is the tab number -#: src/blocks/_pro/tab/edit.js:543 +#: src/blocks/_pro/tab/edit.js:514 msgid "Tab Label [ %s ]" msgstr "" -#: src/blocks/_pro/tab/edit.js:569 +#: src/blocks/_pro/tab/edit.js:540 msgid "Tab Size Setting" msgstr "" -#: src/blocks/_pro/tab/edit.js:571 +#: src/blocks/_pro/tab/edit.js:542 msgid "Tab Size ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:588 +#: src/blocks/_pro/tab/edit.js:559 msgid "Tab Size ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:605 +#: src/blocks/_pro/tab/edit.js:576 msgid "Tab Size ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:609 +#: src/blocks/_pro/tab/edit.js:580 msgid "Fit to the text" msgstr "" -#: src/blocks/_pro/tab/edit.js:613 +#: src/blocks/_pro/tab/edit.js:584 msgid "Monospaced" msgstr "" -#: src/blocks/_pro/tab/edit.js:622 +#: src/blocks/_pro/tab/edit.js:593 msgid "Tab Display Options" msgstr "" -#: src/blocks/_pro/tab/edit.js:624 +#: src/blocks/_pro/tab/edit.js:595 msgid "If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective." msgstr "" -#: src/blocks/_pro/tab/edit.js:630 +#: src/blocks/_pro/tab/edit.js:601 msgid "Tab Display Options ( Smart Phone )" msgstr "" -#: src/blocks/_pro/tab/edit.js:654 +#: src/blocks/_pro/tab/edit.js:625 msgid "Tab Display Options ( Tablet )" msgstr "" -#: src/blocks/_pro/tab/edit.js:678 +#: src/blocks/_pro/tab/edit.js:649 msgid "Tab Display Options ( PC )" msgstr "" -#: src/blocks/_pro/tab/edit.js:685 +#: src/blocks/_pro/tab/edit.js:656 msgid "Not set" msgstr "" -#: src/blocks/_pro/tab/edit.js:689 +#: src/blocks/_pro/tab/edit.js:660 msgid "Scroll" msgstr "" -#: src/blocks/_pro/tab/edit.js:693 +#: src/blocks/_pro/tab/edit.js:664 msgid "Wrap to 2 rows" msgstr "" @@ -3075,31 +3075,31 @@ msgstr "" msgid "If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view." msgstr "" -#: src/blocks/slider/edit.js:257 +#: src/blocks/slider/edit.js:251 msgid "Change Slide Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:260 +#: src/blocks/slider/edit.js:254 msgid "Edit ( Stacked Layout ) Mode" msgstr "" -#: src/blocks/slider/edit.js:270 +#: src/blocks/slider/edit.js:264 msgid "Preview ( Slide ) Mode" msgstr "" -#: src/blocks/slider/edit.js:285 +#: src/blocks/slider/edit.js:279 msgid "Editor Setting" msgstr "" -#: src/blocks/slider/edit.js:289 +#: src/blocks/slider/edit.js:283 msgid "Editor Mode" msgstr "" -#: src/blocks/slider/edit.js:304 +#: src/blocks/slider/edit.js:298 msgid "Edit ( Stacked Layout )" msgstr "" -#: src/blocks/slider/edit.js:317 +#: src/blocks/slider/edit.js:311 msgid "Preview ( Slide )" msgstr "" @@ -4332,7 +4332,7 @@ msgstr "" #. translators: %s: 投稿タイプ名 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:290 -msgid "There are no %s." +msgid "There are no %ss." msgstr "" #: inc/vk-css-optimize/config.php:13 From 99d56a44f1c366b1082e4293faf37227aa825dcc Mon Sep 17 00:00:00 2001 From: mtdkei Date: Tue, 25 Feb 2025 10:40:29 +0900 Subject: [PATCH 31/32] Add translation --- .../vk-blocks-pro-ja-vk-blocks-admin-js.json | 2 +- .../vk-blocks-pro-ja-vk-blocks-build-js.json | 2 +- languages/vk-blocks-pro-ja.l10n.php | 2 +- languages/vk-blocks-pro-ja.mo | Bin 94307 -> 93718 bytes languages/vk-blocks-pro-ja.po | 222 ++++++++++-------- languages/vk-blocks-pro-js.pot | 134 +++++------ languages/vk-blocks-pro.pot | 138 +++++------ 7 files changed, 257 insertions(+), 243 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 e9909e379..0f03abb5c 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-admin-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイルを追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["正円"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading(not recommended)":["見出し (非推奨)"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Fixed display":["固定表示"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイルを追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"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:"],"Add noreferrer":["noreferrer を追加"],"Add nofollow":["nofollow を追加"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Slide":["スライド"],"Fade":["フェード"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Submit":["送信"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Unlink":["リンクを解除する"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["正円"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Input Link URL":["リンクURL"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"Link target":["リンクターゲット"],"Currently selected":[""],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Group link":["グループリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %s.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading(not recommended)":["見出し (非推奨)"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Fixed display":["固定表示"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json index e9909e379..0f03abb5c 100644 --- a/languages/vk-blocks-pro-ja-vk-blocks-build-js.json +++ b/languages/vk-blocks-pro-ja-vk-blocks-build-js.json @@ -1 +1 @@ -{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイルを追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"]," Image Border":["画像の線"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["正円"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"Link target":["リンクターゲット"],"Add noreferrer":["noreferrer を追加"],"Currently selected":[""],"Add nofollow":["nofollow を追加"],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %ss.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading(not recommended)":["見出し (非推奨)"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Fixed display":["固定表示"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file +{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja"},"Added balloon image setting":["吹き出し画像設定を追加"],"Balloon Image Setting":["吹き出し画像設定"],"Would you like to delete %s?":["%sを削除しますか?"],"Cancel":["キャンセル"],"Delete":["削除"],"Select":["選択"],"Balloon Image Name":["吹き出し画像の名前"],"Balloon Setting":["吹き出しブロック設定"],"Balloon Border Width Setting":["吹き出しの線幅の設定"],"1px":["1px"],"2px":["2px"],"3px":["3px"],"4px":["4px"],"You can register frequently used icon images for speech bubble blocks.":["よく使う吹き出し用のアイコン画像を登録する事ができます。"],"image":["画像"],"Block Category Position Setting":["ブロックカテゴリー位置設定"],"Above the WordPress default blocks":["WordPress標準ブロックの上"],"Under the WordPress default blocks":["WordPress標準ブロックの下"],"Block Manager Setting":["ブロックマネージャー設定"],"Block Style Manager Setting":["ブロックスタイルマネージャー設定"],"Breadcrumb Setting":["パンくずリスト設定"],"Separator Setting":["セパレーター設定"],"Please input the text you want to use as the separator.":["使用したいセパレーターの文字を入力してください。"],"Ex: / , > , ≫":["例: / , > , ≫"],"HOME":["HOME"],"Parent page":["親ページ"],"Child page":["子ページ"],"Block Style Label (Changeable)":["ブロックスタイル ラベル(変更可能)"],"Add":["追加"],"Add Custom Block Style":["ブロックスタイルを追加"],"Target Block (Required/Unchangeable)":["対象のブロック (必須/変更不可)"],"Set the target block.":["対象のブロックを設定してください。"],"Search for a block":["ブロックの検索"],"Please enter a string":["文字列を入力してください"],"Only alphanumeric characters, hyphens, and underscores are allowed.":["英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です"],"Class name is required":["クラス名は必須項目です"],"Already registered":["すでに登録されています"],"The identifier of the style used to compute a CSS class. (Required/Unchangeable)":["CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)"],"This will be the CSS class name following is-style-.":["is-style-に続くCSSクラス名になります。"],"(e.g.) %s-block-style":["(例) %s-block-style"],"Custom Block Style Setting":["カスタムブロックスタイル設定"],"You can register block styles.":["ブロックスタイルを登録できます。"],"Target block":["対象のブロック"],"CSS class":["CSSクラス"],"If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.":["selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Block Style Labels":["ブロックスタイル ラベル"],"※ Required If no title is entered, it will not appear on the toolbar.":["※ タイトルが入力されていない場合、ツールバーには表示されません。"],"If this Block Style is used for saved content, the style may change.":["保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。"],"Edit":["編集"],"Custom CSS Setting":["カスタムCSS設定"],"Show Custom CSS flag in editor":["エディタにカスタムCSS識別表示を表示する"],"Add Custom Format":["書式設定を追加"],"CSS class/unique ID (Required/Unchangeable)":["CSSクラス/固有ID (必須/変更不可)"],"(e.g.) vk-format-1":["(例) vk-format-1"],"Toolbar title (Changeable)":["ツールバー タイトル(変更可能)"],"Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.":["英字から始まり、英数字,ハイフン-のみ使用可能です"],"Custom Format":["書式設定"],"If the saved content has this format, the style will be unstyled.":["保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。"],"Format Setting":["フォーマット設定"],"Bold":["太字"],"Italic":["イタリック"],"Strikethrough":["打ち消し線"],"Nowrap":["改行しない"],"Color":["色"],"Text Color":["文字の色"],"Background Color":["背景色"],"Highlighter Color":["蛍光マーカー"],"Activate Highlighter":["蛍光マーカーを有効化"],"Custom CSS":["カスタムCSS"],"If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Max number of words":[""],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":["16:9"],"4:3":["4:3"],"3:2":["3:2"],"9:16":["9:16"],"3:4":["3:4"],"2:3":["2:3"],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"Link to URL":["URLにリンクする"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"Link to home page":["ホームページにリンクする"],"Choose a pattern. The original block settings will be cleared.":["パターンを選択してください。元のブロック設定はリセットされます。"],"Edit URL":["編集URL"],"Replace":["置換"],"Clear cache":["キャッシュをクリア"],"If the data is old, please clear the cache. It is usually updated every hour.":["データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。"],"Variation settings":["バリエーション設定"],"You can register the current block settings as block variations.":["現在のブロック設定をブロックバリエーションとして登録することができます。"],"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/":["https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/"],"Learn more about block variations":["ブロックのバリエーションについて詳しく見る"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツへのリンクを貼り付けてください。"],"Enter URL to embed here…":["埋め込むURLを入力…"],"Sorry, this content could not be embedded.":["このコンテンツは埋め込めませんでした。"],"Fold backwards on mobile":["モバイルでは折りたたむ"],"Right image":["画像右"],"Left image":["画像左"],"Large image & image lower character":["大画像 & 画像下文字"],"Button Common Setting":["ボタン共通設定"],"Button gap size":["ボタンギャップサイズ"],"Delete Image":["画像を削除"],"Title":["タイトル"],"URL":["URL"],"https://example.com":["https://example.com"],"Select image":["画像を選択"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"Current login user name":["現在のログインユーザー名"],"Custom Field":["カスタムフィールド"],"Hide on Ancestor Hierarchy Pages":["先祖階層のページでは非表示にする"],"This block is not displayed on pages without a parent page.":["このブロックは親ページがないページでは表示されません。"],"Hide on Parent Hierarchy Pages":["親階層のページでは非表示にする"],"This block will not display on pages other than pages that have a parent hierarchy.":["このブロックは親階層を持つ固定ページ以外のページには表示されません。"],"Prefix Label":["接頭辞"],"Suffix Label":["接尾辞"],"Text for Logged Out Users":["ログアウトユーザー向けテキスト"],"Link to Login on Logout":["ログイン ログアウト リンク"],"Custom Field Name":["カスタムフィールド値"],"Field Type":["フィールドタイプ"],"HTML element":["HTML 要素"],"text":["テキスト"],"textarea":["テキストエリア"],"wysiwyg":["wysiwyg"],"Setting up a link":["リンクの設定"],"Open link new tab.":["リンクを別ウィンドウで開く"],"div (default)":["div (標準)"],"h1":["h1"],"h2":["h2"],"h3":["h3"],"h4":["h4"],"h5":["h5"],"h6":["h6"],"p":["p"],"span":["span"],"Fixed Display Setting":["固定表示設定"],"The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.":["編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。"],"Display type":["表示タイプ"],"Always Visible":["常に表示"],"Show on Scroll":["スクロールしたら表示"],"Specify the time until display and hide":["表示および非表示までの時間を指定"],"Fixed position":["固定位置"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Scroll Display Setting":["スクロール表示設定"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"Timer Setting":["タイマー設定"],"Set the timing for display and hide. Enter 0 to disable timing for each option.":["表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。"],"Seconds until display":["表示するまでの秒数"],"Seconds until hide":["非表示にするまでの秒数"],"Redisplay settings":["再表示設定"],"Do not display again until the browser is closed":["ブラウザを閉じるまで再表示しない"],"When enabled, the same content will not be shown again until the visitor closes their browser.":["有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。"],"Grid column item link":["グリッドカラムアイテムリンク"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"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:"],"Add noreferrer":["noreferrer を追加"],"Add nofollow":["nofollow を追加"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Card header image aspect ratio":["カードヘッダー画像 縦横比"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border Width":["線の幅"],"Border Color":["線の色"],"Column padding":["カラムの余白"],"Column header media area":["カラムヘッダーメディアエリア"],"Column Width Setting":["カラム幅設定"],"If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.":["タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。"],"Column min width (Mobile)":["カラムの最小サイズ(モバイル)"],"Column min width (Tablet / Optional)":["カラムの最小サイズ(タブレット / 任意)"],"Column min width (PC / Optional)":["カラムの最小サイズ(PC / 任意)"],"Column Gap Setting":["カラム間の設定"],"Column gap size":["カラム間の余白"],"Column row-gap size (optional)":["カラム間の縦余白(任意)"],"Specify all columns at once":["全カラム一括指定"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Outer link":["Outerリンク"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":["vh"],"svh":["svh"],"lvh":["vh"],"dvh":["dvh"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"(PC)":["(PC)"],"(Tablet)":["(タブレット)"],"Enable Focal Point":["フォーカルポイントを有効にする"],"Focal Point Picker":["フォーカルピッカー"],"(Mobile)":["(モバイル)"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"This will not work on iPhone.":[""],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Book":["本"],"Pyramid":["ピラミッド"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Slider Settings":["スライド設定"],"Slide":["スライド"],"Fade":["フェード"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Default":["標準"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Center":["中央"],"Bottom on Mobile device":["モバイルでは下部に表示"],"Please check the actual behavior on the live site.":["実際の動作は公開画面で確認してください。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of posts for each display size.":["表示(取得)件数を割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of posts to change in a transition":["一度に遷移する投稿の数"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"One by One":["1つずつ"],"Same as the number of posts to display":["表示投稿数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display posts that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter a value as an integer divisor of the number of items to retrieve.":["表示(取得)件数の整数の約数で入力してください。"],"If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.":["スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"New Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Submit":["送信"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Unlink":["リンクを解除する"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"Tab Color Setting":["タブカラー設定"],"Tab Color":["タブカラー"],"Tab Item":["タブアイテム"],"Tab 01":["タブ 01"],"Tab 02":["タブ 02"],"Tab Label [ %s ]":["タブラベル [ %s ]"],"Tab Size Setting":["タブサイズ設定"],"Tab Size ( Smart Phone )":["タブサイズ ( スマートフォン )"],"Tab Size ( Tablet )":["タブサイズ ( タブレット )"],"Tab Size ( PC )":["タブサイズ ( PC )"],"Fit to the text":["テキストに合わせる"],"Monospaced":["等幅"],"Tab Display Options":["タブ表示オプション"],"If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.":["ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。"],"Tab Display Options ( Smart Phone )":["タブ表示オプション ( スマートフォン )"],"Tab Display Options ( Tablet )":["タブ表示オプション ( タブレット )"],"Tab Display Options ( PC )":["タブ表示オプション ( PC )"],"Not set":["未設定"],"Scroll":["スクロール"],"Wrap to 2 rows":["2行に折り返す"],"Tab":["タブ"],"Line":["ライン"],"Table of Contents":["目次"],"If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.":["見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":["OPEN"],"CLOSE":["CLOSE"],"Note on duplicating headings":["見出し複製時の注意"],"Taxonomy Block Option":["タクソノミーブロックオプション"],"Taxonomy":["タクソノミー"],"Show only top level categories":["トップレベルのみ表示"],"Hide if term has no posts":["投稿のないタームを表示しない"],"Show hierarchy":["階層を表示"],"Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.":["指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。"],"This block will not be displayed because this taxonomy has no term.":["この分類にはタームがないため、このブロックは表示されません。"],"This block will not be displayed because no taxonomy is selected.":["分類が選択されていないため、このブロックは表示されません。"],"label":["ラベル"],"Icon Text":["アイコンテキスト"],"Style Settings":["スタイル設定"],"Alert Style":["アラートスタイル"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Alert Success":["アラート Success"],"This is a success alert.":["This is a success alert."],"Alert Info":["アラート Info"],"Information":["Information"],"This is a information alert.":["This is a information alert."],"Alert Warning":["アラート Warning"],"This is a warning alert.":["This is a warning alert."],"Alert Danger":["アラート Danger"],"This is a danger alert.":["This is a danger alert."],"Add link to ancestor page title":["先祖階層のページタイトルにリンクを追加"],"If there is no child page, the block itself is not displayed":["子ページがない場合、このブロック自体を表示しない"],"Don't display inactive grand child pages":["非アクティブな孫ページを表示しない"],"Ancestor Page List Setting":["先祖階層からのページリスト設定"],"Display Ancestor Page Title":["先祖階層のページタイトルを表示"],"Archive title tag":["アーカイブタイトルタグ"],"Ancestor page title class name":["先祖階層ページタイトルのクラス名"],"Add border to image":["画像に枠線を追加する"],"* You can change border width on Setting > VK Blocks":["* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。"],"Border color of speech balloon":["吹き出しの線の色"],"Add border to balloon":["吹き出しに枠線を追加する"],"Balloon setting":["吹き出しブロック設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Speech":["吹き出し"],"Thinking":["もくもく"],"Image Style":["画像スタイル"],"Rounded":["角丸2"],"Circle":["正円"],"100%":["100%"],"Background color of speech balloon":["吹き出しの背景色"],"Default Icon Setting":["デフォルトアイコン設定"],"You can register default icons from Settings > VK Blocks in Admin.":["管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。"],"Animation setting":["アニメーション設定"],"Please select the type of animation.":["アニメーションのタイプを指定してください。"],"Trembling":["ぶるぶる"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.":["枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。"],"HTML element of the title":["タイトルのHTML要素"],"Transparent":["透過"],"White":["白"],"Please enter a title.":["見出しを入力してください。"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Input Link URL":["リンクURL"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon link":["アイコンリンク"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Private":["非公開"],"Password Protected":["パスワード保護"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.":["アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"Same as the number of items to display":["表示アイテム数と同じ"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Embed Code Settings":["埋め込みコードの設定"],"Embed Code":["埋め込みコード"],"Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.":["iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。"],"Please enter an iframe embed code.":["iframeの埋め込みコードを入力してください。"],"The provided URL is not allowed. Please use an approved embed source.":["指定された URL は許可されていません。承認された埋め込みソースを使用してください。"],"Iframe Width":["iframeの幅"],"Iframe Height":["iframeの高さ"],"Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.":["注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。"],"Only allowed URLs can be embedded.":["許可された URL のみを埋め込むことができます。"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Filter by %s":["%sで絞り込み"],"Filter by PostTypes":["投稿タイプ"],"Taxonomy filter condition":["分類絞り込み条件"],"OR ( Whichever apply )":["OR ( どれか )"],"AND ( All apply )":["AND ( すべて )"],"Number of Posts":["表示件数"],"Filter by Date":["日付で絞り込み"],"Period of Time":["期間"],"Whole Period":["全期間"],"From Today":["今日以降"],"From Now":["現在以降"],"From Tomorrow":["明日以降"],"* If you choose a future period, you will need to customize it so that future posts will be published immediately.":["※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。"],"Order":["表示順"],"ASC":["昇順"],"DESC":["降順"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Display from the first post always":["常に最初の投稿から表示する"],"Display from the first post even on pages beyond the second page.":["2ページ目以降のページでも、常に最初の投稿から表示する。"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Term's name on Image":["画像右上分類名"],"Excerpt":["抜粋"],"Author":["投稿者"],"Date":["日付"],"New mark":["新着表示"],"Taxonomies (all)":["分類(全項目)"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"Link target":["リンクターゲット"],"Currently selected":[""],"Accessibility link description":["リンクの説明"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Display the icon before the text":["テキストの前にアイコンを表示する"],"Display the icon after the text.":["テキストの後にアイコンを表示する"],"Show Scroll Message":["スクロールメッセージを表示"],"Scroll Message Text":["スクロールメッセージテキスト"],"Create":["作成"],"Registered":["登録済み"],"Continue":["続ける"],"There are unsaved changes. Do you want to continue ?":["変更は保存されていません。続けますか?"],"Category":["カテゴリー"],"For the icon name, please enter alphanumeric characters without \"dashicons-\". Example: embed-generic":["アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic"],"Dashicons list":["ダッシュアイコンリスト"],"Keyword":["キーワード"],"Add keyword":["キーワードを追加"],"Title (required)":["タイトル(必須)"],"My variations":["マイバリエーション"],"title is required":["タイトルは必須です"],"Description":["説明"],"Scope (required)":["対象(必須)"],"You can set where registered variations are displayed. You can call it from the displayed location.":["登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。"],"Are you sure you want to delete this variation?":["本当にこのバリエーションを削除しますか?"],"name is required":["名前は必須です"],"Name/Unique ID (required)":["名前/識別ID(必須)"],"my-variation":[""],"Inserter":["インサーター"],"Displayed on the inserter. Learn more about inserters.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Group link":["グループリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Table Cell Vertical":["テーブルのセルの縦方向"],"Cell Vertical":["セルを縦方向にする"],"Cell Vertical Breakpoint":["セルを縦方向にするブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"The following posts contain Page Content Blocks referencing non-public pages":["以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています"],"The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page's content can no longer be displayed.":["固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。"],"If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.":["もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。"],"Post not found, not public, or password protected":["投稿が存在しないか非公開かパスワード保護されています"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":["全ての%s"],"VK Taxonomy Block":["VK タクソノミーブロック"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック(四角)"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"Border Top Bottom":["直線 上下"],"Border / Stripes":["枠線 / ストライプ"],"Rounded02":["角丸2"],"Photo frame":["フォトフレーム"],"Photo frame Tilt Right":["フォトフレーム傾き右"],"Photo frame Tilt Left":["フォトフレーム傾き左"],"Shadow":["シャドウ"],"Wave01":["流体シェイプ1"],"Wave02":["流体シェイプ2"],"Wave03":["流体シェイプ3"],"Wave04":["流体シェイプ4"],"Solid Roundcorner":["直線 角丸"],"Stitch":["スティッチ"],"Setting saved.":["設定を保存しました。"],"Post":["投稿"],"There are no %s.":["該当の%sはありません。"],"VK Blocks ":["VK Blocks"],"Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。"],"License Key has no registered.":["ライセンスキーが登録されていません。"],"The VK Blocks Pro license is invalid.":["VK Blocks Pro のライセンスが無効です。"],"Please enter a valid license key for any of the following products on the settings screen.":["設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。"],"Enter the license key":["ライセンスキーを入力"],"If this display does not disappear even after entering a valid license key, re-acquire the update.":["有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。"],"Re-acquisition of updates":["更新の再取得"],"Word count type. Do not translate!\u0004words":["words"],"Scale option for Image dimension control\u0004Cover":["カバー"],"Scale option for Image dimension control\u0004Contain":["含める"],"Scale option for Image dimension control\u0004Fill":["埋める"],"Image scaling options\u0004Scale":["縮尺"],"button label\u0004Embed":["埋め込み"],"button label\u0004Try again":["再試行"],"button label\u0004Convert to link":["リンクに変換"],"label in admin menu\u0004Blocks":["Blocks"],"block title\u0004Alert":["アラート"],"block title\u0004Page list from ancestor":["先祖階層からのページリスト"],"block title\u0004Ballon":["吹き出し"],"block title\u0004Border Box":["枠線ボックス"],"block title\u0004Button":["ボタン"],"block title\u0004Classic FAQ":["旧 FAQ"],"block title\u0004FAQ Answer":["FAQ 回答"],"block title\u0004FAQ Question":["FAQ 質問"],"block title\u0004New FAQ":["新 FAQ"],"block title\u0004Flow":["フロー"],"block title\u0004Heading(not recommended)":["見出し (非推奨)"],"block title\u0004Icon Outer":["横並びアイコン"],"block title\u0004Icon":["アイコン"],"block title\u0004Page Content":["固定ページ本文"],"block title\u0004PR Blocks (not recommended)":["PR Blocks (非推奨)"],"block title\u0004PR Content":["PR Content"],"block title\u0004Slider Item":["スライダーアイテム"],"block title\u0004Slider":["スライダー"],"block title\u0004Responsive Spacer":["レスポンシブスペーサー"],"block title\u0004Staff":["スタッフ"],"block title\u0004Visual Embed":["ビジュアル埋め込み"],"block title\u0004Accordion Target":["アコーディオン コンテンツ"],"block title\u0004Accordion Trigger":["アコーディオン タイトル"],"block title\u0004Accordion":["アコーディオン"],"block title\u0004Animation":["アニメーション"],"block title\u0004Archive list":["アーカイブリスト"],"block title\u0004Blog Card Excerpt":["ブログカード抜粋"],"block title\u0004Blog Card Featured Image":["ブログカードアイキャッチ画像"],"block title\u0004Blog Card Site Logo":["ブログカードサイトロゴ"],"block title\u0004Blog Card Site Title":["ブログカードサイトタイトル"],"block title\u0004Blog Card Title":["ブログカードタイトル"],"block title\u0004Blog Card":["ブログカード"],"block title\u0004Breadcrumb":["パンくずリスト"],"block title\u0004Button Outer":["横並びボタン"],"block title\u0004Card Item":["カードアイテム"],"block title\u0004Card":["カード"],"block title\u0004Child page list":["子ページリスト"],"block title\u0004Dynamic Text":["ダイナミックテキスト"],"block title\u0004Fixed display":["固定表示"],"block title\u0004Grid Column Item":["グリッドカラムアイテム"],"block title\u0004Grid Column":["グリッドカラム"],"block title\u0004Grid Column Card Item Body":["グリッドカラムカードアイテムボディ"],"block title\u0004Grid Column Card Item Footer":["グリッドカラムカードアイテムフッター"],"block title\u0004Grid Column Card Item header":["グリッドカラムカードアイテムヘッダー"],"block title\u0004Grid Column Card Item":["グリッドカラムカードアイテム"],"block title\u0004Grid Column Card":["グリッドカラムカード"],"block title\u0004Icon Card Item":["アイコンカードアイテム"],"block title\u0004Icon Card":["アイコンカード"],"block title\u0004Outer":["Outer"],"block title\u0004Category Badge":["カテゴリーバッジ"],"block title\u0004Post List Slider":["投稿リストスライダー"],"block title\u0004Post list":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004Easily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.":["エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\u0004Remains fixed on the screen at all times.":["常に画面上に固定されたままになります。"],"block description\u0004Set the number of columns to be displayed for each screen size.":["画面サイズ毎にカラム数を設定して表示させます。"],"block description\u0004Body of Grid Column Card Block Item":["グリッドカラムカードのボディ"],"block description\u0004Footer button area of Grid Column Card Block Item":["グリッドカラムカードアイテムブロックのフッターボタンエリア"],"block description\u0004Header image area of Grid Column Card Block Item":["グリッドカードカラムアイテムブロックのヘッダー画像エリア"],"block description\u0004It is a block of single column of Grid Column Card.":["グリッドカラムカードブロックのカラムブロック"],"block description\u0004This block can flexible column layout":["柔軟なカラムレイアウトが作成できます"],"block description\u0004This is one item in an icon card.":["アイコンカード内の1つのアイテムです。"],"block description\u0004Display card with icons, headings, text, and links.":["アイコン,見出し,テキスト,リンクを設定してカードを表示します。"],"block description\u0004Set the background image, color, and border to show the layout and divisions.":["背景の画像や色,枠線の設定しレイアウトや区切りを表示します。"],"block description\u0004Displays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.":["投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。"],"block description\u0004Displays the list of posts by setting the post type, classification, and number of posts to display.":["投稿タイプ,分類,表示件数が設定して投稿リストを表示します。"],"block description\u0004Easily highlight your latest post.":["最新の投稿を簡単に目立たせることができます。"],"block description\u0004A single item in the select post list.":["選択投稿リスト内の1つのアイテムです。"],"block description\u0004Displays an arbitrarily specified page with the layout of the posting list.":["任意に指定したページを投稿リストのレイアウトで表示します。"],"block description\u0004This element sets the icon, color, and style of the step mark.":["ステップマークのアイコン、色、スタイルを設定する要素です。"],"block description\u0004Set and display step marks, which are useful when explaining the order.":["順番を説明する時に便利でステップマークを設定し表示します。"],"block description\u0004This is a table of contents that is automatically generated according to the headings when added.":["追加すると見出しに合わせて自動で生成される目次です。"],"block description\u0004Display Taxnomy List Pulldown":["タクソノミーの一覧やプルダウンを表示します"],"block description\u0004This element sets the label, color, and style of the timeline.":["タイムラインのラベル、色、スタイルを設定する要素です。"],"block description\u0004Displays a simple schedule and other information that is useful for explaining the order.":["順番を説明する時に便利でシンプルなスケジュールなどを表示します。"]}}} \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.l10n.php b/languages/vk-blocks-pro-ja.l10n.php index a61acf8d7..0bd9271f7 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,2 +1,2 @@ NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['Added balloon image setting'=>'吹き出し画像設定を追加','Balloon Image Setting'=>'吹き出し画像設定','Would you like to delete %s?'=>'%sを削除しますか?','Cancel'=>'キャンセル','Delete'=>'削除','Select'=>'選択','Balloon Image Name'=>'吹き出し画像の名前','Balloon Setting'=>'吹き出しブロック設定','Balloon Border Width Setting'=>'吹き出しの線幅の設定','1px'=>'1px','2px'=>'2px','3px'=>'3px','4px'=>'4px','You can register frequently used icon images for speech bubble blocks.'=>'よく使う吹き出し用のアイコン画像を登録する事ができます。','image'=>'画像','Block Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','Block Style Label (Changeable)'=>'ブロックスタイル ラベル(変更可能)','Add'=>'追加','Add Custom Block Style'=>'ブロックスタイルを追加','Target Block (Required/Unchangeable)'=>'対象のブロック (必須/変更不可)','Set the target block.'=>'対象のブロックを設定してください。','Search for a block'=>'ブロックの検索','Please enter a string'=>'文字列を入力してください','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です','Class name is required'=>'クラス名は必須項目です','Already registered'=>'すでに登録されています','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)','This will be the CSS class name following is-style-.'=>'is-style-に続くCSSクラス名になります。','(e.g.) %s-block-style'=>'(例) %s-block-style','Custom Block Style Setting'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','Target block'=>'対象のブロック','CSS class'=>'CSSクラス','If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.'=>'selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。','Block Style Labels'=>'ブロックスタイル ラベル','※ Required If no title is entered, it will not appear on the toolbar.'=>'※ タイトルが入力されていない場合、ツールバーには表示されません。','If this Block Style is used for saved content, the style may change.'=>'保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。','Edit'=>'編集','Custom CSS Setting'=>'カスタムCSS設定','Show Custom CSS flag in editor'=>'エディタにカスタムCSS識別表示を表示する','Add Custom Format'=>'書式設定を追加','CSS class/unique ID (Required/Unchangeable)'=>'CSSクラス/固有ID (必須/変更不可)','(e.g.) vk-format-1'=>'(例) vk-format-1','Toolbar title (Changeable)'=>'ツールバー タイトル(変更可能)','Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.'=>'英字から始まり、英数字,ハイフン-のみ使用可能です','Custom Format'=>'書式設定','If the saved content has this format, the style will be unstyled.'=>'保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。','Format Setting'=>'フォーマット設定','Bold'=>'太字','Italic'=>'イタリック','Strikethrough'=>'打ち消し線','Nowrap'=>'改行しない','Color'=>'色','Text Color'=>'文字の色','Background Color'=>'背景色','Highlighter Color'=>'蛍光マーカー','Activate Highlighter'=>'蛍光マーカーを有効化','Custom CSS'=>'カスタムCSS','If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','Example:'=>'例:','Custom Format Setting'=>'カスタム書式設定','You can apply commonly used formatting on the block toolbar.'=>'ブロックツールバーのよく使う書式設定を登録することができます。','Toolbar title'=>'ツールバー タイトル','Preview Text'=>'プレビューテキスト','Export %s'=>'%s をエクスポート','It seems that the changed settings are not saved. Please save your changes.'=>'設定の変更が保存されていないようです。変更を保存してください。','Export'=>'エクスポート','Toggle all'=>'すべて切り替える','Invalid JSON file'=>'無効なJSONファイルです','Unknown error'=>'不明なエラーです','Import data confirmation'=>'データのインポート確認','No import data'=>'インポートするデータがありません','Import %s'=>'%s をインポート','Import method'=>'インポート方法','Override'=>'上書き','The following data will not be imported because the identifiers are covered.'=>'次のデータは識別子が重複しているため、インポートされません。','Import'=>'インポート','Import Success'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','Margin Setting'=>'余白設定','Load Separate Setting'=>'分割読み込み設定','FAQ Block Setting'=>'FAQ Blocks 設定','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。','License key'=>'ライセンスキー','Note that the order in which CSS/JS are loaded will change.'=>'CSS / JSの読み込み順序が変わることに注意してください。','Load Separate Option on'=>'分割読み込みを有効にする','Custom Value'=>'カスタム値','If you enter a custom value, the values you entered will be used as a priority.'=>'カスタム値を入力すると、入力した値が優先されます。','This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.'=>'この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。','ex)'=>'例)','Margin'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','PC'=>'PC','Tablet'=>'タブレット','Mobile'=>'モバイル','Common Margin Setting'=>'共通余白設定','Please specify the size of the common margin used for responsive spacers, etc.'=>'レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。','Unit'=>'単位','Please specify a common accordion setting to be used in the FAQ block.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','Slow'=>'遅い','Fast'=>'速い','Very Fast'=>'非常に速い','Animation range'=>'アニメーションの距離','Short'=>'短い','Normal'=>'標準','Long'=>'長い','Animation only the first view'=>'初回表示のみアニメーション','Animation Settings'=>'アニメーション設定','Animation effect'=>'アニメーションの効果','Fade In'=>'フェードイン','Slide Up'=>'スライドアップ','Slide Left'=>'スライド左','Slide Right'=>'スライド右','Left Right'=>'左右','Up Down'=>'上下','Trembling Y'=>'ぶるぶる(Y方向)','Trembling X'=>'ぶるぶる(X方向)','Pounding'=>'どきどき','Shaking'=>'ゆらゆら','Animation speed'=>'アニメーションの速度','Very Slow'=>'非常に遅い','Archive List Setting'=>'アーカイブリスト設定','Post type'=>'投稿タイプ','Archive type'=>'アーカイブタイプ','Monthly'=>'月別','Yearly'=>'年別','Display as dropdown'=>'ドロップダウン','Show post counts'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','Display item'=>'表示要素','Excerpt Text'=>'抜粋','Warning! When you hidden this item, you will lose the content.'=>'注意!この項目を非表示にすると入力されていた内容は失われます。','Image'=>'画像','Button'=>'ボタン','Button option'=>'ボタンオプション','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。','Button text'=>'ボタンの文字','Image Height'=>'画像高さ','Slide Height for each device.'=>'デバイス毎の高さ','There are no applicable child pages.'=>'該当する子ページがありません。','Check your settings from the settings sidebar.'=>'設定サイドバーから設定を確認してください。','Display conditions'=>'表示条件','Parent'=>'親ページ','Ignore this post'=>'この投稿を除く','Current page'=>'現在のページ','Please select display element from the Setting sidebar.'=>'設定サイドバーから表示要素を選択してください。','Post Type Name'=>'投稿タイプ名','Ancestor Page Title'=>'先祖ページのタイトル','Parent Page Title'=>'親ページのタイトル','Custom field'=>'カスタムフィールド','This block is not rendered because no custom field name is specified.'=>'カスタムフィールド名が指定されていないため、このブロックは表示されません。','Display element settings'=>'表示要素の設定','Display element'=>'表示要素','Please Select'=>'選択してください','Post type name of the page being viewed'=>'表示中のページの投稿タイプ名','Page name in the ancestor hierarchy of the displayed page'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','Color Settings'=>'色設定','Margin setting inside the item'=>'アイテム内の余白設定','Padding (Top)'=>'余白 (上)','Padding (Left and Right)'=>'余白 (左右)','Padding (Bottom)'=>'余白 (下)','px'=>'px','em'=>'em','rem'=>'rem','vw'=>'vw','Layout Columns'=>'カラムレイアウト','Column Margin Bottom Setting'=>'カラム下部余白設定','Margin Bottom'=>'下部の余白','You can create a variety of layouts with grid column card blocks.'=>'グリッドカラムカードブロックでは柔軟なレイアウトが可能です。','Unlink'=>'リンクを解除する','Input Link URL'=>'リンクURL','Submit'=>'送信','Edit mode'=>'編集モード','All columns'=>'すべてのカラム','This column only'=>'このカラムのみ','Edit Lock'=>'編集ロック','Lock edits this block from the parent and other Grid Column Item block'=>'このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする','Column Setting'=>'カラム設定','Link URL:'=>'リンク URL:','If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.'=>'リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。','Make sure that no link is specified for the image block, etc.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','Border Color'=>'線の色','Column padding'=>'カラムの余白','Column header media area'=>'カラムヘッダーメディアエリア','Column Width Setting'=>'カラム幅設定','If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.'=>'タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。','Column min width (Mobile)'=>'カラムの最小サイズ(モバイル)','Column min width (Tablet / Optional)'=>'カラムの最小サイズ(タブレット / 任意)','Column min width (PC / Optional)'=>'カラムの最小サイズ(PC / 任意)','Column Gap Setting'=>'カラム間の設定','Column gap size'=>'カラム間の余白','Column row-gap size (optional)'=>'カラム間の縦余白(任意)','Specify all columns at once'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','Lower Divider Level'=>'下部区切りレベル','Border Setting'=>'枠線の設定','Border will disappear when divider effect is applied.'=>'枠線は区切りレベルを適用すると表示されなくなります。','Border type'=>'枠線の種類','None'=>'なし','Solid'=>'直線','Dotted'=>'点線','Dashed'=>'Dashed','Double'=>'二重線','Groove'=>'Groove','Ridge'=>'Ridge','Inset'=>'Inset','Outset'=>'Outset','Border width'=>'枠線の幅','Border radius'=>'枠線のRの大きさ','Container Inner Side Space Setting'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','Background Setting'=>'背景設定','Color Setting'=>'色設定','Color will overcome background image. If you want to display image, set opacity 0.'=>'色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。','Opacity Setting'=>'透過設定','Background Image PC'=>'背景画像 ( PC )','Background Image Tablet'=>'背景画像 ( タブレット )','Background Image Mobile'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','Fit to the Content area'=>'コンテンツエリアに合わせる','Add padding to the Outer area'=>'アウターエリア内に余白を追加する','Remove padding from the Outer area'=>'アウターエリア内の余白を無くす','Padding (Top and Bottom)'=>'余白 (上下)','Use default padding'=>'標準の余白を使用','Do not use default padding'=>'標準の余白を使用しない','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。','Divider Setting'=>'区切りの設定','Type'=>'タイプ','Tilt'=>'傾斜','Curve'=>'カーブ','Wave'=>'波状','Triangle'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名',' Image Border'=>'画像の線','Add border to image'=>'画像に枠線を追加する','* You can change border width on Setting > VK Blocks'=>'* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。','Border color of speech balloon'=>'吹き出しの線の色','Add border to balloon'=>'吹き出しに枠線を追加する','Balloon setting'=>'吹き出しブロック設定','Position'=>'位置','Please specify the layout of the balloon.'=>'吹き出しの配置を指定してください。','Please select the type of balloon.'=>'吹き出しのタイプを指定してください。','Speech'=>'吹き出し','Thinking'=>'もくもく','Image Style'=>'画像スタイル','Rounded'=>'角丸2','Circle'=>'正円','100%'=>'100%','Background color of speech balloon'=>'吹き出しの背景色','Default Icon Setting'=>'デフォルトアイコン設定','You can register default icons from Settings > VK Blocks in Admin.'=>'管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。','Animation setting'=>'アニメーション設定','Please select the type of animation.'=>'アニメーションのタイプを指定してください。','Trembling'=>'ぶるぶる','Upload image'=>'画像をアップロード','Icon Name'=>'アイコンの名前','The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.'=>'枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','Solid Angle Tab'=>'直線 ピン角 タブ','Solid Round Tab'=>'直線 角丸 タブ','Solid Angle Banner'=>'直線 ピン角 バナー','Solid Angle Onborder'=>'直線 ピンカド 線上','Solid Angle Inner'=>'直線 ピン角 内側','Solid Angle iconFeature'=>'直線 ピン角 アイコン','Button setting'=>'ボタン設定','Sub Caption'=>'サブテキスト','Button Size:'=>'ボタンサイズ:','Large'=>'大','Small'=>'小','Button Position:'=>'ボタンの位置:','Wide'=>'幅広','Block'=>'ブロック','Button Width:'=>'ボタンの幅:','25%'=>'25%','50%'=>'50%','75%'=>'75%','Button Style:'=>'ボタンスタイル:','Text only'=>'テキストのみ','If you select "No background", that you need to select a Custom Color.'=>'もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。','Button Effect:'=>'ボタン エフェクト','Shine'=>'光る','Default Color (Bootstrap)'=>'標準色 (Bootstrap)','Primary'=>'Primary','Secondary'=>'Secondary','Light'=>'Light','Dark'=>'Dark','Custom Color'=>'カスタムカラー','Button Color'=>'ボタンカラー','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。','Before text'=>'文字の前','After text'=>'文字の後','Size'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','Input text'=>'文字を入力','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます','You can be collapsing this block at VK Blocks Pro'=>'Pro版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','Use common settings'=>'共通設定を使用','* You can change each common accordion settings from Setting > VK Blocks.'=>'* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。','Display of arrow'=>'矢印の表示','Arrow display'=>'矢印を表示する','Arrow hidden'=>'矢印を表示しない','Input title'=>'タイトルを入力','Input content'=>'説明を入力','Input title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','Margin between Heading and sub text (rem)'=>'見出しとサブテキストの余白サイズ(rem)','Margin bottom size of after this block (rem)'=>'このブロック全体の下部の余白 (rem)','Heading Settings'=>'見出し設定','Icon Color'=>'アイコンの色','Sub Text Settings'=>'サブテキスト設定','Text size (rem)'=>'文字サイズ (rem)','Change heading level'=>'見出しレベルの変更','Heading %d'=>'見出し %d','Reset'=>'リセット','Icon & Frame'=>'アイコンと枠','Icon only'=>'アイコンのみ','Icon Common Setting'=>'アイコン共通設定','Icon link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','PR Block1 Setting'=>'PR Block1 設定','Icon 1'=>'アイコン 1','When you have an image. Image is displayed with priority'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 1'=>'PR 画像 1','PR Block2 Setting'=>'PR Block2 設定','Icon 2'=>'アイコン 2','PR Image 2'=>'PR 画像 2','PR Block3 Setting'=>'PR Block3 設定','Icon 3'=>'アイコン 3','When you have an image. Image is displayed with priority.'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 3'=>'PR 画像 3','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','Enter integer divisors for the number of placed slide items for each display size.'=>'各表示サイズのスライド アイテムの配置数の整数の約数を入力します。','If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','height'=>'height','margin-top'=>'margin-top','margin-bottom'=>'margin-bottom','Space Type'=>'余白タイプ','Custom'=>'カスタム','You can change each common margin size from Setting > VK Blocks'=>'* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。','Height for each device.'=>'デバイス毎の高さ','Spacer Settings'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','Display type and columns'=>'表示タイプとカラム','Column ( Screen size : Extra large )'=>'カラム ( 画面サイズ : Extra large )','Column ( Screen size : XX large )'=>'カラム ( 画面サイズ : XX Large )','Column ( Screen size : Extra small )'=>'カラム ( 画面サイズ : Extra small )','Column ( Screen size : Small )'=>'カラム ( 画面サイズ : Small )','Column ( Screen size : Medium )'=>'カラム ( 画面サイズ : Medium )','Column ( Screen size : Large )'=>'カラム ( 画面サイズ : Large )','Filter by %s'=>'%sで絞り込み','Filter by PostTypes'=>'投稿タイプ','Taxonomy filter condition'=>'分類絞り込み条件','OR ( Whichever apply )'=>'OR ( どれか )','AND ( All apply )'=>'AND ( すべて )','Number of Posts'=>'表示件数','Filter by Date'=>'日付で絞り込み','Period of Time'=>'期間','Whole Period'=>'全期間','From Today'=>'今日以降','From Now'=>'現在以降','From Tomorrow'=>'明日以降','* If you choose a future period, you will need to customize it so that future posts will be published immediately.'=>'※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。','Order'=>'表示順','ASC'=>'昇順','DESC'=>'降順','Order by'=>'表示順','Published Date'=>'公開日','Modefied Date'=>'更新日','Random'=>'ランダム','offset'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','Button align'=>'ボタンの位置','Term\'s name on Image'=>'画像右上分類名','Excerpt'=>'抜粋','Author'=>'投稿者','Date'=>'日付','New mark'=>'新着表示','Taxonomies (all)'=>'分類(全項目)','New mark option'=>'新着表示オプション','Number of days to display the new post mark'=>'新着表示日数','Link target'=>'リンクターゲット','Add noreferrer'=>'noreferrer を追加','Currently selected'=>'','Add nofollow'=>'nofollow を追加','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。','Hidden Settings'=>'非表示設定','Hidden at screen size'=>'非表示にする画面サイズ','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。','Hidden ( Screen size : all )'=>'非表示 ( 画面サイズ : all )','Hidden ( Screen size : xs )'=>'非表示 ( 画面サイズ : xs )','Hidden ( Screen size : sm )'=>'非表示 ( 画面サイズ : sm )','Hidden ( Screen size : md )'=>'非表示 ( 画面サイズ : md )','Hidden ( Screen size : lg )'=>'非表示 ( 画面サイズ : lg )','Hidden ( Screen size : xl )'=>'非表示 ( 画面サイズ : xl )','Hidden ( Screen size : xxl )'=>'非表示 ( 画面サイズ : xxl )','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。','Highlighter'=>'蛍光マーカー','Inline Font Size'=>'インライン文字サイズ','Inline font size'=>'インライン文字サイズ','Apply'=>'適用','Big'=>'大','Extra big'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','VK Blocks Pro'=>'VK Blocks Pro','https://github.com/vektor-inc/vk-blocks'=>'https://github.com/vektor-inc/vk-blocks','This is a plugin that extends Block Editor.'=>'ブロックエディタを拡張するプラグインです。','Vektor,Inc.'=>'Vektor,Inc.','https://vektor-inc.co.jp'=>'https://vektor-inc.co.jp','We\'ve released VK Blocks Pro!'=>'VK Blocks Pro を公開しました!','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/','See more'=>'続きを見る','Dismiss this notice'=>'通知を無視','Install Required Plugins'=>'必須プラグインのインストール','Install Plugins'=>'プラグインのインストール','Installing Plugin: %s'=>'プラグイン %s をインストール中','Something went wrong with the plugin API.'=>'プラグイン API で問題が発生しました。','This plugin requires the following plugin: %1$s.'=>'このプラグインは下記プラグインを必要としています:%1$s。','This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。','If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','Background fill lightgray'=>'背景塗り 灰色','Double border top and bottom black'=>'二重線 上下線 黒','Double border bottom black'=>'二重線 下線 黒','Solid border top and bottom black'=>'直線 上下 黒','Solid border bottom black'=>'直線 下線 黒','Dotted border bottom black'=>'点線 下線 黒','Both ends'=>'左右線','Brackets black'=>'括弧 黒','Arrow'=>'矢印','Check'=>'チェック','Check Square'=>'チェック(四角)','Check Circle'=>'チェック-丸','Handpoint'=>'指','Pencil'=>'鉛筆','Smile'=>'笑顔','Frown'=>'不満顔','Numbered Circle'=>'数字-丸','Numbered Square'=>'数字-四角','Border Top Bottom'=>'直線 上下','Border / Stripes'=>'枠線 / ストライプ','Rounded02'=>'角丸2','Photo frame'=>'フォトフレーム','Photo frame Tilt Right'=>'フォトフレーム傾き右','Photo frame Tilt Left'=>'フォトフレーム傾き左','Shadow'=>'シャドウ','Wave01'=>'流体シェイプ1','Wave02'=>'流体シェイプ2','Wave03'=>'流体シェイプ3','Wave04'=>'流体シェイプ4','Solid Roundcorner'=>'直線 角丸','Stitch'=>'スティッチ','Setting saved.'=>'設定を保存しました。','Post'=>'投稿','There are no %ss.'=>'該当の%sはありません。','VK Blocks '=>'VK Blocks','Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.'=>'VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。','License Key has no registered.'=>'ライセンスキーが登録されていません。','The VK Blocks Pro license is invalid.'=>'VK Blocks Pro のライセンスが無効です。','Please enter a valid license key for any of the following products on the settings screen.'=>'設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。','Enter the license key'=>'ライセンスキーを入力','If this display does not disappear even after entering a valid license key, re-acquire the update.'=>'有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。','Re-acquisition of updates'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.'=>'画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。','block titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file +return ['domain'=>NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['Added balloon image setting'=>'吹き出し画像設定を追加','Balloon Image Setting'=>'吹き出し画像設定','Would you like to delete %s?'=>'%sを削除しますか?','Cancel'=>'キャンセル','Delete'=>'削除','Select'=>'選択','Balloon Image Name'=>'吹き出し画像の名前','Balloon Setting'=>'吹き出しブロック設定','Balloon Border Width Setting'=>'吹き出しの線幅の設定','1px'=>'1px','2px'=>'2px','3px'=>'3px','4px'=>'4px','You can register frequently used icon images for speech bubble blocks.'=>'よく使う吹き出し用のアイコン画像を登録する事ができます。','image'=>'画像','Block Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','Block Style Label (Changeable)'=>'ブロックスタイル ラベル(変更可能)','Add'=>'追加','Add Custom Block Style'=>'ブロックスタイルを追加','Target Block (Required/Unchangeable)'=>'対象のブロック (必須/変更不可)','Set the target block.'=>'対象のブロックを設定してください。','Search for a block'=>'ブロックの検索','Please enter a string'=>'文字列を入力してください','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です','Class name is required'=>'クラス名は必須項目です','Already registered'=>'すでに登録されています','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)','This will be the CSS class name following is-style-.'=>'is-style-に続くCSSクラス名になります。','(e.g.) %s-block-style'=>'(例) %s-block-style','Custom Block Style Setting'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','Target block'=>'対象のブロック','CSS class'=>'CSSクラス','If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.'=>'selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。','Block Style Labels'=>'ブロックスタイル ラベル','※ Required If no title is entered, it will not appear on the toolbar.'=>'※ タイトルが入力されていない場合、ツールバーには表示されません。','If this Block Style is used for saved content, the style may change.'=>'保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。','Edit'=>'編集','Custom CSS Setting'=>'カスタムCSS設定','Show Custom CSS flag in editor'=>'エディタにカスタムCSS識別表示を表示する','Add Custom Format'=>'書式設定を追加','CSS class/unique ID (Required/Unchangeable)'=>'CSSクラス/固有ID (必須/変更不可)','(e.g.) vk-format-1'=>'(例) vk-format-1','Toolbar title (Changeable)'=>'ツールバー タイトル(変更可能)','Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.'=>'英字から始まり、英数字,ハイフン-のみ使用可能です','Custom Format'=>'書式設定','If the saved content has this format, the style will be unstyled.'=>'保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。','Format Setting'=>'フォーマット設定','Bold'=>'太字','Italic'=>'イタリック','Strikethrough'=>'打ち消し線','Nowrap'=>'改行しない','Color'=>'色','Text Color'=>'文字の色','Background Color'=>'背景色','Highlighter Color'=>'蛍光マーカー','Activate Highlighter'=>'蛍光マーカーを有効化','Custom CSS'=>'カスタムCSS','If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','Example:'=>'例:','Custom Format Setting'=>'カスタム書式設定','You can apply commonly used formatting on the block toolbar.'=>'ブロックツールバーのよく使う書式設定を登録することができます。','Toolbar title'=>'ツールバー タイトル','Preview Text'=>'プレビューテキスト','Export %s'=>'%s をエクスポート','It seems that the changed settings are not saved. Please save your changes.'=>'設定の変更が保存されていないようです。変更を保存してください。','Export'=>'エクスポート','Toggle all'=>'すべて切り替える','Invalid JSON file'=>'無効なJSONファイルです','Unknown error'=>'不明なエラーです','Import data confirmation'=>'データのインポート確認','No import data'=>'インポートするデータがありません','Import %s'=>'%s をインポート','Import method'=>'インポート方法','Override'=>'上書き','The following data will not be imported because the identifiers are covered.'=>'次のデータは識別子が重複しているため、インポートされません。','Import'=>'インポート','Import Success'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','Margin Setting'=>'余白設定','Load Separate Setting'=>'分割読み込み設定','FAQ Block Setting'=>'FAQ Blocks 設定','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。','License key'=>'ライセンスキー','Note that the order in which CSS/JS are loaded will change.'=>'CSS / JSの読み込み順序が変わることに注意してください。','Load Separate Option on'=>'分割読み込みを有効にする','Custom Value'=>'カスタム値','If you enter a custom value, the values you entered will be used as a priority.'=>'カスタム値を入力すると、入力した値が優先されます。','This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.'=>'この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。','ex)'=>'例)','Margin'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','PC'=>'PC','Tablet'=>'タブレット','Mobile'=>'モバイル','Common Margin Setting'=>'共通余白設定','Please specify the size of the common margin used for responsive spacers, etc.'=>'レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。','Unit'=>'単位','Please specify a common accordion setting to be used in the FAQ block.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded'=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','Slow'=>'遅い','Fast'=>'速い','Very Fast'=>'非常に速い','Animation range'=>'アニメーションの距離','Short'=>'短い','Normal'=>'標準','Long'=>'長い','Animation only the first view'=>'初回表示のみアニメーション','Animation Settings'=>'アニメーション設定','Animation effect'=>'アニメーションの効果','Fade In'=>'フェードイン','Slide Up'=>'スライドアップ','Slide Left'=>'スライド左','Slide Right'=>'スライド右','Left Right'=>'左右','Up Down'=>'上下','Trembling Y'=>'ぶるぶる(Y方向)','Trembling X'=>'ぶるぶる(X方向)','Pounding'=>'どきどき','Shaking'=>'ゆらゆら','Animation speed'=>'アニメーションの速度','Very Slow'=>'非常に遅い','Archive List Setting'=>'アーカイブリスト設定','Post type'=>'投稿タイプ','Archive type'=>'アーカイブタイプ','Monthly'=>'月別','Yearly'=>'年別','Display as dropdown'=>'ドロップダウン','Show post counts'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'16:9','4:3'=>'4:3','3:2'=>'3:2','9:16'=>'9:16','3:4'=>'3:4','2:3'=>'2:3','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','Link to URL'=>'URLにリンクする','Open in new tab'=>'リンクを別ウィンドウで開く','Link rel'=>'rel属性','Link to home page'=>'ホームページにリンクする','Choose a pattern. The original block settings will be cleared.'=>'パターンを選択してください。元のブロック設定はリセットされます。','Edit URL'=>'編集URL','Replace'=>'置換','Clear cache'=>'キャッシュをクリア','If the data is old, please clear the cache. It is usually updated every hour.'=>'データが古い場合は、キャッシュをクリアしてください。通常、データは1時間ごとに更新されます。','Variation settings'=>'バリエーション設定','You can register the current block settings as block variations.'=>'現在のブロック設定をブロックバリエーションとして登録することができます。','https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/'=>'https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/','Learn more about block variations'=>'ブロックのバリエーションについて詳しく見る','Paste a link to the content you want to display on your site.'=>'サイトに表示したいコンテンツへのリンクを貼り付けてください。','Enter URL to embed here…'=>'埋め込むURLを入力…','Sorry, this content could not be embedded.'=>'このコンテンツは埋め込めませんでした。','Fold backwards on mobile'=>'モバイルでは折りたたむ','Right image'=>'画像右','Left image'=>'画像左','Large image & image lower character'=>'大画像 & 画像下文字','Button Common Setting'=>'ボタン共通設定','Button gap size'=>'ボタンギャップサイズ','Delete Image'=>'画像を削除','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','URL'=>'URL','https://example.com'=>'https://example.com','Select image'=>'画像を選択','Display item'=>'表示要素','Excerpt Text'=>'抜粋','Warning! When you hidden this item, you will lose the content.'=>'注意!この項目を非表示にすると入力されていた内容は失われます。','Image'=>'画像','Button'=>'ボタン','Button option'=>'ボタンオプション','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。','Button text'=>'ボタンの文字','Image Height'=>'画像高さ','Slide Height for each device.'=>'デバイス毎の高さ','There are no applicable child pages.'=>'該当する子ページがありません。','Check your settings from the settings sidebar.'=>'設定サイドバーから設定を確認してください。','Display conditions'=>'表示条件','Parent'=>'親ページ','Ignore this post'=>'この投稿を除く','Current page'=>'現在のページ','Please select display element from the Setting sidebar.'=>'設定サイドバーから表示要素を選択してください。','Post Type Name'=>'投稿タイプ名','Ancestor Page Title'=>'先祖ページのタイトル','Parent Page Title'=>'親ページのタイトル','Custom field'=>'カスタムフィールド','This block is not rendered because no custom field name is specified.'=>'カスタムフィールド名が指定されていないため、このブロックは表示されません。','Display element settings'=>'表示要素の設定','Display element'=>'表示要素','Please Select'=>'選択してください','Post type name of the page being viewed'=>'表示中のページの投稿タイプ名','Page name in the ancestor hierarchy of the displayed page'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','Current login user name'=>'現在のログインユーザー名','Custom Field'=>'カスタムフィールド','Hide on Ancestor Hierarchy Pages'=>'先祖階層のページでは非表示にする','This block is not displayed on pages without a parent page.'=>'このブロックは親ページがないページでは表示されません。','Hide on Parent Hierarchy Pages'=>'親階層のページでは非表示にする','This block will not display on pages other than pages that have a parent hierarchy.'=>'このブロックは親階層を持つ固定ページ以外のページには表示されません。','Prefix Label'=>'接頭辞','Suffix Label'=>'接尾辞','Text for Logged Out Users'=>'ログアウトユーザー向けテキスト','Link to Login on Logout'=>'ログイン ログアウト リンク','Custom Field Name'=>'カスタムフィールド値','Field Type'=>'フィールドタイプ','HTML element'=>'HTML 要素','text'=>'テキスト','textarea'=>'テキストエリア','wysiwyg'=>'wysiwyg','Setting up a link'=>'リンクの設定','Open link new tab.'=>'リンクを別ウィンドウで開く','div (default)'=>'div (標準)','h1'=>'h1','h2'=>'h2','h3'=>'h3','h4'=>'h4','h5'=>'h5','h6'=>'h6','p'=>'p','span'=>'span','Fixed Display Setting'=>'固定表示設定','The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen.'=>'編集画面では固定位置ブロックの固定位置は変わりません。フロント画面でご確認ください。','Display type'=>'表示タイプ','Always Visible'=>'常に表示','Show on Scroll'=>'スクロールしたら表示','Specify the time until display and hide'=>'表示および非表示までの時間を指定','Fixed position'=>'固定位置','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Scroll Display Setting'=>'スクロール表示設定','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','Timer Setting'=>'タイマー設定','Set the timing for display and hide. Enter 0 to disable timing for each option.'=>'表示・非表示のタイミングを設定してください。それぞれのタイミングを無効にする場合は 0を入力してください。','Seconds until display'=>'表示するまでの秒数','Seconds until hide'=>'非表示にするまでの秒数','Redisplay settings'=>'再表示設定','Do not display again until the browser is closed'=>'ブラウザを閉じるまで再表示しない','When enabled, the same content will not be shown again until the visitor closes their browser.'=>'有効にすると、同じコンテンツは訪問者がブラウザを閉じるまで再表示されません。','Grid column item link'=>'グリッドカラムアイテムリンク','Color Settings'=>'色設定','Margin setting inside the item'=>'アイテム内の余白設定','Padding (Top)'=>'余白 (上)','Padding (Left and Right)'=>'余白 (左右)','Padding (Bottom)'=>'余白 (下)','px'=>'px','em'=>'em','rem'=>'rem','vw'=>'vw','Layout Columns'=>'カラムレイアウト','Column Margin Bottom Setting'=>'カラム下部余白設定','Margin Bottom'=>'下部の余白','You can create a variety of layouts with grid column card blocks.'=>'グリッドカラムカードブロックでは柔軟なレイアウトが可能です。','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:','Add noreferrer'=>'noreferrer を追加','Add nofollow'=>'nofollow を追加','If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.'=>'リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。','Make sure that no link is specified for the image block, etc.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Card header image aspect ratio'=>'カードヘッダー画像 縦横比','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border Width'=>'線の幅','Border Color'=>'線の色','Column padding'=>'カラムの余白','Column header media area'=>'カラムヘッダーメディアエリア','Column Width Setting'=>'カラム幅設定','If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.'=>'タブレットまたはPCの最小列サイズを%で指定すると、画面サイズに応じて上下の行の列数を揃えやすくなります。','Column min width (Mobile)'=>'カラムの最小サイズ(モバイル)','Column min width (Tablet / Optional)'=>'カラムの最小サイズ(タブレット / 任意)','Column min width (PC / Optional)'=>'カラムの最小サイズ(PC / 任意)','Column Gap Setting'=>'カラム間の設定','Column gap size'=>'カラム間の余白','Column row-gap size (optional)'=>'カラム間の縦余白(任意)','Specify all columns at once'=>'全カラム一括指定','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Outer link'=>'Outerリンク','Lower Divider Level'=>'下部区切りレベル','Border Setting'=>'枠線の設定','Border will disappear when divider effect is applied.'=>'枠線は区切りレベルを適用すると表示されなくなります。','Border type'=>'枠線の種類','None'=>'なし','Solid'=>'直線','Dotted'=>'点線','Dashed'=>'Dashed','Double'=>'二重線','Groove'=>'Groove','Ridge'=>'Ridge','Inset'=>'Inset','Outset'=>'Outset','Border width'=>'枠線の幅','Border radius'=>'枠線のRの大きさ','Container Inner Side Space Setting'=>'コンテナ内側のスペース設定','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'vh','svh'=>'svh','lvh'=>'vh','dvh'=>'dvh','Background Setting'=>'背景設定','Color Setting'=>'色設定','Color will overcome background image. If you want to display image, set opacity 0.'=>'色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。','Opacity Setting'=>'透過設定','Background Image PC'=>'背景画像 ( PC )','Background Image Tablet'=>'背景画像 ( タブレット )','Background Image Mobile'=>'背景画像 ( モバイル )','(PC)'=>'(PC)','(Tablet)'=>'(タブレット)','Enable Focal Point'=>'フォーカルポイントを有効にする','Focal Point Picker'=>'フォーカルピッカー','(Mobile)'=>'(モバイル)','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','This will not work on iPhone.'=>'','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','Fit to the Content area'=>'コンテンツエリアに合わせる','Add padding to the Outer area'=>'アウターエリア内に余白を追加する','Remove padding from the Outer area'=>'アウターエリア内の余白を無くす','Padding (Top and Bottom)'=>'余白 (上下)','Use default padding'=>'標準の余白を使用','Do not use default padding'=>'標準の余白を使用しない','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。','Divider Setting'=>'区切りの設定','Type'=>'タイプ','Tilt'=>'傾斜','Curve'=>'カーブ','Wave'=>'波状','Triangle'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Book'=>'本','Pyramid'=>'ピラミッド','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Slider Settings'=>'スライド設定','Effect'=>'エフェクト','Slide'=>'スライド','Fade'=>'フェード','Loop'=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Default'=>'標準','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Center'=>'中央','Bottom on Mobile device'=>'モバイルでは下部に表示','Please check the actual behavior on the live site.'=>'実際の動作は公開画面で確認してください。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 1.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+1以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of posts for each display size.'=>'表示(取得)件数を割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of posts to change in a transition'=>'一度に遷移する投稿の数','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','One by One'=>'1つずつ','Same as the number of posts to display'=>'表示投稿数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display posts that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter a value as an integer divisor of the number of items to retrieve.'=>'表示(取得)件数の整数の約数で入力してください。','If you want to loop slides, the number of posts must be greater than or equal to twice the number of posts you want to display per view.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','If you want to loop slides, the number of posts must be greater than or equal to the number of posts you want to display per view + 2.'=>'スライドをループさせたい場合、投稿の数は、1ビューに表示したいアイテム数+2以上である必要があります。','New Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Submit'=>'送信','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Unlink'=>'リンクを解除する','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','Tab Color Setting'=>'タブカラー設定','Tab Color'=>'タブカラー','Tab Item'=>'タブアイテム','Tab 01'=>'タブ 01','Tab 02'=>'タブ 02','Tab Label [ %s ]'=>'タブラベル [ %s ]','Tab Size Setting'=>'タブサイズ設定','Tab Size ( Smart Phone )'=>'タブサイズ ( スマートフォン )','Tab Size ( Tablet )'=>'タブサイズ ( タブレット )','Tab Size ( PC )'=>'タブサイズ ( PC )','Fit to the text'=>'テキストに合わせる','Monospaced'=>'等幅','Tab Display Options'=>'タブ表示オプション','If there are many labels or the screen width is narrow, you can adjust it here. *Tab size setting will not be effective.'=>'ラベルが多い場合や画面の幅が狭い場合、ここで調整することができます。* タブサイズの設定は反映されなくなります。','Tab Display Options ( Smart Phone )'=>'タブ表示オプション ( スマートフォン )','Tab Display Options ( Tablet )'=>'タブ表示オプション ( タブレット )','Tab Display Options ( PC )'=>'タブ表示オプション ( PC )','Not set'=>'未設定','Scroll'=>'スクロール','Wrap to 2 rows'=>'2行に折り返す','Tab'=>'タブ','Line'=>'ライン','Table of Contents'=>'目次','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'見出しを複製すると目次ブロックが適切に動作しません。IDを振り直してください。','No frame'=>'枠無し','Default Display Status'=>'初期表示状態','OPEN'=>'OPEN','CLOSE'=>'CLOSE','Note on duplicating headings'=>'見出し複製時の注意','Taxonomy Block Option'=>'タクソノミーブロックオプション','Taxonomy'=>'タクソノミー','Show only top level categories'=>'トップレベルのみ表示','Hide if term has no posts'=>'投稿のないタームを表示しない','Show hierarchy'=>'階層を表示','Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block.'=>'指定されたタクソノミーが存在しません。このブロックを表示または削除するために、タクソノミー設定を確認してください。','This block will not be displayed because this taxonomy has no term.'=>'この分類にはタームがないため、このブロックは表示されません。','This block will not be displayed because no taxonomy is selected.'=>'分類が選択されていないため、このブロックは表示されません。','label'=>'ラベル','Icon Text'=>'アイコンテキスト','Style Settings'=>'スタイル設定','Alert Style'=>'アラートスタイル','Success'=>'Success','Info'=>'Info','Warning'=>'Warning','Danger'=>'Danger','Alert Success'=>'アラート Success','This is a success alert.'=>'This is a success alert.','Alert Info'=>'アラート Info','Information'=>'Information','This is a information alert.'=>'This is a information alert.','Alert Warning'=>'アラート Warning','This is a warning alert.'=>'This is a warning alert.','Alert Danger'=>'アラート Danger','This is a danger alert.'=>'This is a danger alert.','Add link to ancestor page title'=>'先祖階層のページタイトルにリンクを追加','If there is no child page, the block itself is not displayed'=>'子ページがない場合、このブロック自体を表示しない','Don\'t display inactive grand child pages'=>'非アクティブな孫ページを表示しない','Ancestor Page List Setting'=>'先祖階層からのページリスト設定','Display Ancestor Page Title'=>'先祖階層のページタイトルを表示','Archive title tag'=>'アーカイブタイトルタグ','Ancestor page title class name'=>'先祖階層ページタイトルのクラス名','Image Border'=>'画像の線','Add border to image'=>'画像に枠線を追加する','* You can change border width on Setting > VK Blocks'=>'* 線の太さは 管理画面の 設定 > VK Blocks から選択する事ができます。','Border color of speech balloon'=>'吹き出しの線の色','Add border to balloon'=>'吹き出しに枠線を追加する','Balloon setting'=>'吹き出しブロック設定','Position'=>'位置','Please specify the layout of the balloon.'=>'吹き出しの配置を指定してください。','Please select the type of balloon.'=>'吹き出しのタイプを指定してください。','Speech'=>'吹き出し','Thinking'=>'もくもく','Image Style'=>'画像スタイル','Rounded'=>'角丸2','Circle'=>'正円','100%'=>'100%','Background color of speech balloon'=>'吹き出しの背景色','Default Icon Setting'=>'デフォルトアイコン設定','You can register default icons from Settings > VK Blocks in Admin.'=>'管理画面の 設定 > VK Blocks から よく使うアイコンを登録する事ができます。','Animation setting'=>'アニメーション設定','Please select the type of animation.'=>'アニメーションのタイプを指定してください。','Trembling'=>'ぶるぶる','Upload image'=>'画像をアップロード','Icon Name'=>'アイコンの名前','The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.'=>'枠線ブロック内の最初の要素の margin-top と 最後の要素の margin-bottom は自動的に0になります。最初と最後に余白をつけたい場合はスペーサーブロックなどで margin指定ではなくheight指定でご利用ください。','HTML element of the title'=>'タイトルのHTML要素','Transparent'=>'透過','White'=>'白','Please enter a title.'=>'見出しを入力してください。','Solid Angle Tab'=>'直線 ピン角 タブ','Solid Round Tab'=>'直線 角丸 タブ','Solid Angle Banner'=>'直線 ピン角 バナー','Solid Angle Onborder'=>'直線 ピンカド 線上','Solid Angle Inner'=>'直線 ピン角 内側','Solid Angle iconFeature'=>'直線 ピン角 アイコン','Input Link URL'=>'リンクURL','Button setting'=>'ボタン設定','Sub Caption'=>'サブテキスト','Button Size:'=>'ボタンサイズ:','Large'=>'大','Small'=>'小','Button Position:'=>'ボタンの位置:','Wide'=>'幅広','Block'=>'ブロック','Button Width:'=>'ボタンの幅:','25%'=>'25%','50%'=>'50%','75%'=>'75%','Button Style:'=>'ボタンスタイル:','Text only'=>'テキストのみ','If you select "No background", that you need to select a Custom Color.'=>'もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。','Button Effect:'=>'ボタン エフェクト','Shine'=>'光る','Default Color (Bootstrap)'=>'標準色 (Bootstrap)','Primary'=>'Primary','Secondary'=>'Secondary','Light'=>'Light','Dark'=>'Dark','Custom Color'=>'カスタムカラー','Button Color'=>'ボタンカラー','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。','Before text'=>'文字の前','After text'=>'文字の後','Size'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','Input text'=>'文字を入力','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます','You can be collapsing this block at VK Blocks Pro'=>'Pro版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','Use common settings'=>'共通設定を使用','* You can change each common accordion settings from Setting > VK Blocks.'=>'* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。','Display of arrow'=>'矢印の表示','Arrow display'=>'矢印を表示する','Arrow hidden'=>'矢印を表示しない','Input title'=>'タイトルを入力','Input content'=>'説明を入力','Input title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','Margin between Heading and sub text (rem)'=>'見出しとサブテキストの余白サイズ(rem)','Margin bottom size of after this block (rem)'=>'このブロック全体の下部の余白 (rem)','Heading Settings'=>'見出し設定','Icon Color'=>'アイコンの色','Sub Text Settings'=>'サブテキスト設定','Text size (rem)'=>'文字サイズ (rem)','Change heading level'=>'見出しレベルの変更','Heading %d'=>'見出し %d','Reset'=>'リセット','Icon & Frame'=>'アイコンと枠','Icon only'=>'アイコンのみ','Icon Common Setting'=>'アイコン共通設定','Icon link'=>'アイコンリンク','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Private'=>'非公開','Password Protected'=>'パスワード保護','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','PR Block1 Setting'=>'PR Block1 設定','Icon 1'=>'アイコン 1','When you have an image. Image is displayed with priority'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 1'=>'PR 画像 1','PR Block2 Setting'=>'PR Block2 設定','Icon 2'=>'アイコン 2','PR Image 2'=>'PR 画像 2','PR Block3 Setting'=>'PR Block3 設定','Icon 3'=>'アイコン 3','When you have an image. Image is displayed with priority.'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 3'=>'PR 画像 3','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','If the active slide is in the center, the number of placed slide items must be greater than or equal to the number of items you want to display in one view + 2.'=>'アクティブスライドを中央にする場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+2以上である必要があります。','If you want to loop slides, the number of placed slide items must be greater than or equal to the number of items you want to display per view + 1.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数+1以上である必要があります。','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','Same as the number of items to display'=>'表示アイテム数と同じ','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','Enter integer divisors for the number of placed slide items for each display size.'=>'各表示サイズのスライド アイテムの配置数の整数の約数を入力します。','If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、1ビューに表示したいアイテム数の2倍以上である必要があります。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','height'=>'height','margin-top'=>'margin-top','margin-bottom'=>'margin-bottom','Space Type'=>'余白タイプ','Custom'=>'カスタム','You can change each common margin size from Setting > VK Blocks'=>'* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。','Height for each device.'=>'デバイス毎の高さ','Spacer Settings'=>'余白の設定','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Embed Code Settings'=>'埋め込みコードの設定','Embed Code'=>'埋め込みコード','Please paste the iframe embed code directly. Only iframe tags with allowed URLs (Google Maps, Google Calendar, Google Forms, YouTube、OpenStreetMap, Vimeo) are permitted.'=>'iframe 埋め込みコードを直接貼り付けてください。許可された URL (Google マップ、Google カレンダー、Google フォーム、YouTube、OpenStreetMap、Vimeo) の iframe タグのみが許可されます。','Please enter an iframe embed code.'=>'iframeの埋め込みコードを入力してください。','The provided URL is not allowed. Please use an approved embed source.'=>'指定された URL は許可されていません。承認された埋め込みソースを使用してください。','Iframe Width'=>'iframeの幅','Iframe Height'=>'iframeの高さ','Note: These settings are only applicable to iframe tags. Other embed codes will not respond to these adjustments.'=>'注意: これらの設定はiframeタグにのみ適用されます。他の埋め込みコードには対応していません。','Only allowed URLs can be embedded.'=>'許可された URL のみを埋め込むことができます。','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','Display type and columns'=>'表示タイプとカラム','Column ( Screen size : Extra large )'=>'カラム ( 画面サイズ : Extra large )','Column ( Screen size : XX large )'=>'カラム ( 画面サイズ : XX Large )','Column ( Screen size : Extra small )'=>'カラム ( 画面サイズ : Extra small )','Column ( Screen size : Small )'=>'カラム ( 画面サイズ : Small )','Column ( Screen size : Medium )'=>'カラム ( 画面サイズ : Medium )','Column ( Screen size : Large )'=>'カラム ( 画面サイズ : Large )','Filter by %s'=>'%sで絞り込み','Filter by PostTypes'=>'投稿タイプ','Taxonomy filter condition'=>'分類絞り込み条件','OR ( Whichever apply )'=>'OR ( どれか )','AND ( All apply )'=>'AND ( すべて )','Number of Posts'=>'表示件数','Filter by Date'=>'日付で絞り込み','Period of Time'=>'期間','Whole Period'=>'全期間','From Today'=>'今日以降','From Now'=>'現在以降','From Tomorrow'=>'明日以降','* If you choose a future period, you will need to customize it so that future posts will be published immediately.'=>'※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイズが必要です。','Order'=>'表示順','ASC'=>'昇順','DESC'=>'降順','Order by'=>'表示順','Published Date'=>'公開日','Modefied Date'=>'更新日','Random'=>'ランダム','offset'=>'オフセット数','Display from the first post always'=>'常に最初の投稿から表示する','Display from the first post even on pages beyond the second page.'=>'2ページ目以降のページでも、常に最初の投稿から表示する。','New post mark'=>'新着表示','Button align'=>'ボタンの位置','Term\'s name on Image'=>'画像右上分類名','Excerpt'=>'抜粋','Author'=>'投稿者','Date'=>'日付','New mark'=>'新着表示','Taxonomies (all)'=>'分類(全項目)','New mark option'=>'新着表示オプション','Number of days to display the new post mark'=>'新着表示日数','Link target'=>'リンクターゲット','Currently selected'=>'','Accessibility link description'=>'リンクの説明','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Display the icon before the text'=>'テキストの前にアイコンを表示する','Display the icon after the text.'=>'テキストの後にアイコンを表示する','Show Scroll Message'=>'スクロールメッセージを表示','Scroll Message Text'=>'スクロールメッセージテキスト','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。','Hidden Settings'=>'非表示設定','Hidden at screen size'=>'非表示にする画面サイズ','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。','Hidden ( Screen size : all )'=>'非表示 ( 画面サイズ : all )','Hidden ( Screen size : xs )'=>'非表示 ( 画面サイズ : xs )','Hidden ( Screen size : sm )'=>'非表示 ( 画面サイズ : sm )','Hidden ( Screen size : md )'=>'非表示 ( 画面サイズ : md )','Hidden ( Screen size : lg )'=>'非表示 ( 画面サイズ : lg )','Hidden ( Screen size : xl )'=>'非表示 ( 画面サイズ : xl )','Hidden ( Screen size : xxl )'=>'非表示 ( 画面サイズ : xxl )','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。','Highlighter'=>'蛍光マーカー','Inline Font Size'=>'インライン文字サイズ','Inline font size'=>'インライン文字サイズ','Apply'=>'適用','Big'=>'大','Extra big'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Group link'=>'グループリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Table Cell Vertical'=>'テーブルのセルの縦方向','Cell Vertical'=>'セルを縦方向にする','Cell Vertical Breakpoint'=>'セルを縦方向にするブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex)'=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','VK Blocks Pro'=>'VK Blocks Pro','https://github.com/vektor-inc/vk-blocks'=>'https://github.com/vektor-inc/vk-blocks','This is a plugin that extends Block Editor.'=>'ブロックエディタを拡張するプラグインです。','Vektor,Inc.'=>'Vektor,Inc.','https://vektor-inc.co.jp'=>'https://vektor-inc.co.jp','We\'ve released VK Blocks Pro!'=>'VK Blocks Pro を公開しました!','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/','See more'=>'続きを見る','Dismiss this notice'=>'通知を無視','Install Required Plugins'=>'必須プラグインのインストール','Install Plugins'=>'プラグインのインストール','Installing Plugin: %s'=>'プラグイン %s をインストール中','Something went wrong with the plugin API.'=>'プラグイン API で問題が発生しました。','This plugin requires the following plugin: %1$s.'=>'このプラグインは下記プラグインを必要としています:%1$s。','This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','The following posts contain Page Content Blocks referencing non-public pages'=>'以下のページは非公開のページを参照している固定ページ本文ブロックを使用しています','The Page Content block from VK Blocks version 1.95.0 onwards, non-public or password protected page\'s content can no longer be displayed.'=>'固定ページ本文ブロックは VK Blocks 1.95.0 以降は非公開あるいはパスワード保護のコンテンツは表示されなくなりました。','If you want to display non-public content in multiple locations, please create it as a Synced pattern(Reusable block) and place it in the desired locations instead of using Page Content block.'=>'もし非公開のコンテンツを複数の場所に表示したい場合は同期パターン(再利用ブロック)を作成して固定ページ本文ブロックのかわりに配置してください。','Post not found, not public, or password protected'=>'投稿が存在しないか非公開かパスワード保護されています','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %s'=>'全ての%s','VK Taxonomy Block'=>'VK タクソノミーブロック','Background fill lightgray'=>'背景塗り 灰色','Double border top and bottom black'=>'二重線 上下線 黒','Double border bottom black'=>'二重線 下線 黒','Solid border top and bottom black'=>'直線 上下 黒','Solid border bottom black'=>'直線 下線 黒','Dotted border bottom black'=>'点線 下線 黒','Both ends'=>'左右線','Brackets black'=>'括弧 黒','Arrow'=>'矢印','Check'=>'チェック','Check Square'=>'チェック(四角)','Check Circle'=>'チェック-丸','Handpoint'=>'指','Pencil'=>'鉛筆','Smile'=>'笑顔','Frown'=>'不満顔','Numbered Circle'=>'数字-丸','Numbered Square'=>'数字-四角','Border Top Bottom'=>'直線 上下','Border / Stripes'=>'枠線 / ストライプ','Rounded02'=>'角丸2','Photo frame'=>'フォトフレーム','Photo frame Tilt Right'=>'フォトフレーム傾き右','Photo frame Tilt Left'=>'フォトフレーム傾き左','Shadow'=>'シャドウ','Wave01'=>'流体シェイプ1','Wave02'=>'流体シェイプ2','Wave03'=>'流体シェイプ3','Wave04'=>'流体シェイプ4','Solid Roundcorner'=>'直線 角丸','Stitch'=>'スティッチ','Setting saved.'=>'設定を保存しました。','Post'=>'投稿','There are no %s.'=>'該当の%sはありません。','VK Blocks '=>'VK Blocks','Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.'=>'VK-Blocksと競合するため、VK All in One Expansion Unitの Block機能を停止しました。','License Key has no registered.'=>'ライセンスキーが登録されていません。','The VK Blocks Pro license is invalid.'=>'VK Blocks Pro のライセンスが無効です。','Please enter a valid license key for any of the following products on the settings screen.'=>'設定画面で以下のいずれかの製品の有効なライセンスキーを入力してください。','Enter the license key'=>'ライセンスキーを入力','If this display does not disappear even after entering a valid license key, re-acquire the update.'=>'有効なライセンスキーを入力してもこの表示が消えない場合は更新の再取得をしてください。','Re-acquisition of updates'=>'更新の再取得','block titleAlert'=>'アラート','block descriptionA colored box with four statuses, including annotations and alerts.'=>'注釈や注意など4つのステータスがある色付きのボックスです。','block titlePage list from ancestor'=>'先祖階層からのページリスト','block descriptionDisplay Page list from ancestor page'=>'先祖階層からのページリストを表示します','block titleBallon'=>'吹き出し','block descriptionThese speech balloons are perfect for recreating conversations.'=>'会話の再現などに最適な吹き出しです。','block titleBorder Box'=>'枠線ボックス','block descriptionThis is a border box where you can place headings to attract attention.'=>'見出しを配置でき注目されやすい枠線ボックスです。','block titleButton'=>'ボタン','block descriptionA button link that can display icons before and after.'=>'前後にアイコンを表示できるボタンリンクです。','block titleClassic FAQ'=>'旧 FAQ','block descriptionDisplays a combination of questions and answers.'=>'質問と回答を組み合わせて表示します。','block titleFAQ Answer'=>'FAQ 回答','block descriptionAnswer area where you can add blocks freely.'=>'自由にブロックを追加できる回答エリアです。','block titleFAQ Question'=>'FAQ 質問','block descriptionQuestion area where you can freely add blocks.'=>'自由にブロックを追加できる質問エリアです。','block titleNew FAQ'=>'新 FAQ','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。','block titleFlow'=>'フロー','block descriptionDisplays a sequential description in time series.'=>'時系列で順を追った説明を表示します。','block titleHeading(not recommended)'=>'見出し (非推奨)','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。','block titleIcon Outer'=>'横並びアイコン','block descriptionDisplay the Font Awesome icons horizontally.'=>'Font Awesome のアイコンフォントを横並びに表示します','block titleIcon'=>'アイコン','block descriptionDisplay icons with Font Awesome.'=>'Font Awesome のアイコンフォントを表示します','block titlePage Content'=>'固定ページ本文','block descriptionDisplays the body content of the specified parent page.'=>'指定した基準ページの本文内容を表示します。','block titlePR Blocks (not recommended)'=>'PR Blocks (非推奨)','block descriptionThis is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.'=>'画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。','block titlePR Content'=>'PR Content','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。','block titleSlider Item'=>'スライダーアイテム','block descriptionThis is one item in the slider.'=>'スライダー内の1つのアイテムです。','block titleSlider'=>'スライダー','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。','block titleResponsive Spacer'=>'レスポンシブスペーサー','block descriptionUse responsive spacers to get the margins right.'=>'レスポンシブに対応したスペーサーで余白を適切に取ります。','block titleStaff'=>'スタッフ','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。','block titleVisual Embed'=>'ビジュアル埋め込み','block descriptionEasily embed iframe content with a live preview in the editor, perfect for maps, videos, and other iframe-based media.'=>'エディターでライブプレビュー付きのiframeコンテンツを簡単に埋め込むことができます。地図、動画、その他iframeベースのメディアに最適です。','block titleAccordion Target'=>'アコーディオン コンテンツ','block descriptionThis is the content area where you can add blocks freely.'=>'コンテンツが長い時にコンテンツを折りたたんで隠して表示します。','block titleAccordion Trigger'=>'アコーディオン タイトル','block descriptionThis is the title area where you can freely add blocks.'=>'自由にブロックを追加できるタイトルエリアです。','block titleAccordion'=>'アコーディオン','block descriptionCollapses and hides content when the content is long.'=>'自由にブロックを追加できるコンテンツエリアです。','block titleAnimation'=>'アニメーション','block descriptionAdd animation to elements when scrolling the page.'=>'ページをスクロールした時に要素に動きを加えます。','block titleArchive list'=>'アーカイブリスト','block descriptionDisplays a list of archives'=>'アーカイブリストを表示します','block titleBlog Card Excerpt'=>'ブログカード抜粋','block descriptionShows an excerpt retrieved from a URL.'=>'URLから取得した抜粋を表示します。','block titleBlog Card Featured Image'=>'ブログカードアイキャッチ画像','block descriptionDisplays the featured image obtained from the URL.'=>'URLから取得したアイキャッチ画像を表示します。','block titleBlog Card Site Logo'=>'ブログカードサイトロゴ','block descriptionDisplays the site logo image obtained from the URL.'=>'URLから取得したサイトのロゴ画像を表示します。','block titleBlog Card Site Title'=>'ブログカードサイトタイトル','block descriptionDisplays the site title obtained from the URL.'=>'URLから取得したサイトのタイトルを表示します。','block titleBlog Card Title'=>'ブログカードタイトル','block descriptionDisplays the title obtained from the URL.'=>'URLから取得したタイトルを表示します。','block titleBlog Card'=>'ブログカード','block descriptionAdd a block that fetches and displays content from a URL.'=>'URLからコンテンツを取得して表示するブロックを追加します。','block titleBreadcrumb'=>'パンくずリスト','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。','block titleButton Outer'=>'横並びボタン','block descriptionDisplay the VK Button block horizontally.'=>'VK ボタンブロックを横並びに表示します','block titleCard Item'=>'カードアイテム','block descriptionA single item in a card block.'=>'アイコンカード内の1つのアイテムです。','block titleCard'=>'カード','block descriptionA card where you can place images, headings, text, and links.'=>'画像,見出し,テキスト,リンクが配置できるカードです。','block titleChild page list'=>'子ページリスト','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'親となる固定ページを指定するとその子ページの一覧を表示します。','block titleDynamic Text'=>'ダイナミックテキスト','block descriptionDisplay dynamic text'=>'動的テキストを表示します','block titleFixed display'=>'固定表示','block descriptionRemains fixed on the screen at all times.'=>'常に画面上に固定されたままになります。','block titleGrid Column Item'=>'グリッドカラムアイテム','block descriptionOne item in a grid column block.'=>'グリッドカラムブロック内の1つのアイテムです。','block titleGrid Column'=>'グリッドカラム','block descriptionSet the number of columns to be displayed for each screen size.'=>'画面サイズ毎にカラム数を設定して表示させます。','block titleGrid Column Card Item Body'=>'グリッドカラムカードアイテムボディ','block descriptionBody of Grid Column Card Block Item'=>'グリッドカラムカードのボディ','block titleGrid Column Card Item Footer'=>'グリッドカラムカードアイテムフッター','block descriptionFooter button area of Grid Column Card Block Item'=>'グリッドカラムカードアイテムブロックのフッターボタンエリア','block titleGrid Column Card Item header'=>'グリッドカラムカードアイテムヘッダー','block descriptionHeader image area of Grid Column Card Block Item'=>'グリッドカードカラムアイテムブロックのヘッダー画像エリア','block titleGrid Column Card Item'=>'グリッドカラムカードアイテム','block descriptionIt is a block of single column of Grid Column Card.'=>'グリッドカラムカードブロックのカラムブロック','block titleGrid Column Card'=>'グリッドカラムカード','block descriptionThis block can flexible column layout'=>'柔軟なカラムレイアウトが作成できます','block titleIcon Card Item'=>'アイコンカードアイテム','block descriptionThis is one item in an icon card.'=>'アイコンカード内の1つのアイテムです。','block titleIcon Card'=>'アイコンカード','block descriptionDisplay card with icons, headings, text, and links.'=>'アイコン,見出し,テキスト,リンクを設定してカードを表示します。','block titleOuter'=>'Outer','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'背景の画像や色,枠線の設定しレイアウトや区切りを表示します。','block titleCategory Badge'=>'カテゴリーバッジ','block descriptionDisplays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design.'=>'投稿に関連付けられた単一のカテゴリーまたはカスタムタクソノミーを表示します。タクソノミーとデザインの指定が可能です。','block titlePost List Slider'=>'投稿リストスライダー','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titlePost list'=>'投稿リスト','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。'],'language'=>'ja','x-generator'=>'Poedit 3.5']; \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index c1a2bee41169666ef80c9011182aad72db0abe23..af5e3b25154d20418772eaec641a40a5df24f281 100644 GIT binary patch delta 23133 zcmZwP2Y3}l+yC)B5C{+;p@t42kkEUTCLl$sL;-0b(mNteX-A6mCRIg{UZfKc5a}S& zr59-m(xr(sDgW>9%#DBE_j>ob#?RdM%+Ait?w*`PpXc(WMAObC@?S_DG}YrM66ASV z@Y@K_o0^DvRb@Tz<0hV$1bZM|ynYt@F&*(pOpUYf6I_iAFjrI0D}jCRU0jMf{~yeb z&s^;HGBxwOge0Ut;OCeEleBQANA8T53)P+vlVT|>g>R#7MPJk{8;zRCWXyzfQ4`;c+3*PZ zb;3O=VVE%1%{VQF5*I^lT@{Nzz{JFDP!s8l+OZy}e#21<`3ei;0#v^fsD=Dy?KjLv zvFyJFOxV)ht7NE|hoUBw0mCsbYUY(ux1gcrJEImb6xDwkX2eApiQ7^4`cKOziF55a zQR9@4^Sh@$hJ*&{ZVf|FJMfjc7`4S4a5>(^kvQ`sdj?wZ1`!uCTVny@DX5iiN8O6U z7GFR;W4HZOv_fr|D50^I$eCi5lPo)I-?H+Ph&%;{K?Iay9D0n^3oO zhq>Q8?(}=-spy2O<~`Kw@ytxr);$AZsEOt=OJf$|>Zl!Rjk;hT)Px73c5*c8yxFK7 zSZVP#OwRM?9j2lcokOkYruoS73EH^#7*}8r*Y|#)qSt2=Y9$9z17AYT_zr68U!is;TYI;qc~KWGhU#A#Ghls8j2%$# zeRs=`M(xZz)IwIFUo+ip4g1a0Scv?es0*g;;CU4>J8Ixq)F)$G)QSgSV;qSZ?~-{H zHL=^Mi9W*^OxlqTF>KzE{a0l$39WD;>Mhu9@t+t$9Ms9}L=VzY76V2cBCz8 zi@T!wjX*sU(@?iyIcfqsP~)G*^MKcfS=4O@^73W31OL*l_pZ!x& z7hZz;BwURe@SwGyMeWQT)IIlgcN0#9x@GyWGS)?%Hvz-+{(nm)2Z`n8A?t7#wc_Vk z0MmW!2Cjldh+|NS5}M zdbkE!JRCLiiI@^+VhAp?cmwJg*@N1#qo^IZiedN^HGyQGxQDVJ`n7`kRBB)+tc7c^ z0=~c)EZ5WB%kij*&Bst&ftuhJ)UDZrn&4s7PMkyazij@6sfZt=CZ4nx`>&@kT`xC4 zCRCggwUTJmfW=TNu7qi@9%@CcP&?NXHK8%6hi(R{|7z6RvkmpkT(tIoF*R|j-rRrP z<6OPng)5-m*D9!|xed0#{-^;jp;mksHNhvyQ|u+|<6hrXW;muJpB1$e#Zmp=LM^Zw zYGJkfRP-7(Mr~CORLB0-VK{1~lTjC%j~Z|dYULYI&&(0j3h$W7`novEtYXHZ`u9Wa zn14DI&2$lJW}8tH+JQOn9BK<+pzc|gPu)GtgBs{9)On3jD{79KU`O*~voC5PgHX@F z1Z1IpZw?jR(`Bd~*oGQtpT(!l-_2WCj`n}>0v7#@&jt+Z=XvXJAxnZwAi5>Uax>V=>P85I35sKj*g_;?5Y0 z;e+|6i+!*j#tdOmI0t#~y;eiHop=(bGKSY_m>byp!Z`v*l26IizQ*aOdtY>f+nGwJ zt*nFknb89EG`F_)KB!wY)Zz)K9sU-zBdf3qzC^zsw#r;BGuFYX*Z~vcGSn@JM_phu z>Mi&cGvGzk#Gas@fyATSg+ovi3^((j`jy3StbrP*b2Z#`BNA|dsA_u+KHT~_F|}=sAa}sbz*-XD!Sli)POrsTYm`k z&|E_8$V1f6gh!|yC^636({iYtc^C8IhgblIpjNmN^(-7hE$|}hS^5(h$L~F%q6@#m z6c{qzZCOUtEy;!YAyoiB!WyW4OE5XENA1im)PygfcI*LaAad{i7QYO+Kk$<-Kd?|XZa&olK2d+#n6dvoLyLs_;>7qS-*7W zO~6RK|I?_1;*Xdg_o24(k(pzX+rnC?e$C9zsEPE)^!Pb;!0D)mPMgx zqaNaZsD2yt`Kx=ol|*(tggW64ro(5btqq&zb|xA%p@LWp%b_OH4O`(t)B=)DcjxCc z%V1OT^-#BD36{nKekx0;1byWat1u1mbxe=XF&C!c2Z2s3gIY;5td8AK&&oQihZj+= zU7>G0FAnRXZsiKpJztMn@K0D2{rjotb$Nl&7(BzBP#Cr4Wl&pH4Yj3pP!o%__TH#_ zKExbtPO|oIP&>8=b>Vf^z6+U{-#b7>7dU|#@f>P}k5JD>(r?|$)1vy7MqRKX>S3*p zxfXJF8mI|s1#zfb z)5YS?P;bE(mY<5cRdZ42uf;658TAaEMP26w`s-6k^PSt$)~I{b88tvZ)Bs~K15QOv zWCiLLtV7*`&E`(bM!XjT4>4-I=Vr)k*PaQrLuF^P|JvGGBs5Tc%!&UZHOuzi8qt)B^URE_58*;}y(|b>_Rbt%IM6wsfL79d+U? z)I+(%^6{u!@FVK!J%(EG@2D-lhMM3b)B+MLaO0*$-Kxx}XC@L8Vi9Zim#|7X)CH@c z2B?F&hq0ImKfy>Ghq}kBQMcq*)U7y!TIo&HM4zF~PqWaqN2B607>;$2>-fDkR1%Zu zgId8r%!Q*+GhTtZz$VlM51^jj6R2Bs3w2KuEppF7Ce#jPN9|-mRKGH)1;(Hz+8ht- z{qI6$6p8YS`6~$ij341`?1lA~Fk9S-cQNdH_ulJsTlu0m5C>sje2(v7uVtS17w*Pt z7{A=zvZts8yuvW9@1t;hPwO|DtY1@LJbDHR_qlv6lVU(^!s#POM~BGi#d-Ffr|o%~%X3ZfkZ$ zU8pze9uKy7jK$L}o?|XY?dZm}?7vpBgM=os2lWxTACT|?pLxCeO7#Ki7K}%&WD4p6b1c6Q^AImXJwzu^6McXQ z(6_-EgxbkqGX%9`p;#W%V^Mq`E9w3Jf{LEv-KYIBm#NbWtHEn@qh{t1X+=K66nxC|j-2V@$lq4}7Yv4gFh3PiCe~VQI zs}T>tDBOX?@CNEuWZB|g%Vt=GcslCsIg3>>$yR=%VjcVvH((2_wT)lVxxTlU%DY%# zyPH`b>_fZ>b>U(=+zxz-<%l=pNc;y&;GmuELh)FI_%RN|w|2SnH{jdEFHz@L+U=f! z{^)N>;slijSn_ALRU=UGHY|;)_qb2ATILLlC4U=VV(nktfVK8|UL5g!?1_o?@h0GB zsC&K~bqg+{7My=S``?yI@BMD(zhN8VYzO!{g+nnNUdAl=6tiObgYNYyfoiXg8L&C( zZR&0Lk*NN&FcY`pw1tGI)5gn#ZBg~$d35EKdEQ}uTU4xaLf%{5;en`m3ldItWmIPn>`fDkj(Ok;+dna%8GFK zVL|)_1Fs=!V(HGie$`R=R;Y(}u*FNP{TGX`pmrwV1*bn56`hz0b>SkYna5yx?2I~L zF>1yut$jBpCB9%@NA-Jvn($N0C%)+3|1i`J6+(?u1#{^A|B#AK_{m2}6nRpgwS3T0Zno*DovT{Akny-p0V+{~A-#3ff~m z?1dV5CkEj`OoT_x)8+;93Tj0+&HETk{KWLGx@Rj1s$V|TCuGs9?7z0UJPF;qPN)kH zN4z>>Y39#U<6cBf(0`SR z21>#^F%ENKQe1<2_2cWi?B5DYSc__p!V!JYQ%*1Ts{wKOy@{6B&eAaJ;oIMUArs)$cfJqQ7Aqe2hA; z`QNU+3+i6=^i$DR%|Q*Y!s1=#5zAjd-Ta3bgIONB^SYx39)Lw~thw3pcTf{~iF*7q z{o@wc6xH9~m5Nq63yb46)CwMAD*P99Pg6W{Ke)p&oVWm{!*@{qo1!lC5$c&3h?>}3 z47@%T|Ae}w2b_G}wT73Nnue5*-M|s3XQ4D|s~VvmreRnLSE43-6?NfEPx#cqQrHyz zSR2pcM;P_gjW-g*h!+Lq{%@e7hh{HoC5Oxts0p3J40zY_NuIf#3B`=$BT%=n9IAg! z)Huyh=e0uZWPj9-jYI9sJPiD}i>IP{dsqp4j2bA-zi!|tRKB=bA2m>CiwC1_;Y`#- zwxT{^4xoO{{)6o>!*e$wKdRqX7IhF}5I zPLx4?M8=>l&o+I8;{L0{0uq|>No%-_DTyDMiTDLYaav4+k(e1v zqXv8*wUBnG75Xhd)$)rizuoeuusQv1s^bMdgz~> z)K%`{3=$QS`MlA17Wo0=wGHtF{_^mCa-VmCI35?{s1!c$2P~G-=WWCrI2GrGI?IOn zyswB4<5297$``m*w^2L&9N8(qmo&96@GxXYZDkayLs^TfTigV7PupR6{1ThuAxwsO z)3|X;pjK86^=ynr-I8xmpChX*zJL*2-+O3@^l5#8r@8>@sV<7yu!7kf^^o<)aySz; z(KDzETt!{*Ip)IT>D)6?6qT=w>em9bke-UUzBh}CR=yVX9cvG2fP<)x4=_JwP45f* zvF2TDLEI6`;vUomeBsVi=p&9my^fKnhc(*TtD5g);LqKysc2>cP*3qBtb|KZ1KdKr zuXjm~~21=9B z?Lc1C%c(wSU)Mbw2GTigbT_d3r9;0R$ zl-U>fT&Re82D+mrHXhY)KI)dOws@C$1hw)Ds0&;-@1mZaM_2S}0 z|B^}&iR2N!z|ZAWID$AQYQXQYGOowQ_|)30b51-IHKJO-eh}E!aUUz{} zsE2MY>ht6n>Z@Cte6GD#KHmR060J$-yWB3+1)iW*(l)>QsW=g}(hmzbTcYk^JJe_W zXQ(az1$EwO)JhW;bhkDP)t(8p)A>;S>J;St*B19Bq1R$E>RFh9y1)X|7H%+4S^Fc@ zfLfaVM!7iu?`u$Y2;tA&0<~&r#<*1I^P&@T2YU^%W zKD>x~*rHM6R6zBsf!gZUsPn%-O<*eO;r!O+{oWcXy3h{Pi6>lxcONx#Us1QUnNSyw zMm@+>xmK4AgjYQMYPSK;FM!tiuWO9O@QaMt!hkE$&uO z4Yj2W&0eULOh&DI32NYY)P=U8R({63f$IMhHL=hVyk&a-b5hX^YoP9VJ&R+^CYXtQ z9EM|mizi#W0<)6;8Pnnwh7?_#fD7vk`W?)QOVsGk`LEBU-R z7>k9_@4f8{{MX-wu?C67<~?jkT&6M)4;L7ZeTipRakn5tRX35Gn1g&t)C3!$-kxEo zUqZKF1-yn@SnhY+FEYijyRJWsihiy?M9r{HHTR8X5w0XoS>3I43+m}Vj{2m$jrtr& zTEp$&yJjogPrg4^!5TGv-Xa{0df1D->pnNWz`)P{ja0Oy+fWb7G1N@&q8`HMsC%2P zmWy+vCQuQzh0Rc3U`C@pswbFJ%^Bt#)U&e4T!F!Q|JSL4o2_BDdB8k|n$TIyh}TSC zZ8uLdH zbt>PYzMEY(Gc|StHbCVEU>wHd3QYToiD>Wozl|F2ebigf(egbl9&YUuG4T8ULQ8B#y`Lvg1D?lZ_}mQc;3k$D zHE?#+h4P~MS3*rN7WLI^6zX1YHXouUp1-3zuWm>C`QO?SAEP=9w|Ft?17r(oVuw)g z?@4PvhnnC6i(jC2Buytbp>nA6o1(_;gqrYJi|2OoyAHcZ=)F9S+WLFu3)C%0*4e$L zSy6E=voz|K)k2-$+VXzXIFnF2^_{uI^6{w8mu>2pfXXh^=fEC|51B{Ia{x$nA;8TzeI{1(a97nC~75Tg@ zCx@2Akp)j-O4@e?GVUMk>Gvh&8Rzr4=EajvZe!k4{f%n{&d~e6DNy6zQqWPaQFcxY zrq1Vt$EWLmM;+>`iQcBI7xki8fdP9^PmRqf{U|Lc=g7UJygm{$;Y=3jTU2i1JM;^D z|KCN&F9{km;C|H6lKNii`XLcbyFTIi;2~T>+kN~1yWsDX1k~qK4p8*-MBk9&>7S1H zPsYi`1>d5+j9g{fdQs=oQ|o6%ls{DA_>m589)k!fzL~K4BL?`1IuE?Jh5GB`YpaBF z(c7<+X2Un)N7T#e`gJ&Y0G&T!po6%Qco>a*AN7j;ugMHlOnYj}@5Pj)_-P$DPB^?& zjFXNP>*z=SnzZjE_c^60&;Nm(`zfU?B|GIFMMoaWPWtKim)zcjtbc+g<}iyCjxIXzD?0_owx_}im0O*G?m*iN|ra4Wxc~sOu+PLCYoKqV0*h5PwREwERyDRFw03 z+J$uPHOgUYzhwF8#6MDRL%B=;ne_Px1MlCLRCGKy3($EU9r>~E-L-*UQ2(C#c1jNG z_b=znw0a&Uc%5?|(5@du+3h@y`xp6qlo|>+o>8j0_Q3T6$=Cl_V<&!3BAh{!abiJ= zjy=})(uLj`{EW7fOriqym(<(P=Lefq31a=UdwtxYtrF!S`OcU`_dktwR;OGfx8Phl zOr-vVdK&8bQ5nT#rqH)9@nK3%%Ikx#5rIFotm2%5mK;j15b+n3N!0sMrgF|G%0hA@ z={MX@(2a)Vl++}P5m%+20q5Zn%1Y`>C~qD&={tkAA4z^ry~Z2uRfwO^rfcwe4OTPt{ONGbC>1aiH zOj*c9Gf{HW_A%<1PkmW}|33d*l3&;U$MKZT@7rK=XuE1BXQWp(^82hUnEWtn(*P0V zw_3b}^Tye@*YGH9>FvD0^Z%TV#VoN1A2L8`oJ%=K8Nf+R$sMA8f%-c7pCta2@(!gx zxeT=ZU&lWr<7iutb?K*L2_-9~6|w&BR=k32yN-`3%L6q&`8a8*4SE9WXf@VvDD?!K z97^1YwltUm*V+YQXkTUHhz*q0wD+OhqMnU@e^IUw2j0IFHt+=!Zyq1M?m%)kC){A* zcPImiH_`Tjx{d~KoOjA{HEc3JV=~4cPM>r1ZH0-gjnE(X-A{w?)!hrHv}J${c$<#= zvg!?`Eu8uf>cnw^9KS;bepM?@-;9)@wEvF1Xpf*IqkRxX$IrBtqirz0KAQYjXZ@ei zaTtm1xRR2P&c9L$Q@*Ecr(C0)q0is=<9{dfhe@mJD|T(#CSzL4dGdwrYPZM_vVPaG zJ#i+klb&6 zgZv}vQ!Sq32Jw#3rvzmjMMp`8_n7gXP$G%PQ&Ldh!8y?wL$pX}5Ch&L#~(dBA4SIqN+U{H;so^V zZvEA^kJ8opDgKmtM?6fKmB6n5H^DcQ6_Q4AO#p zV@fXKt+e;XcgT;!k;G#t{fR?}b(F;FKSQjSv3Ny8Yszysp?c5*E{G0x(&^yzB3gyi0{dMVDiOqoLb zKIP`?KJ@QEzB{D@xfzsbKgs@78rh&jsIMaz!7gMW_Z#&uIH3)t6>U9{Nu5WJA+uqGD>=K`7s@R{jCYwQF(oowi9xhP4HihX2;L;ZALwZ z<$Bq<5%deDjI;a{`n?Kr`{Nc(A&)QW#H&dV_C{82HaDi2PFwvoYSKZ4~7<>${YE3aj5s$n~odl%&G|oM|WBCf1Rf z5=$-(_M>FuwtUS5bkwpwC+wWl7B8@N^+{>)ZcK>K@ zxl(kxNT27Jn=*&y^u*I?Uv3wEn|dYd|Aaoht^T#frWCZevgsoiOTXQWM$o9lL06>hIBSXCO;I@(qc9A-+jjL%hw} zo>K3^I4f`feO@1fZR~aA|04gle*XVLIYYx}$|~xkX;@1=FZI{QEOLDaKC}VazA@r(vrNwlD%<22O1xG{}(!xAo-!o2mU#N zTsJxdkq@P0C;Nj9qz-*4HHiz`V0V<{IKnxL$Krd<-pkB_^ZDt^c(7ku$;du7WwdDOUU@wvuViHL8% qa#o)B)Tgf{i4Xn#)A0D|PsSvO&-3r39Mkt?_C>8E_y!*PA&$?INYnOA5c%FHe6UARk# z;%2A?MPdewvifnTGoFplSzfW zQ5{FA0waG8gL=%S}jH0Tq{uv+JG7HJJib0qb|WcEBAGACy*J{z6fT%u+|VohyPGxHM|u8fG&LBJONP zpmsV6wNw59WYjSRbtz_|2Kd5UYxTQP*Y+@~-9^-bZd-kDq&xHUsQNH0i$zg4XLr=Z z{ZN;7h|}+lv4T&`nWzp6%;l)3VV$`HbuWC6TIfadF6z=fL+wy#4>w@})PjnmcCs?6 zUkgmF=fA5J3_>-GLG8#4)Z_Psx!TINq1t_qdQY50-5WQo{$JDt33|HzX)qCScGQXG z#==+>gPGrJOC~XP!658~+UkC&Gx4JqG#hozmZG+PGiqmkMs4XO)WkPX?f=0{=jG5OwpNMooC$;;R zGxm2|oDP5SW+oRru-BD-eN7YY5?aWe4gUWhcFfXizP5f&1)R~U7@^Ka~vUoY>((}KUjIQN1)Frrwx)&az?&>6i z+|861b#oQBxIAiMH8CYNMeSH8i+iIk%}CVvF&NkxOiR2J{i(@pC8I4lfVw+xqi(jO zgV|=xgAK7SR>2+E0w1HUY5gH?;hj)-eRtH(^g}Ip3~C{tpcXs>wKI!`u>b0?oC3KH z)8Ka0nH)y#$S*HP zPl0ZtIBT#Q(-QxTy5{kyg}g%TkZ+i~yK`d%aYfXCOHgOL0kyy#sGItG)Z_fKc@9H~ zFZ;=8D;}XbJV#9wG~At8Qq-F(18Rp#pxRZm`Z}mf*a9_Cchq$d2kz0kvhVQ7i3%TG(jRf?_ZX7om1=59*R#LS4e!sBxa7`ehjDPADsC zfd!m?uecSIL!C(#)BsITXW9jIP5YpBz>m7-lP#WSE;ZL+CF-}~ReXqZ@#H9eTVUiz z-1(SwwC6R}^S_6T?($?~^g>`OkwtrRurh{>^}O2H5cxXi&BUJg2%BO%#;A*H@DuzS zKg1E^oTqRtaiJId%Z6ZfJnfj8OR z8_BU2VSWt8KA02-p(YrOdJ1M@CX7Sflsi!Oz>lbjkD?ZMZZi9?%x!D<3^Ni3PjLg~ zKy@gJ8mNMm*F)VStuYz)LbV%=IzvBdA=5AkE<)|Zm#CY14QheAr?CH_WX@2a0q)I_c@s& z6dXXE@!zO>BK1r+VL0mM%8weTB5DCOPy;r`WY`{ciF%+uy!vBToQ!IB4^!ZC)J_G@ z(t^4EVPv$0Wl(2S6}7d^Fcr2%4G@JTaJa>*QD?jzv*A%xzuTA+AEFlY2DO8UKXoUN z0#%+4%j)^hN@g22M-3D_+r7bZ<3Qrhs53u>y4ik3E$kH*#uU6P*h;Uw*$q<@PeZj^ zY_3NwWG`mG@6q3j%mp&q!kTm3_khNz=X?NafNiLb2P{5He zfO=m%MST|d;yf=OCNvA7cCI;UM_QZRu>|n|EQZUlsGk3y$>?r=jaqT4C2q?ypssCE z)S1;lo$33i1$0K;bWv9BM_r29sBspdPGC7|Asa0I2K87U!ocVMc`~|IH&6pS!EE>j zwUybHx{0b`Q{q;romh#wMC(!g_n`X!gqiR>Y9S9%?VqA9!5cHtGWI_Q1<9A$U5pyA zs@WJ--vPBlAECB(8fu_VF+0vj?a*Iq6Empr>< zuA$B#`ARoY2JA_k53}M7%#UkOTYB2Ofa-S*bx+*0^2ex4@CtSFhJNKvFgI$43!)b2 zFHc5iP#c4>HR@V*MBOxzm=FhHFb*@vpeCGv>OTW@vo6IfxD9jTNz^6$2X#r(u5ygBqwEXoEWAC@h0B zun_)$5qKYyV9QPJdqfA+cnh!wUd37%wwe8JNhX3!Kir9_G2a%qzs@i}1)8`h>Y7%?WY`cx zuodd2>W;b@$D;bhnv={K<{Z>L^0~PT6BDmCH=*X)`8E5mYka^8enQ0;ExutsL~ZFS z)R`pO?iP{^a}lRRm6t^IFNa!qb<{$dpeAgET1Zz+fl+=ky6cCTQ_MKj4s1aUv=_By z$1p8kK@Ip2^*p~qO`Lp(GZZyZPOOUgQ48#WT2LR;Kgcp8&2gw#>O|~>E3qvG?c^gC zJ7EQ!kGce>P-k);HNg!lzl#NkAE54`OuO7d%VGlJ+D^Y$kBqKqL$e8Lg)Oi$w#AY- z53Au})Loopw|lWP#G1rWSQpn}b^HglGiAQvzQJ0k9a@F;aWgj6^Z$ZOD+(I!anI>e zEKht28)34&?)QId)K)ISvUm~eVd`()e+&8$ixbbpI`|#t!$jY??|wzFDsgA5gmGBY zPv#;SJwDm@x#zMG_932$pW;jGh|~9b-gvx+4KVt9x3FC}jQBNb;-Npd9ry+{(JP#U zWaX;1~euDm*WGepX-biCm1H8oQSmU4@AQsyae~XZrvD54$g= zt*{y8)6J{ciMaR?7Kt-Z<4r%x{&yjB`>6YykNU^>4M4mHb+McH(9n*?s2PS_C>Xui#m}lm>SQc7IX)-ApdJJnmF@mS5X4>LaK{t zupQ>dzNmI{Pzzp*x$yvMqC2R86PHkF_x{Fis-wgTwG&?4bC9dpr-L7FhJ6yBA8K;?@_r{yLNP z6v)nIceAJ2$BZ@yo5RhIOusoEHNiyG0;i#NG7k0BtVG>2hc2@JdLA!Qpu6>nH4MGv z8fHVCaaGKNAE4Te#7wvVE8u3-fcH>4^BPNFy34Mb!}jBcV|Q7iou zHSlZHKpC$%i=aBzKrN^VCdUZufCEqyoWQL30M$PERrlGF3AOOLsD(wM+WF^M#TL|a ze#+wK)*#bwu45V07Pd6oS$S8~#N$v4UyhaW8&vyes0F{V`p|3cW4M^p@0BN`hBZ+u zZh%R#HD<>ys2v)M8fZ3#;c8U-Bj!0&eZ2V`!-!K|cMB_l8m9rOT}RBJ&;P-J3>REPVR2Q%DspVyTz7x4hpwfhXUV+T+RK8AYJ-8LUveZpJrsY-@wpAvOqp{Vx7 z(66noYz1{O74ZkC7f^(i4@I>bj~ZY)>I}X@wcm?6ffLvSFQVEPyzL&t(wK<2yjj(( zeVhGPMMDaLv6|?}#ou8L;?w5es2xdt*9}+@)xQGj#NJ2kObaZG zolz4{MYUVxCzF)S2GmM-q9*tWb;f_8CP?*%`>|O7H9!-y6RN&HY6m7_X!1qxD^~dQr1(RZ? zzue823l--xOJFQmS?qXglLhrk8G?h?sH!OgYP%Gbz+NlGmi7%pd>T$I3(gcHfFKqE4VGY6rVv9zFk2RxtxL(K6J)Yf&rSiMpoom4QN2~%5K3QH4Lu(%&; zpdpwHr(jx~i|V)9;-jeXub>uk1GC}3|FHk+kmg@EP##pnil~*=zzFP!>iE6YpT?rZ z7f@%K__6Ds9u*fd-?Q@Cs7uxkTVSl!pMA{!YvA80D1nd6+)rHj2dITapq_?ts0Hss zwLgP8)1aqrXY!#=pdF^cuBb~o7}Mhz%!sow6xaC4sKY+gM2Ao}T|8=GNuId@GNIyJ zsB2ovY-HsTsD%x&cp_?o`KWthJ!;2}qwc8}SPuPppSzWJKrLVv*2i_&4j*G9Z1%$a zE!P*Q0biruaM@qF_eO5B4C)@LgF3N>W^>d6Kg3Mf$CdlN31qZYQ!z6xMqR@ls165E z1D!{8yozf76m^D4U%8#hiCKw@qpo!$iwC2|nTZ;Axs`7W$n`%)Mg!fpivLj8H1mJ1 zLnYJ;s6Ogrcp&z`Ij9A_L=Bw&wKLo-hPw8ZP~+D@ZGC&x34Nk+J^$0mXv^xg+|B&hTx}jhzZ%>pqYi2KnW2Hp zqIRGT>I{0KRz47Q*MEV!nNFa#_NAH9=jy{z3vPj`?~EyNkQrmn^7;IMkKZK}=-O>X zbvTJSliyKi_|nSLByi<5TADzi~Cdhywzk9rSf^(aRctc$ke{Tzx~LW#`!fa zpuAC9U*PY6ZlEqzuXJv!N1%4(W7N&H2(>fIt^R9^zqj}->XQ0@CsUbBNP1u3d2fix zh*zQp+JsGT2WrCLP&ZKq)ICtd;&!NeW`M=BQ8)E!)J?q}bKoxXSERk)drGDf6`3=* zGiil7lWwR9M_?YDgt|x8Tlo=Gy9=l@d0=stjPA@!pk7e5Q2iUA+Vw}icz6pjr#}CG zB-4?Cn^*yBWpWdbF{h)C^2MmfaS3W6E3E!I^CSiyPt?MmS)4MnFYwusAJxAnYG?ak zQs(ytkx_@ysCV*gi;tkr;5XD`coX$lJwQE9uTTq4p2gMIK`o#u=EGj7ac81-U?pnd zM=idEesxHm)gCJxN?ZlC!mX$YcU%1-i?87il>cSro3ptcI*MH=KaT2OG`ri$GN^HC zqZZs8^&Xj;o#$US#U2W@(o5FxZ`9rU+Tt`h+yFUHJ5d-lL0Pjh>gKD3^)M0x_lkMM zyos96m(wjQEGN&uCN4pNR#+F+v8Bb)*n@bq#qs7tRKNdF3rZK}&L}%3CT@aSU~97@ zs$B$j$NsnxPy5Me!q{+M;GbT_;dtUdQFs4>NOy9E_O zJ-*d31RJ3q!?u_jJK;o(MvdoxN~Q*xpgg|7zuB&fs)$3K!CK6ZTg;27Gf9xwnF6)Y z45*tjA8LVRQT^+q+Bd}n*w*ZTEXeP5b{TJg8H0LZ%r@i9HK>JcM@{&HdB)1)Eq;i) z$-I2-v8#yMp;6`+sBylBS;1}8HT@U$%_muYcLtGWU(^d^FsfY~>So$zo#sDRyd7#E9!BqUJ&*CN0QMNPr<&p1=TTUA@^a_0skOgiFI&RVK>1! z)MNAjt6^9X_x|XDTEKklf}5~3rYY*iuY)>~E$BZ)<_Z~ItChu^>rmHlE9%{U5Vhr@ z#a+j|s55Pby0#rr^*vErJsdT`Le$ND02AXiRQo%q@gEhp=RZ*ix0QKN4QinVY>Zl1 zN7RH7sEz}zeu9(!Gl7mGrw;Y$GdZj#@w~)Bv3= z?twak0qDaKsB1q8wbctz?YE#7xC?ax$5G>5HgA~^QSDy%$*5sSDYsSGQCn95RUU!5 z*@mD7nu6NWIjF7PglcyhwSeDI?eALo8`MOpO1pl!Q0=Rt7Vd9CMqAqxHSrMC&9nq{ z)BJ{uFkKlp!A8`XZ$}M$*2?do27G`TFG*QvC~9H3%z~&(Py)H>{a$Y}TG4FOz{}13 zs57~SI`b!}fxU8Wq7YQSd}cXR`?{!wbwE94(WnK?!GyTT;w1rj{=OoUg^Kl<5f58@ z&El7so$_?=`2xS;N}^t^bx}V=J}`Tr7B~XS;>XwmzrpsHvb@i0ioH=gup3k9`TtiL z465J@{6pdNsIAPB2kMOTqWV`tw$y86@nBTH@u(e{Wv)Ptza0a= z|4)+9-F*(V)mKqlcE{oe=5y3U2`jmY)1hw0f~emSbx>#C3yWhMYT}7DP>04fQ@~fjZN1R=*In zBO9%JPZgej6`Z9&9ezg*kh-cHFgJd{1787`Q$C}bFYxd9N>+ET(g++&`6<+AMzb0| zZyBz|V%WH*FYs^4M`JzW$7YpUzQBKT{@70@4HI0#;WYTGwz~w8b=*RtF^uw9)B;za zZk|)9AEn9b`U3wzu?*@&2BCi0_%T}TunpFz=N7mSdl3JN8`Z9TeRrnG8@Rha9QCTK zfO-$KMs49db0Z!jK8!VSPD7u!3eRH;^fz+vjnk-07yQ0Ekr33q5{6o6Wn^5x*MN+! zZ8ulo4MHtoDryT?qrSnMM|~T35@^8PjCv}fQ7@2@7>;ACeu?=NYNytl2T>>Xo7F!+?Z6YOPuql@*YjVPj5^jp zP1Fwcf{8#)Gzisk4(glHCRDpUs0j|5=TK*S3-yEMKI)9$Z|V#D%5G`)G(SRrIvUI* zqgUk$9E68)C{}9bzJP2tU!ZoNR&%$2dZ-DSqsl)-U7`-CH)=Q3_+wDt{XRA4pxV!G z&hxL#A__Fn64c7SLcRHdTKM?O2fj?A9!QkO^S_(-^W(CpcT)*9;f>h$O5h1fZb4k3$_FG6nJgi3#mG)ybr4VHdOt6)B=lr z=yq~4RwUklb@49hr(KD*&Yq|jT%6wuj$juGymmfs19U|_x2fB^zaQv@nkY>NcP7oT zHSrva@0rCqx(Np257e(lJ*Is-x$!olb}Vsc_hRyQAfpCnQ4?h9;?C?t)B+W{$qX@TC2axZUelKUFo3KBYro(E~ zJ#ZN{VZ|OkZyt_Atvq8-H$Y!hyF;kYfV{nYf&X4m33Cy5MLpINQ1zdpp0ZU|z7Nyt z`~L~6xQ4nW&ry$Eo+$TmS{L=jq(ADjVLEESrKrbnyOr;=_>9$GK~4CN#VLBb$1@jd zyh50a`Mn0p;0LG`cSa4|7d6o^REKG(1+GQy)H&28NY=+$1GVrGsD7WL#@l4^UaLQ2 z@niJs1(Lk4TUl1r^P3wrKta^Ps#)9+^AmSLEoc&||0>kPJ5c>DSp2~1)AVzXWjJa< zRm_I{c>cAeZ79%l+8Y%QG$)|8a6am}-el#+Q3L&k+NnRyCsywDcQ2R_)Qcw#YW(yT zXEk&5=lNHIa4X1T<~IwWIu^yYSO(MK4Af36M=kIu*1&jF`@GR^VMS1JIn+E=P_Opt zsGV)%C!;fNi`u%r7RREGcrL2reAJurbJUr~p*|JYTKOg`--a4zKWfL$qx%12K0$p( zJjbr+_YH6prPXX4YiK>3e16i$#5YMfDN9NUCneV^-Z|pQZzS!dd?0=JYUk~?`U14? zVeM0BwH(^T(Scmx4}ahvivDf|)oGl@I$XE19t@J#@{h^iCGk1reQfRGh@TPjk>UMF zyH)s!)mb+$nD_-jK^E~n?f25AFe#S%FYxyVF2{YBET zgm%}c(_8JFD++vSuB1L0We==O6r*izQa-h7fiJak0Us2*uO z`2m=VhCc^t_%I>Ak@SRgjLsip80l~Fg=~B45GN#lPP#@vJ}ABak#5@JO6q znVFjOS9hOSCCFoUc%ZeB>s@p*^LwUGZS^$ zSloKrWuYYIv(1gt`Dc==MoB!a-yWIBzaf}KiY6_yQQy{IBfdeOjEpvzwpXc$qpYK~ z%ZSNsykfM|4}p(J+en8fZ-F}QYkw2aUcs9{E_*_p8cUAV)*WYLG8y?NoMz_)FUTN!bl-N%Aq-c2#nerTz_de~>!(snqci zhS8`v`QL4@N#yx@a-_iC8 zc^!=@_mdB1(qHi~DLHvN0`q$%=(LrjqX-?A;u7L-$iF?}iKp41(XT21Bm49xsPt@0I>V{L#sRMw->bgLUo{1bIWh`*tn?{r>X z(q(J^ALXw}zXk^73q9p$i9aFkLc1||&+3G}LWfZA_8*%QMB8BhGb#3_lK+SSCXjUO zR3|&$!yibmC_6{H#^ftoyAZbcA?0N$??QQgoMnCgA?`<9n%IB9I;_BM6jUT#r829P zM_4ENc%3QlN~~`P{8fv$1{+egn6ksfg|IQUz)jY_CZ-_0)|jLMEUXvxI+pVNF7Tfx zR}+jURj^L$XsDwR4Ugg-%9ByXuav;CAAhnzHc@hc_$2XS+Dyf7tnLlABORr_A?@mt z|A#iOZJfmV_iaTf7)N@0%psG9REV^V4(sq&>gQOea+Li*ei7+Q@(-===j3%nk`@MX z{ObeG_B`#9QCG|QKef69YCle-t^X;1tRod-kb@NNvBADY{glLhU!>IqSzOZkT_herdP=O9Ua)KD5Bz4*!2ei>Bvck9U&%V2pg!^1%Kt}x1jeGi2J1LP+@JQ7ur}o-8LM~#_OKR(PbknagY+5s zB^F;cpVH|R?XHlPl5z%GyFY5c-?Y0z8y&xp&rRAwyF5&yV-N8X{Dn5ta5`xpWifg+ zmZb0w7RR}y{B+t!1087@q_@j@{b=(G@g{sk*;n}XctW|3Kk&ZGdOtB%5ypCtveu-} zD9?)(G0xifXVQq@S%G6Re@-ENL;9Q)MCZm#lA8Qol8$1;2}sq+^Op}^Jq8>?(y^TK z`;>iW@gm}RHt$oPl5!o{br0+BJDyoV)<7}ei>$*n%KMPd%|i5dZXXbTYi-11 zQbq<$Leepr`s1X*^a&$9p)87&hx*mT2dUH1npBj0;lMLQ(26vj22DxBNW)3}X^@B1 zjQmRKbu1&^#bBS2x{+oOUnKRQZZh!{(o~X;Ui9lr-2{xJtUBpm%2VP6$~xoEy8hV- ze!y;2=hxOf{UJBy# zq+Z1LX!j#|9l34H(>Q~)K=1$4G#X+ZT{EsfnLn&k;&E8-!vIf~V=2EILZkS{~qQ>;RcoNnjRiJ7EzCE^3SBkbp?Q%UQo=ZH8lwRX-jL`Rg9rq|$NUF*JzYre} zlya?U{O%FXU=JvpXan%;=>I#4Q~y6o^4UTrlJ85~g4XH^{zYA0+KtCVy8dOXv9Y&R)2>7MmdlT^eyel*)+7y2)ttPd#(i%E%f=u-|u zi39szhJs}jJi=G__DDp7Dg-;;ndCL`O$N=_pi-nii5gM4g@zxKj#~7)=yw*e+}dk`wd8~Gj?MOr_-p#~ z4g9`tPp|ig>QdU3^cSu2kA^)w6o>%B1v+28l6Tt#|&G$DVC7B?t(MygGkKpI3@7V21+R|TVp z+mO%9fIZ1q!IYF2Ch3@oB{3Iuvu#m_iEk1AhLfpJujeZpnZ*?7NX_U;X`F-n_oR`e zxuj{7O($I@{A$^sSqaf0#!l>MsqOsJzM={IY4owEJ3S@HJyT1DlT zq<%D5jyjH8W91Vt$$C1xdklCtAm5$(KN)x)`Pt;x+r)FMUwO>Qn7b%%gQI8{c)s4V zhO=$JPiZ)lvg)LSOnluIvW@b+*0wa|4=K+;pJL>7G_ktDlwYT9ed3R-EDL4x$bU+^ z4&*P9Po@9=fXx)NAqb&^j??77CWVoIpVWkug!Hx5cc)HALEsN-h%`6{kV=DYg@5?kcaVGLfX}FRGmo*Uis??n(d(Z|Z>#fiq zcAUg=?+oaLHR#v1XJlB-=s^*YgSHN6+c$XYzRpR~2KVR@*?maZ)`J7D`4SWi+qzz`gaZM+Ba(8(5}V8y!WGrM{d0_t$O&@+#8k@NO614H#f)6jE~uH zd&lQn_n*6yB=pYsX}1<`jE{+pkDU@$JnYV@**A9X+`9U=kr`9P$F7baKQ}&hRebEm z`0Dp`E_{Td) Date: Tue, 25 Feb 2025 11:37:28 +0900 Subject: [PATCH 32/32] [ Change version ] 1.96.2.0 --- languages/vk-blocks-pro.pot | 2 +- readme.txt | 2 ++ vk-blocks.php | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index 088f32bdd..db49c4f50 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -9,7 +9,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-02-25T01:39:37+00:00\n" +"POT-Creation-Date: 2025-02-25T02:34:37+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" diff --git a/readme.txt b/readme.txt index ed5908425..3b8d4ddb1 100644 --- a/readme.txt +++ b/readme.txt @@ -108,8 +108,10 @@ e.g. == Changelog == += 1.96.2 = [ Bug fix ][ Post list (Pro) / Post list slider (Pro) / Tab (Pro) / Slider ] Fixed errors occurring regardless of whether the editing screen environment is in an iframe and improved the stability of feature performance. [ Bug fix ][ Post list (Pro) / Post list slider (Pro) ] Fixed the text displayed when no posts are available by removing the 's' notation and standardizing the first letter to lowercase. +[ Other ] Rollback 1.96.0 = 1.96.1 = [ Other ] Rollback 1.95.0.3 diff --git a/vk-blocks.php b/vk-blocks.php index 7750724f5..a057bd50c 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,7 +3,7 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.96.0.0 + * Version: 1.96.2.0 * Stable tag: 1.95.0.4 * Requires at least: 6.4 * Author: Vektor,Inc.