From 36af863c1d80ffd85f19caac81392c57b5bab577 Mon Sep 17 00:00:00 2001 From: mtdkei Date: Mon, 30 Sep 2024 08:45:48 +0900 Subject: [PATCH 01/21] Update class-vk-blocks-block-loader.php --- inc/vk-blocks/class-vk-blocks-block-loader.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/inc/vk-blocks/class-vk-blocks-block-loader.php b/inc/vk-blocks/class-vk-blocks-block-loader.php index d09424dde..257aab641 100644 --- a/inc/vk-blocks/class-vk-blocks-block-loader.php +++ b/inc/vk-blocks/class-vk-blocks-block-loader.php @@ -102,9 +102,6 @@ public function add_styles() { // 分割読み込みの場合は register されるファイルが false 指定で何も読み込まれなくなっている. wp_enqueue_style( 'vk-blocks-build-css' ); wp_enqueue_style( 'vk-blocks-utils-common-css' ); - wp_enqueue_style( 'vk-blocks/core-table', VK_BLOCKS_DIR_URL . 'build/extensions/core/table/style.css', array(), VK_BLOCKS_VERSION ); - wp_enqueue_style( 'vk-blocks/core-heading', VK_BLOCKS_DIR_URL . 'build/extensions/core/heading/style.css', array(), VK_BLOCKS_VERSION ); - wp_enqueue_style( 'vk-blocks/core-image', VK_BLOCKS_DIR_URL . 'build/extensions/core/image/style.css', array(), VK_BLOCKS_VERSION ); } /** @@ -121,9 +118,6 @@ public function register_blocks_assets() { wp_register_style( 'vk-blocks-build-css', false, array(), VK_BLOCKS_VERSION ); // src/utils内の内の共通cssの読み込み . wp_register_style( 'vk-blocks-utils-common-css', VK_BLOCKS_DIR_URL . 'build/utils/common.css', array(), VK_BLOCKS_VERSION ); - wp_register_style( 'vk-blocks/core-table', VK_BLOCKS_DIR_URL . 'build/extensions/core/table/style.css', array(), VK_BLOCKS_VERSION ); - wp_register_style( 'vk-blocks/core-heading', VK_BLOCKS_DIR_URL . 'build/extensions/core/heading/style.css', array(), VK_BLOCKS_VERSION ); - wp_register_style( 'vk-blocks/core-image', VK_BLOCKS_DIR_URL . 'build/extensions/core/image/style.css', array(), VK_BLOCKS_VERSION ); } else { // 一括読み込みの場合 : 結合CSSを登録. wp_register_style( 'vk-blocks-build-css', VK_BLOCKS_DIR_URL . 'build/block-build.css', array(), VK_BLOCKS_VERSION ); From 7c82651c5dc642704059fa6266aefcff046b4ad1 Mon Sep 17 00:00:00 2001 From: sysbird Date: Mon, 30 Sep 2024 17:00:26 +0900 Subject: [PATCH 02/21] add LinkToolbar #1291 --- src/blocks/icon/edit.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/blocks/icon/edit.js b/src/blocks/icon/edit.js index 97ef57bcf..7afec14cc 100644 --- a/src/blocks/icon/edit.js +++ b/src/blocks/icon/edit.js @@ -10,6 +10,7 @@ import { ButtonGroup, Button, SelectControl, + ToolbarGroup, } from '@wordpress/components'; import { InspectorControls, @@ -21,6 +22,7 @@ import { select } from '@wordpress/data'; import { useEffect } from '@wordpress/element'; import { AdvancedColorPalette } from '@vkblocks/components/advanced-color-palette'; +import LinkToolbar from '@vkblocks/components/link-toolbar'; export default function IconEdit(props) { const { attributes, setAttributes, clientId } = props; @@ -269,6 +271,18 @@ export default function IconEdit(props) { return ( <> {commonBlockControl} + + + setAttributes({ iconUrl: url })} + linkTarget={iconTarget} + setLinkTarget={(target) => + setAttributes({ iconTarget: target }) + } + /> + + Date: Tue, 1 Oct 2024 09:40:21 +0900 Subject: [PATCH 03/21] Fix: Prevent CORS errors when fetching external link metadata --- src/components/link-toolbar/index.js | 57 ++++++++++++++++------------ 1 file changed, 32 insertions(+), 25 deletions(-) diff --git a/src/components/link-toolbar/index.js b/src/components/link-toolbar/index.js index 5cd543010..744d26cd9 100644 --- a/src/components/link-toolbar/index.js +++ b/src/components/link-toolbar/index.js @@ -106,31 +106,38 @@ const LinkToolbar = ({ linkUrl, setLinkUrl, linkTarget, setLinkTarget }) => { const formattedUrl = formatUrl(linkUrl); const isExternalLink = !formattedUrl.startsWith(window.location.origin) && - !formattedUrl.startsWith('#'); - - const fetchTitle = function (url) { - if (url.startsWith('#')) { - return Promise.resolve(url); // アンカーリンクの場合はそのまま返す - } - return fetch(url, { method: 'GET' }) - .then((response) => response.text()) - .then((text) => { - const titleMatch = text.match(/(.*?)<\/title>/i); - return titleMatch ? titleMatch[1] : url; - }) - .catch(() => { - return url; - }); - }; - - fetchTitle(formattedUrl).then((title) => { - setLinkTitle(title); - }); - + !formattedUrl.startsWith('#'); // 外部リンクかどうか判定 + + // 外部リンクの場合はプレビュー(タイトル取得)をスキップする + if (!isExternalLink) { + const fetchTitle = function (url) { + if (url.startsWith('#')) { + return Promise.resolve(url); // アンカーリンクの場合はそのまま返す + } + return fetch(url, { method: 'GET' }) + .then((response) => response.text()) + .then((text) => { + const titleMatch = text.match(/<title>(.*?)<\/title>/i); + return titleMatch ? titleMatch[1] : url; + }) + .catch(() => { + return url; + }); + }; + + fetchTitle(formattedUrl).then((title) => { + setLinkTitle(title); + }); + } else { + // 外部リンクの場合はそのままリンクURLをタイトルとして設定する + setLinkTitle(formattedUrl); + } + + // アイコン設定 if (isExternalLink) { - setIcon(globe); + setIcon(globe); // 外部リンクの場合は地球アイコン } else if (formattedUrl.startsWith('#')) { - setIcon(globe); + setIcon(globe); // アンカーリンクにも地球アイコンを使用 } else { try { const domain = new URL(formattedUrl).origin; @@ -143,11 +150,11 @@ const LinkToolbar = ({ linkUrl, setLinkUrl, linkTarget, setLinkTarget }) => { /> ); } catch { - setIcon(link); // URLが無効な場合はリンクアイコンを使用 + setIcon(link); // URLが無効な場合はリンクアイコンを使用 } } } - }, [linkUrl]); + }, [linkUrl]); useEffect(() => { setSubmitDisabled(!linkUrl || linkUrl.trim() === ''); From 037681a1f7188a1baa7bb2888675c27d3c98da6f Mon Sep 17 00:00:00 2001 From: mtdkei <mtdkei@gmail.com> Date: Tue, 1 Oct 2024 09:47:59 +0900 Subject: [PATCH 04/21] Add changelog --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index 5d1cd0f13..105012922 100644 --- a/readme.txt +++ b/readme.txt @@ -106,6 +106,7 @@ e.g. == Changelog == +[ Add function ][ Link Toolbar ] Added to skip retrieving metadata (title and favicon) for external links in link toolbar to prevent CORS errors. [ Bug fix ][ Tab (Pro) ] Added a process to dynamically calculate and set the iframe height when the tab becomes active. [ Bug Fix ] Fixed an issue where disabling separated loading caused all block CSS to load. [ Add function ] [ Fixed Display (Pro) ] Added an option for "Fixed display from the bottom." From 8cc1d85ccb6516eea7e2f580c1405ef4261ca7a9 Mon Sep 17 00:00:00 2001 From: Masaya MORIMOTO <masaya_morimoto@yahoo.co.jp> Date: Wed, 2 Oct 2024 18:01:30 +0900 Subject: [PATCH 05/21] =?UTF-8?q?Pro=20=E3=82=A2=E3=82=A4=E3=82=B3?= =?UTF-8?q?=E3=83=B3=E3=82=92=E3=82=AB=E3=83=86=E3=82=B4=E3=83=AA=E3=83=BC?= =?UTF-8?q?=E3=83=90=E3=83=83=E3=82=B8=E3=81=AB=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- editor-css/_editor_before.scss | 2 ++ readme.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/editor-css/_editor_before.scss b/editor-css/_editor_before.scss index e8907b8ef..c51ea0b18 100644 --- a/editor-css/_editor_before.scss +++ b/editor-css/_editor_before.scss @@ -22,6 +22,8 @@ .editor-block-list-item-vk-blocks-button-outer:after, .editor-block-list-item-vk-blocks-card:after, .editor-block-list-item-vk-blocks-child-page:after, + .editor-block-list-item-vk-blocks-post-category-badge\/category-badge:after, + [class*="editor-block-list-item-vk-blocks-post-category-badge"]:after, .editor-block-list-item-vk-blocks-dynamic-text:after, .editor-block-list-item-vk-blocks-timeline:after, .editor-block-list-item-vk-blocks-step:after, diff --git a/readme.txt b/readme.txt index 980083788..c44c8a233 100644 --- a/readme.txt +++ b/readme.txt @@ -105,6 +105,7 @@ e.g. 1. VK Blocks examples. == Changelog == +[ Bug fix ][ Category Badge (Pro) ] Added Pro label to the inserter. [ Bug fix ] Fix load styles when separate load is enable. [ Bug fix ][ Tab (Pro) ] Added a process to dynamically calculate and set the iframe height when the tab becomes active. [ Bug Fix ] Fixed an issue where disabling separated loading caused all block CSS to load. From 555ddd0d3f78d16a83e79108307649db09a940da Mon Sep 17 00:00:00 2001 From: mtdkei <mtdkei@gmail.com> Date: Thu, 3 Oct 2024 10:46:15 +0900 Subject: [PATCH 06/21] Fix: Exclude fixed position class for top and bottom positions --- src/blocks/_pro/fixed-display/edit.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/blocks/_pro/fixed-display/edit.js b/src/blocks/_pro/fixed-display/edit.js index 15975fe79..09f2efa52 100644 --- a/src/blocks/_pro/fixed-display/edit.js +++ b/src/blocks/_pro/fixed-display/edit.js @@ -56,14 +56,18 @@ export default function FixedDisplayEdit(props) { }, [clientId, mode, position, blockId, scrollPersistVisible]); const blockProps = useBlockProps({ - className: `vk_fixed-display vk_fixed-display-mode-${mode} vk_fixed-display-position-${position} vk_fixed-display-position-from-${fixedPositionType} vk_fixed-display-${blockId}`, + className: `vk_fixed-display vk_fixed-display-mode-${mode} vk_fixed-display-position-${position} ${ + ['right', 'left'].includes(position) + ? `vk_fixed-display-position-from-${fixedPositionType}` + : '' + } vk_fixed-display-${blockId}`, style: { [fixedPositionType]: typeof window === 'undefined' || !window.wp?.blockEditor ? `${fixedPositionValue}${fixedPositionUnit}` : undefined, }, - }); + }); return ( <> From a04d59e20e5b1be7b9db979c5dc941333b3831e2 Mon Sep 17 00:00:00 2001 From: mtdkei <mtdkei@gmail.com> Date: Thu, 3 Oct 2024 10:47:05 +0900 Subject: [PATCH 07/21] Fix: Exclude fixed position class for top and bottom positions --- src/blocks/_pro/fixed-display/save.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/blocks/_pro/fixed-display/save.js b/src/blocks/_pro/fixed-display/save.js index e711662e2..5139b7a74 100644 --- a/src/blocks/_pro/fixed-display/save.js +++ b/src/blocks/_pro/fixed-display/save.js @@ -14,12 +14,17 @@ export default function save({ attributes }) { } = attributes; const blockProps = useBlockProps.save({ - className: `vk_fixed-display vk_fixed-display-mode-${mode} vk_fixed-display-position-${position} vk_fixed-display-position-from-${fixedPositionType} vk_fixed-display-${blockId}`, + className: `vk_fixed-display vk_fixed-display-mode-${mode} vk_fixed-display-position-${position} ${ + ['right', 'left'].includes(position) + ? `vk_fixed-display-position-from-${fixedPositionType}` + : '' + } vk_fixed-display-${blockId}`, style: { [fixedPositionType]: ['right', 'left'].includes(position) ? `${fixedPositionValue}${fixedPositionUnit}` : undefined, }, + // モードが 'show-on-scroll' の場合、データ属性を追加 ...(mode === 'show-on-scroll' && { 'data-scroll-timing': scrollTiming.toString(), 'data-scroll-timing-unit': scrollTimingUnit, From 79bc01b15632b20292ec55883c7621ae003dc696 Mon Sep 17 00:00:00 2001 From: mtdkei <mtdkei@gmail.com> Date: Thu, 3 Oct 2024 10:49:25 +0900 Subject: [PATCH 08/21] Fix test file --- .../fixtures/blocks/vk-blocks__fixed-display__default.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__default.html b/test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__default.html index 020edbdd1..0b6a88368 100644 --- a/test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__default.html +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__default.html @@ -1,5 +1,5 @@ -<!-- wp:vk-blocks/fixed-display {"blockId":"f04b7117-5c92-4fb5-a5b0-e1823e86d9fa"} --> -<div class="wp-block-vk-blocks-fixed-display vk_fixed-display vk_fixed-display-mode-always-visible vk_fixed-display-position-right vk_fixed-display-f04b7117-5c92-4fb5-a5b0-e1823e86d9fa vk_fixed-display-position-from-top" style="top:50svh"><!-- wp:paragraph --> +<!-- wp:vk-blocks/fixed-display {"blockId":"4c37f75f-b343-49cb-8c5f-3c5012b815b8"} --> +<div class="wp-block-vk-blocks-fixed-display vk_fixed-display vk_fixed-display-mode-always-visible vk_fixed-display-position-right vk_fixed-display-position-from-top vk_fixed-display-4c37f75f-b343-49cb-8c5f-3c5012b815b8" style="top:50svh"><!-- wp:paragraph --> <p>あああああああああ</p> <!-- /wp:paragraph --></div> <!-- /wp:vk-blocks/fixed-display --> From e479ed0fedf15afeaab1fcb66da617f961b759e1 Mon Sep 17 00:00:00 2001 From: mtdkei <mtdkei@gmail.com> Date: Thu, 3 Oct 2024 11:14:23 +0900 Subject: [PATCH 09/21] Delete commentout --- src/blocks/_pro/fixed-display/save.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/blocks/_pro/fixed-display/save.js b/src/blocks/_pro/fixed-display/save.js index 5139b7a74..4a73fe296 100644 --- a/src/blocks/_pro/fixed-display/save.js +++ b/src/blocks/_pro/fixed-display/save.js @@ -24,7 +24,6 @@ export default function save({ attributes }) { ? `${fixedPositionValue}${fixedPositionUnit}` : undefined, }, - // モードが 'show-on-scroll' の場合、データ属性を追加 ...(mode === 'show-on-scroll' && { 'data-scroll-timing': scrollTiming.toString(), 'data-scroll-timing-unit': scrollTimingUnit, From 212b4d19a7374e5faa55261b6f34815af459d03d Mon Sep 17 00:00:00 2001 From: mtdkei <mtdkei@gmail.com> Date: Thu, 3 Oct 2024 11:15:18 +0900 Subject: [PATCH 10/21] Delete blank space --- src/blocks/_pro/fixed-display/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/_pro/fixed-display/edit.js b/src/blocks/_pro/fixed-display/edit.js index 09f2efa52..6199d1edf 100644 --- a/src/blocks/_pro/fixed-display/edit.js +++ b/src/blocks/_pro/fixed-display/edit.js @@ -67,7 +67,7 @@ export default function FixedDisplayEdit(props) { ? `${fixedPositionValue}${fixedPositionUnit}` : undefined, }, - }); + }); return ( <> From 7c16e7c159728b82d756d0f7a9a0e1384ed9c40d Mon Sep 17 00:00:00 2001 From: akito-38 <m.akirabo@gmail.com> Date: Thu, 3 Oct 2024 16:10:31 +0900 Subject: [PATCH 11/21] =?UTF-8?q?fix:=E7=BF=BB=E8=A8=B3=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.txt | 12 +++++++----- src/blocks/_pro/gridcolcard/edit-common.js | 5 ++++- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/readme.txt b/readme.txt index 8c875bf52..ca7bd05b5 100644 --- a/readme.txt +++ b/readme.txt @@ -106,6 +106,8 @@ e.g. == Changelog == +[ Bug fix ][ Grid Column Card (Pro) ] Add translation. + = 1.85.1 = [ Bug fix ] Due to an issue where the hidden setting does not function properly when TreeShaking is enabled and CSS splitting is disabled, TreeShaking has been temporarily disabled as a workaround. @@ -133,7 +135,7 @@ e.g. = 1.83.0 = [ Add function ][ Alert ] Add icon setting and inner block. -[ Bug fix ][ Grid Column Card ] Fixed an issue where using a synced pattern would cause the destination edit page to crash. +[ Bug fix ][ Grid Column Card (Pro) ] Fixed an issue where using a synced pattern would cause the destination edit page to crash. [ Bug fix ][ Core List ] Add support for handling list color in old settings. [ Bug fix ][ Tab Item ] When duplicating an active tab-item block, no more than one tab-item block becomes active. @@ -182,7 +184,7 @@ e.g. [ Specification change ][ Slider ] Change padding style to core system from original. [ Bug fix ] Fixed an error in the component link toolbar in WordPress version 6.6. [ Bug fix ][ Tab (Pro) ] Fixed extra space being added to tabs depending on theme. -[ Bug fix ][ Fixed Display (Pro) ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment. +[ Bug fix ][ Fixed Display (Pro) ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment. [ Other ][ Table of Contents (Pro) ] Improved pseudo elements for frontend page accessibility. [ Other ][ Outer ] Refactored CSS of width treatment to prevent layout corruption on the edit screen. @@ -208,7 +210,7 @@ e.g. [ Other ] Delete old deprecated code = 1.76.0 = -[ Add function ] Add Setting for the position of VK Blocks on all block inserter. +[ Add function ] Add Setting for the position of VK Blocks on all block inserter. [ Add function ][ Border Box ] Add title tag setting. [ Add function ][ Slider ] Add url interface to block toolbar for slider item. [ Specification change ][ Post List (Pro) ] Displayed taxonomies now only show for selected post types. @@ -241,14 +243,14 @@ e.g. [ Add function ][ Outer (Pro) ] Added option to min height setting. [ Specification change ][ Custom CSS (Pro) ] Changed the custom CSS text area to be wider [ Specification change ][ Outer ] Remove the negative margin for .vk_outer-width-full. -[ Bug fix ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment. +[ Bug fix ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment. [ Bug fix ] Remove min-height from "Custom CSS" on edit screen. [ Other ] Fixed useSetting deprecated = 1.72.1 = [ Specification change ][ Pro ] Attend to I18N Improvements in 6.5. [ Other ] Fixed useSetting deprecated -[ Bug fix ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment. +[ Bug fix ] Fixed an issue with redundant JavaScript loading in the WordPress 6.5 environment. = 1.72.0 = [ Specification change ][ Child Page List ] Hide "Term's name on Image" and "Taxonomies (all)" display options. diff --git a/src/blocks/_pro/gridcolcard/edit-common.js b/src/blocks/_pro/gridcolcard/edit-common.js index 88d6e8f98..3c6764521 100644 --- a/src/blocks/_pro/gridcolcard/edit-common.js +++ b/src/blocks/_pro/gridcolcard/edit-common.js @@ -106,7 +106,10 @@ const CommonItemControl = (props) => { return ( <> <ComboboxControl - label="Card header image aspect ratio" + label={__( + 'Card header image aspect ratio', + 'vk-blocks-pro' + )} value={headerImageAspectRatio} onChange={(value) => setAttributes({ From 857d2a2207d12cd6798960bbeb95765c7e62aa02 Mon Sep 17 00:00:00 2001 From: akito-38 <m.akirabo@gmail.com> Date: Fri, 4 Oct 2024 11:46:06 +0900 Subject: [PATCH 12/21] =?UTF-8?q?=E3=82=B0=E3=83=AA=E3=83=83=E3=83=89?= =?UTF-8?q?=E3=82=AB=E3=83=A9=E3=83=A0=E3=82=AB=E3=83=BC=E3=83=89=E7=BF=BB?= =?UTF-8?q?=E8=A8=B3=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../vk-blocks-pro-ja-vk-blocks-admin-js.json | 2 +- .../vk-blocks-pro-ja-vk-blocks-build-js.json | 2 +- languages/vk-blocks-pro-ja.l10n.php | 2 +- languages/vk-blocks-pro-ja.mo | Bin 86851 -> 86867 bytes languages/vk-blocks-pro-ja.po | 204 ++++++++++-------- languages/vk-blocks-pro-js.pot | 185 +++++++++------- languages/vk-blocks-pro.l10n.php | 7 +- languages/vk-blocks-pro.pot | 188 +++++++++------- 8 files changed, 330 insertions(+), 260 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 7ea306dd0..e04e56d7a 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 (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.":["selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":[""],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"2:3":[""],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"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"],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position from the top":["上部からの固定位置"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"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":["スクロールしたら表示"],"Fixed position":["固定位置"],"Top":["上 "],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Grid column item link":["グリッドカラムアイテムリンク"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border 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":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"Outer link":["Outerリンク"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"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 Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"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":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"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"],"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:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"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":["リンクターゲット"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Output Before Text Icon":["文字の前にアイコンを表示"],"Output After Text Icon":["文字の後にアイコンを表示"],"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. <Link>Learn more about inserters</Link>.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":[""],"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\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":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\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 (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.":["selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":[""],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"2:3":[""],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"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"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"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":["スクロールしたら表示"],"Fixed position":["固定位置"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Grid column item link":["グリッドカラムアイテムリンク"],"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":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"Outer link":["Outerリンク"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"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 Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"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":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"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"],"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:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"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":["リンクターゲット"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Output Before Text Icon":[""],"Output After Text Icon":[""],"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. <Link>Learn more about inserters</Link>.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"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.<br>Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":[""],"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\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":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\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 7ea306dd0..e04e56d7a 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 (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.":["selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":[""],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"2:3":[""],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"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"],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position from the top":["上部からの固定位置"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"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":["スクロールしたら表示"],"Fixed position":["固定位置"],"Top":["上 "],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Grid column item link":["グリッドカラムアイテムリンク"],"Layout Columns":["カラムレイアウト"],"Column Margin Bottom Setting":["カラム下部余白設定"],"Margin Bottom":["下部の余白"],"You can create a variety of layouts with grid column card blocks.":["グリッドカラムカードブロックでは柔軟なレイアウトが可能です。"],"Unlink":["リンクを解除する"],"Input Link URL":["リンクURL"],"Submit":["送信"],"Edit mode":["編集モード"],"All columns":["すべてのカラム"],"This column only":["このカラムのみ"],"Edit Lock":["編集ロック"],"Lock edits this block from the parent and other Grid Column Item block":["このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする"],"Column Setting":["カラム設定"],"Link URL:":["リンク URL:"],"If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.":["リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。"],"Make sure that no link is specified for the image block, etc.":["画像ブロックなどにもリンクが指定されていないか注意してください。"],"Image fit to column":["画像とカラム内の余白をなくす"],"Column footer button area":["カラムフッターボタンエリア"],"Display":["表示"],"Hide":["非表示"],"Column Radius":["カラムの角丸の大きさ"],"Border":["枠線"],"Border 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":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"Outer link":["Outerリンク"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"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 Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"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":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"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"],"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:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"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":["リンクターゲット"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Output Before Text Icon":["文字の前にアイコンを表示"],"Output After Text Icon":["文字の後にアイコンを表示"],"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. <Link>Learn more about inserters</Link>.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"You can scroll":["スクロールできます"],"Theoretical Physicist":["理論物理学者"],"Profile":["プロフィール"],"Albert Einstein":["アルバート・アインシュタイン"],"14 March 1879 – 18 April 1955":["1879年3月14日 - 1955年4月18日"],"Lorem ipsum dolor":["闇の中で"],"Lorem ipsum":["ロレム・アプサム"],"Custom list":["カスタムリスト"],"Preset":["プリセット"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome's icon list Please select a tag and enter it.":["他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。"],"Ex) ":["例) "],"Add selected icon to custom list":["選択中のアイコンをカスタムリストに追加"],"Delete/Sort mode":["削除/並び替えモード"],"When you click save button, the window will be reloaded and this setting will be applied.":["保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。"],"Save":["保存"],"Select Icon":["アイコンを選択"],"VK Blocks Pro":["VK Blocks Pro"],"https://github.com/vektor-inc/vk-blocks":["https://github.com/vektor-inc/vk-blocks"],"This is a plugin that extends Block Editor.":["ブロックエディタを拡張するプラグインです。"],"Vektor,Inc.":["Vektor,Inc."],"https://vektor-inc.co.jp":["https://vektor-inc.co.jp"],"We've released VK Blocks Pro!":["VK Blocks Pro を公開しました!"],"Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.":["いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。"],"https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/":["https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/"],"See more":["続きを見る"],"Dismiss this notice":["通知を無視"],"Install Required Plugins":["必須プラグインのインストール"],"Install Plugins":["プラグインのインストール"],"Installing Plugin: %s":["プラグイン %s をインストール中"],"Something went wrong with the plugin API.":["プラグイン API で問題が発生しました。"],"This plugin requires the following plugin: %1$s.":["このプラグインは下記プラグインを必要としています:%1$s。"],"This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":[""],"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\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":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\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 (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.":["selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.":["selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"Example:":["例:"],"Custom Format Setting":["カスタム書式設定"],"You can apply commonly used formatting on the block toolbar.":["ブロックツールバーのよく使う書式設定を登録することができます。"],"Toolbar title":["ツールバー タイトル"],"Preview Text":["プレビューテキスト"],"Export %s":["%s をエクスポート"],"It seems that the changed settings are not saved. Please save your changes.":["設定の変更が保存されていないようです。変更を保存してください。"],"Export":["エクスポート"],"Toggle all":["すべて切り替える"],"Invalid JSON file":["無効なJSONファイルです"],"Unknown error":["不明なエラーです"],"Import data confirmation":["データのインポート確認"],"No import data":["インポートするデータがありません"],"Import %s":["%s をインポート"],"Import method":["インポート方法"],"Override":["上書き"],"The following data will not be imported because the identifiers are covered.":["次のデータは識別子が重複しているため、インポートされません。"],"Import":["インポート"],"Import Success":["インポート成功"],"Font Awesome Custom Lists Setting":["Font Awesome カスタムリスト設定"],"Custom Block Variation Setting":["カスタムブロックバリエーション設定"],"Breadcrumb Separator Setting":["パンくずリストセパレーター設定"],"License Key":["ライセンスキー"],"Import Export Tool":["インポート・エクスポートツール"],"Margin Setting":["余白設定"],"Load Separate Setting":["分割読み込み設定"],"FAQ Block Setting":["FAQ Blocks 設定"],"Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).":["有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。"],"Once you enter the license key you will be able to do a one click update from the administration screen.":["有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。"],"License key":["ライセンスキー"],"Note that the order in which CSS/JS are loaded will change.":["CSS / JSの読み込み順序が変わることに注意してください。"],"Load Separate Option on":["分割読み込みを有効にする"],"Custom Value":["カスタム値"],"If you enter a custom value, the values you entered will be used as a priority.":["カスタム値を入力すると、入力した値が優先されます。"],"This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.":["この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。"],"ex)":["例)"],"Margin":["余白"],"XXS":["XXS"],"XS":["XS"],"S":["S"],"M":["M"],"L":["L"],"XL":["XL"],"XXL":["XXL"],"PC":["PC"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Common Margin Setting":["共通余白設定"],"Please specify the size of the common margin used for responsive spacers, etc.":["レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。"],"Unit":["単位"],"Please specify a common accordion setting to be used in the FAQ block.":["FAQブロックで使用する共通のアコーディオン設定を指定してください。"],"Disable accordion":["アコーディオン無効"],"Enable accordion and default open":["アコーディオン有効 / 初期状態で開く"],"Enable accordion and default close":["アコーディオン有効 / 初期状態で閉じる"],"Save setting":["変更を保存"],"Save Success":["保存しました"],"Default Initial State":["初期表示状態"],"Close":["閉じる"],"Open":["開く"],"Accordion Setting":["アコーディオン設定"],"Set initial state per device":["デバイスごとに初期状態を設定"],"No background color":["背景なし"],"No background color / Border":["背景なし / 枠線"],"Background color":["背景あり"],"Background color / Border":["背景あり / 枠線"],"Background color / Rounded ":["背景あり / 角丸"],"Background color / Rounded / Border":[" 背景あり / 角丸 / 枠線 "],"Plain":["装飾無し"],"Slow":["遅い"],"Fast":["速い"],"Very Fast":["非常に速い"],"Animation range":["アニメーションの距離"],"Short":["短い"],"Normal":["標準"],"Long":["長い"],"Animation only the first view":["初回表示のみアニメーション"],"Animation Settings":["アニメーション設定"],"Animation effect":["アニメーションの効果"],"Fade In":["フェードイン"],"Slide Up":["スライドアップ"],"Slide Left":["スライド左"],"Slide Right":["スライド右"],"Left Right":["左右"],"Up Down":["上下"],"Trembling Y":["ぶるぶる(Y方向)"],"Trembling X":["ぶるぶる(X方向)"],"Pounding":["どきどき"],"Shaking":["ゆらゆら"],"Animation speed":["アニメーションの速度"],"Very Slow":["非常に遅い"],"Archive List Setting":["アーカイブリスト設定"],"Post type":["投稿タイプ"],"Archive type":["アーカイブタイプ"],"Monthly":["月別"],"Yearly":["年別"],"Display as dropdown":["ドロップダウン"],"Show post counts":["投稿件数を表示"],"Settings":["設定"],"Aspect ratio":["縦横比"],"Original":["オリジナル"],"Square":["四角"],"16:9":[""],"4:3":[""],"3:2":[""],"9:16":[""],"3:4":[""],"2:3":[""],"Height":["高さ"],"Width":["幅"],"Image is scaled and cropped to fill the entire space without being distorted.":["全体を埋めるように拡大・切り取られます。"],"Image is scaled to fill the space without clipping nor distorting.":["画像は切り取りや歪みなくスペースを埋めるように拡大されます。"],"Image will be stretched and distorted to completely fill the space.":["画像はスペースを完全に埋めるために引き伸ばされます。"],"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":["ボタンギャップサイズ"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":["あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。"],"Title":["タイトル"],"Select image":["画像を選択"],"Delete Image":["画像を削除"],"URL":["URL"],"https://example.com":["https://example.com"],"Display item":["表示要素"],"Excerpt Text":["抜粋"],"Warning! When you hidden this item, you will lose the content.":["注意!この項目を非表示にすると入力されていた内容は失われます。"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Image Height":["画像高さ"],"Slide Height for each device.":["デバイス毎の高さ"],"There are no applicable child pages.":["該当する子ページがありません。"],"Check your settings from the settings sidebar.":["設定サイドバーから設定を確認してください。"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["この投稿を除く"],"Current page":["現在のページ"],"Please select display element from the Setting sidebar.":["設定サイドバーから表示要素を選択してください。"],"Post Type Name":["投稿タイプ名"],"Ancestor Page Title":["先祖ページのタイトル"],"Parent Page Title":["親ページのタイトル"],"Custom field":["カスタムフィールド"],"This block is not rendered because no custom field name is specified.":["カスタムフィールド名が指定されていないため、このブロックは表示されません。"],"Display element settings":["表示要素の設定"],"Display element":["表示要素"],"Please Select":["選択してください"],"Post type name of the page being viewed":["表示中のページの投稿タイプ名"],"Page name in the ancestor hierarchy of the displayed page":["表示中の固定ページの先祖階層のページ名"],"Page name in the parent hierarchy of the displayed page":["表示されているページの親階層にあるページ名"],"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"],"Top":["上 "],"Right":["右"],"Bottom":["下 "],"Left":["左"],"Fixed position origin":["固定位置の基準"],"Top section":["上部"],"Bottom section":["下部"],"Fixed position from the top":["上部からの固定位置"],"Fixed position from the bottom":["下部からの固定位置"],"Timing to display":["表示するタイミング"],"Persist visibility once visible":["一度表示したら表示を維持する"],"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":["スクロールしたら表示"],"Fixed position":["固定位置"],"Color Settings":["色設定"],"Margin setting inside the item":["アイテム内の余白設定"],"Padding (Top)":["余白 (上)"],"Padding (Left and Right)":["余白 (左右)"],"Padding (Bottom)":["余白 (下)"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Grid column item link":["グリッドカラムアイテムリンク"],"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":["全カラム一括指定"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Icon Card Setting":["アイコンカード設定"],"Icon":["アイコン"],"Icon Background:":["アイコン背景:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Columns":["カラム"],"Align":["表示位置"],"Text":["テキスト"],"Min Height Setting":["最小高さ設定"],"Unit Type":["単位"],"vh":[""],"svh":[""],"lvh":[""],"dvh":[""],"Outer link":["Outerリンク"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"Repeat":["リピート"],"Cover":["カバー"],"Cover fixed (Not fixed on iPhone)":["カバー 固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Remove padding from the Outer area":["アウターエリア内の余白を無くす"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Large triangle":["大きい三角"],"Serrated":["ギザギザ"],"Settings for each device":["デバイス毎の設定"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Container Inner Side Space Setting":["コンテナ内側のスペース設定"],"Setting":["設定"],"Enable Term Link":["タームへのリンクを有効にする"],"Select Taxonomy":["タクソノミーを選択"],"Auto":["自動"],"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 Badge setting":["新着バッジ設定"],"Days Counted as New Post":["新しい投稿としてカウントされる日数"],"Edit text…":["テキストを編集…"],"New Badge":["新着バッジ"],"Because no post is selected, The block Will not render":["ページが選択されていないためこのブロックはレンダリングされません"],"Input Internal Post URL":["このサイトの投稿の URL を入力してください"],"Ex,6:00AM":["例) 午前 6:00"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step Mark":["ステップマーク"],"If Font Awesome tags entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"First Dot Number":["ステップの開始番号"],"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":["目次"],"Note on duplicating headings":["見出し複製時の注意"],"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"],"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:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["ブロック"],"Button Width:":["ボタンの幅:"],"25%":["25%"],"50%":["50%"],"75%":["75%"],"Button Style:":["ボタンスタイル:"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Button Effect:":["ボタン エフェクト"],"Shine":["光る"],"Default Color (Bootstrap)":["標準色 (Bootstrap)"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"Button Color":["ボタンカラー"],"This color palette overrides the default color. If you want to use the default color, click the clear button.":["このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Before text":["文字の前"],"After text":["文字の後"],"Size":["サイズ"],"Button border radius":["ボタンの角丸の大きさ"],"Input text":["文字を入力"],"If you want to be collapsing this block, you can set it at Setting > VK Blocks":["このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます"],"You can be collapsing this block at VK Blocks Pro":["Pro版は回答部分を開閉式にできます"],"Please enter a question.":["質問を入力してください。"],"Bgfill Circle":["背景塗り 円形"],"Bgfill Square":["背景塗り ピン角"],"Bgfill Rounded":["背景塗り 角丸"],"Border Circle":["枠線 円形"],"Border Square":["枠線 ピン角"],"Border Rounded":["枠線 角丸"],"Question":["質問"],"Answer":["回答"],"Use common settings":["共通設定を使用"],"* You can change each common accordion settings from Setting > VK Blocks.":["* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Input title…":["タイトルを入力"],"Input sub text…":["サブテキストを入力"],"Heading style":["見出しスタイル"],"Margin between Heading and sub text (rem)":["見出しとサブテキストの余白サイズ(rem)"],"Margin bottom size of after this block (rem)":["このブロック全体の下部の余白 (rem)"],"Heading Settings":["見出し設定"],"Icon Color":["アイコンの色"],"Sub Text Settings":["サブテキスト設定"],"Text size (rem)":["文字サイズ (rem)"],"Change heading level":["見出しレベルの変更"],"Heading %d":["見出し %d"],"Reset":["リセット"],"Icon & Frame":["アイコンと枠"],"Icon only":["アイコンのみ"],"Icon Common Setting":["アイコン共通設定"],"Icon Setting":["アイコン設定"],"Link URL":["リンクURL"],"Unspecified":["指定しない"],"Page Setting":["ページ設定"],"Select Page":["ページを選択"],"This block can display private content. Please note that this content will be public even if you set the original page to private.":["このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Icon 3":["アイコン 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Select Image":["画像を選択"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Default Color:":["標準色:"],"Layout Type":["レイアウトタイプ"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Slider item link":["スライダーアイテムリンク"],"Vertical align":["縦揃え"],"Background Image Size":["背景画像サイズ"],"cover":["カバー"],"repeat":["リピート"],"Slide":["スライド"],"Fade":["フェード"],"Loop ":["繰り返し"],"AutoPlay":["自動再生"],"Stop AutoPlay when swipe":["スワイプ時に自動再生を停止"],"Display Time":["表示時間"],"Change Speed":["切り替え時間"],"Pagination Type":["ページネーションの種類"],"Number of slides":["スライドの枚数"],"Navigation Position":["ナビゲーションの位置"],"Bottom on Mobile device":["モバイルでは下部に表示"],"If you specifying a numbers with decimals such as 1.5, Please set \"Centering the active slide\"":["1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください"],"The decimal point can be set for the display number only when the display is switched one by one.":["表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。"],"Enter integer divisors for the number of placed slide items for each display size.":["各表示サイズのスライド アイテムの配置数の整数の約数を入力します。"],"If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.":["スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。"],"Multi-item Display Setting":["アイテムの複数表示設定"],"Number of Items to display per view":["一度に表示するスライドアイテムの数"],"Enter divisors for the number of placed slide items for each display size.":["配置済みのスライドアイテムを割り切れる数を入力してください。"],"If the number is not divisible, the sliding behaviour will be unnatural":["割り切れない数の場合、スライド動作が不自然になります。"],"Number of items to change in a transition":["一度に遷移するスライドアイテムの数"],"One by One":["1つずつ"],"Same as the number of items to display":["表示アイテム数と同じ"],"Centering the active slide":["アクティブスライドを中央にする"],"If you specify the center, you can display items that are cut off on the left and right.":["中央を指定すると左右が切れたアイテムを表示できます。"],"Change Slide Editor Mode":["スライド編集モードの変更"],"Edit ( Stacked Layout ) Mode":["編集(縦積み配置)モード"],"Preview ( Slide ) Mode":["プレビュー(スライド)モード"],"Editor Setting":["エディタ設定"],"Editor Mode":["編集モード"],"Edit ( Stacked Layout )":["編集(縦積み配置)"],"Preview ( Slide )":["プレビュー(スライド)"],"Slider Settings":["スライド設定"],"Effect ":["エフェクト"],"height":["height"],"margin-top":["margin-top"],"margin-bottom":["margin-bottom"],"Space Type":["余白タイプ"],"Custom":["カスタム"],"You can change each common margin size from Setting > VK Blocks":["* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。"],"Height for each device.":["デバイス毎の高さ"],"Spacer Settings":["余白の設定"],"Your Name":["名前"],"Caption":["キャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Heading Font":["見出しのフォント"],"Font":["フォント"],"minchoBody":["明朝体にする"],"Theme":["テーマ"],"Note : Contains double-byte spaces; CSS may not work.":["注意 : 全角スペースが含まれています。CSSが効かない可能性があります。"],"There is an error with your CSS structure.":["CSS 構造にエラーがあります。"],"Card (Image Round)":["カード(画像丸抜き)"],"Card":["カード"],"Card (No border)":["カード(線なし)"],"Card (Intext)":["カード(インテキスト)"],"Card (Horizontal)":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト 1 カラム"],"Display type and columns":["表示タイプとカラム"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Column ( Screen size : XX large )":["カラム ( 画面サイズ : XX Large )"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"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":["リンクターゲット"],"Link copied to clipboard.":["リンクをクリップボードにコピーしました"],"Deleting Link":["リンクを削除"],"Copy link: %s":["リンクをコピー: %s"],"Copy link":["リンクをコピー"],"Output Before Text Icon":[""],"Output After Text Icon":[""],"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. <Link>Learn more about inserters</Link>.":[""],"https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter":[""],"It will appear in the variation picker.":["バリエーションピッカーに表示されます。"],"Transform":["変換"],"Displayed in block variation transformation.":["ブロックバリエーション変換で表示されます。"],"If selector is specified, it is replaced by a block-specific CSS class. If selector is set to \"selector\", it will be replaced with a block-specific CSS class. CSS selectors other than \"selector\" may affect the entire page.":["selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。"],"If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.":["編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。"],"Hidden Settings":["非表示設定"],"Hidden at screen size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML. Please don't use you must not visible item. Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"Hidden ( Screen size : xxl )":["非表示 ( 画面サイズ : xxl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Highlighter":["蛍光マーカー"],"Inline Font Size":["インライン文字サイズ"],"Inline font size":["インライン文字サイズ"],"Apply":["適用"],"Big":["大"],"Extra big":["特大"],"Bottom XXL":["下 XXL"],"Top XXL":["上 XXL"],"Margin the block":["ブロックの余白"],"Top XL":["上 XL"],"Top L":["上 L"],"Top M":["上 M"],"Top S":["上 S"],"Top XS":["上 XS"],"Top XXS":["上 XXS"],"Top 0":["上 0"],"Bottom 0":["下 0"],"Bottom XXS":["下 XXS"],"Bottom XS":["下 XS"],"Bottom S":["下 S"],"Bottom M":["下 M"],"Bottom L":["下 L"],"Bottom XL":["下 XL"],"No wrap":["No wrap"],"Responsive BR":["画面サイズ毎の改行 "],"Responsive BR ":["画面サイズ毎の改行 "],"Column link":["カラムリンク"],"Column Direction":["カラムの方向"],"Reverse":["逆"],"Cover link":["カバーリンク"],"Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.":["theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。"],"Group link":["グループリンク"],"List Icon Color":["リストアイコンの色"],"Table Horizontal Scroll":["テーブルの水平方向スクロール"],"Scrollable":["スクロール"],"Horizontal Scroll Breakpoint":["水平スクロールのブレイクポイント"],"Mobile size":["モバイル"],"Tablet size":["タブレット"],"PC size":["PC"],"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.<br>Many additional functions are available for free.":["このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。"],"Sorry, but you do not have the correct permissions to install the %1$s plugin.":["%1$sプラグインをインストールするための適切な権限がありません。"],"The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.":["このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。"],"There is an update available for: %1$s.":["次のプラグインの更新が利用可能です:%1$s。"],"Sorry, but you do not have the correct permissions to update the %1$s plugin.":["%1$sプラグインを更新するための適切な権限がありません。"],"The following required plugin is currently inactive: %1$s.":["必須プラグインが現在有効化されていません: %1$s。"],"The following recommended plugin is currently inactive: %1$s.":["推奨プラグインが現在有効化されていません: %1$s。"],"Sorry, but you do not have the correct permissions to activate the %1$s plugin.":["%1$sプラグインを有効化するための適切な権限がありません。"],"Begin installing plugin":["プラグインのインストールを開始"],"Begin updating plugin":["プラグインの更新を開始する"],"Begin activating plugin":["プラグインの有効化を開始"],"Return to Required Plugins Installer":["必須プラグインのインストール画面に戻る"],"Plugin activated successfully.":["プラグインを有効化しました。"],"The following plugin was activated successfully:":["次のプラグインを有効化しました:"],"No action taken. Plugin %1$s was already active.":["操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。"],"Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.":["プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。"],"All plugins installed and activated successfully. %1$s":["すべてのプラグインを正常にインストールし、有効化しました。 %1$s"],"Please contact the administrator of this site for help.":["ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。"],"FAQ Setting":["FAQ ブロックの設定"],"Blocks setting":["Blocks 設定"],"Blocks Setting":["Blocks 設定"],"Balloon Block Setting":["吹き出しブロック設定"],"Load Separete Setting":["分割読み込み設定"],"Blocks Layout":["ブロックレイアウト"],"Blocks":["Blocks"],"Deprecated Blocks":["非推奨ブロック"],"Dummy Text":["ダミーテキスト"],"Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.":["サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。"],"This message only display on the edit screen.":["このメッセージは編集画面でのみ表示されます。"],"Edit this area":["このエリアを編集"],"Please select year":["選択してください"],"Please select month":["選択してください"],"Category Badge":["カテゴリーバッジ"],"Display a list of assigned terms from the taxonomy: %s":[""],"Please select taxonomy":["タクソノミーを選択してください。"],"Categories":["カテゴリー"],"All of %s":[""],"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\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":["投稿リスト"],"block title\u0004New Badge":["新着バッジ"],"block title\u0004Selected Post List Item":["選択投稿リストアイテム"],"block title\u0004Selected Post List":["選択投稿リスト"],"block title\u0004Step Item":["ステップ要素"],"block title\u0004Step":["ステップ"],"block title\u0004Table of Contents":["目次"],"block title\u0004Taxonomy":["タクソノミー"],"block title\u0004Timeline Item":["タイムライン要素"],"block title\u0004Timeline":["タイムライン"],"block description\u0004A colored box with four statuses, including annotations and alerts.":["注釈や注意など4つのステータスがある色付きのボックスです。"],"block description\u0004Display Page list from ancestor page":["先祖階層からのページリストを表示します"],"block description\u0004These speech balloons are perfect for recreating conversations.":["会話の再現などに最適な吹き出しです。"],"block description\u0004This is a border box where you can place headings to attract attention.":["見出しを配置でき注目されやすい枠線ボックスです。"],"block description\u0004A button link that can display icons before and after.":["前後にアイコンを表示できるボタンリンクです。"],"block description\u0004Displays a combination of questions and answers.":["質問と回答を組み合わせて表示します。"],"block description\u0004Answer area where you can add blocks freely.":["自由にブロックを追加できる回答エリアです。"],"block description\u0004Question area where you can freely add blocks.":["自由にブロックを追加できる質問エリアです。"],"block description\u0004It displays a combination of questions and answers. You can freely add blocks to the question area as well.":["質問と回答を組み合わせて表示します。質問エリアにも自由にブロックを追加できます。"],"block description\u0004Displays a sequential description in time series.":["時系列で順を追った説明を表示します。"],"block description\u0004This is a heading that allows you to set text size, subtext, icon, and margin.":["文字サイズ,サブテキスト,アイコン,余白が設定できる見出しです。"],"block description\u0004Display the Font Awesome icons horizontally.":["Font Awesome のアイコンフォントを横並びに表示します"],"block description\u0004Display icons with Font Awesome.":["Font Awesome のアイコンフォントを表示します"],"block description\u0004Displays the body content of the specified parent page.":["指定した基準ページの本文内容を表示します。"],"block description\u0004This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.":["画像やアイコンを配置できるPRブロックです。 ただし、現在、列ブロックとアイコンブロックを組み合わせて同じレイアウトを作成できるため、このブロックはお勧めしません。 ブロックパターンの「カラム(Column)」のカテゴリを確認してください。"],"block description\u0004This is PR content where you can place images, headlines, text, and buttons.":["画像,見出し,テキスト,ボタンが配置できるPRコンテンツです。"],"block description\u0004This is one item in the slider.":["スライダー内の1つのアイテムです。"],"block description\u0004This slider allows you to place various items.Slider is do not move in edit screen.":["様々なアイテムを配置できるスライダーです。編集画面では動かないので公開画面でプレビューしてください。"],"block description\u0004Use responsive spacers to get the margins right.":["レスポンシブに対応したスペーサーで余白を適切に取ります。"],"block description\u0004Used for staff introduction, company introduction, school introduction, menu, etc.":["スタッフ紹介,会社紹介,スクール紹介,メニューなどで利用します。"],"block description\u0004This is the content area where you can add blocks freely.":["コンテンツが長い時にコンテンツを折りたたんで隠して表示します。"],"block description\u0004This is the title area where you can freely add blocks.":["自由にブロックを追加できるタイトルエリアです。"],"block description\u0004Collapses and hides content when the content is long.":["自由にブロックを追加できるコンテンツエリアです。"],"block description\u0004Add animation to elements when scrolling the page.":["ページをスクロールした時に要素に動きを加えます。"],"block description\u0004Displays a list of archives":["アーカイブリストを表示します"],"block description\u0004Shows an excerpt retrieved from a URL.":["URLから取得した抜粋を表示します。"],"block description\u0004Displays the featured image obtained from the URL.":["URLから取得したアイキャッチ画像を表示します。"],"block description\u0004Displays the site logo image obtained from the URL.":["URLから取得したサイトのロゴ画像を表示します。"],"block description\u0004Displays the site title obtained from the URL.":["URLから取得したサイトのタイトルを表示します。"],"block description\u0004Displays the title obtained from the URL.":["URLから取得したタイトルを表示します。"],"block description\u0004Add a block that fetches and displays content from a URL.":["URLからコンテンツを取得して表示するブロックを追加します。"],"block description\u0004Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page.":["ページや投稿カテゴリーなどページ階層のパンくずリストを表示します。このブロックはトップページでは表示されません。"],"block description\u0004Display the VK Button block horizontally.":["VK ボタンブロックを横並びに表示します"],"block description\u0004A single item in a card block.":["アイコンカード内の1つのアイテムです。"],"block description\u0004A card where you can place images, headings, text, and links.":["画像,見出し,テキスト,リンクが配置できるカードです。"],"block description\u0004When a parent page is specified, a list of its child pages will be displayed.":["親となる固定ページを指定するとその子ページの一覧を表示します。"],"block description\u0004Display dynamic text":["動的テキストを表示します"],"block description\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 0cd7684b8..de1f6dce9 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,2 +1,2 @@ <?php -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 (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.'=>'selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。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'=>'','4:3'=>'','3:2'=>'','9:16'=>'','3:4'=>'','2:3'=>'','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','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'=>'ボタンギャップサイズ','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','Select image'=>'画像を選択','Delete Image'=>'画像を削除','URL'=>'URL','https://example.com'=>'https://example.com','Display item'=>'表示要素','Excerpt Text'=>'抜粋','Warning! When you hidden this item, you will lose the content.'=>'注意!この項目を非表示にすると入力されていた内容は失われます。','Image'=>'画像','Button'=>'ボタン','Button option'=>'ボタンオプション','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。','Button text'=>'ボタンの文字','Image Height'=>'画像高さ','Slide Height for each device.'=>'デバイス毎の高さ','There are no applicable child pages.'=>'該当する子ページがありません。','Check your settings from the settings sidebar.'=>'設定サイドバーから設定を確認してください。','Display conditions'=>'表示条件','Parent'=>'親ページ','Ignore this post'=>'この投稿を除く','Current page'=>'現在のページ','Please select display element from the Setting sidebar.'=>'設定サイドバーから表示要素を選択してください。','Post Type Name'=>'投稿タイプ名','Ancestor Page Title'=>'先祖ページのタイトル','Parent Page Title'=>'親ページのタイトル','Custom field'=>'カスタムフィールド','This block is not rendered because no custom field name is specified.'=>'カスタムフィールド名が指定されていないため、このブロックは表示されません。','Display element settings'=>'表示要素の設定','Display element'=>'表示要素','Please Select'=>'選択してください','Post type name of the page being viewed'=>'表示中のページの投稿タイプ名','Page name in the ancestor hierarchy of the displayed page'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','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','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position from the top'=>'上部からの固定位置','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','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'=>'スクロールしたら表示','Fixed position'=>'固定位置','Top'=>'上 ','Color Settings'=>'色設定','Margin setting inside the item'=>'アイテム内の余白設定','Padding (Top)'=>'余白 (上)','Padding (Left and Right)'=>'余白 (左右)','Padding (Bottom)'=>'余白 (下)','px'=>'px','em'=>'em','rem'=>'rem','vw'=>'vw','Grid column item link'=>'グリッドカラムアイテムリンク','Layout Columns'=>'カラムレイアウト','Column Margin Bottom Setting'=>'カラム下部余白設定','Margin Bottom'=>'下部の余白','You can create a variety of layouts with grid column card blocks.'=>'グリッドカラムカードブロックでは柔軟なレイアウトが可能です。','Unlink'=>'リンクを解除する','Input Link URL'=>'リンクURL','Submit'=>'送信','Edit mode'=>'編集モード','All columns'=>'すべてのカラム','This column only'=>'このカラムのみ','Edit Lock'=>'編集ロック','Lock edits this block from the parent and other Grid Column Item block'=>'このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにする','Column Setting'=>'カラム設定','Link URL:'=>'リンク URL:','If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.'=>'リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキストやボタン)を配置しないでください。 正しく表示されない場合があります。','Make sure that no link is specified for the image block, etc.'=>'画像ブロックなどにもリンクが指定されていないか注意してください。','Image fit to column'=>'画像とカラム内の余白をなくす','Column footer button area'=>'カラムフッターボタンエリア','Display'=>'表示','Hide'=>'非表示','Column Radius'=>'カラムの角丸の大きさ','Border'=>'枠線','Border 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'=>'全カラム一括指定','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'','svh'=>'','lvh'=>'','dvh'=>'','Outer link'=>'Outerリンク','Background Setting'=>'背景設定','Color Setting'=>'色設定','Color will overcome background image. If you want to display image, set opacity 0.'=>'色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。','Opacity Setting'=>'透過設定','Background Image PC'=>'背景画像 ( PC )','Background Image Tablet'=>'背景画像 ( タブレット )','Background Image Mobile'=>'背景画像 ( モバイル )','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','Fit to the Content area'=>'コンテンツエリアに合わせる','Add padding to the Outer area'=>'アウターエリア内に余白を追加する','Remove padding from the Outer area'=>'アウターエリア内の余白を無くす','Padding (Top and Bottom)'=>'余白 (上下)','Use default padding'=>'標準の余白を使用','Do not use default padding'=>'標準の余白を使用しない','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。','Divider Setting'=>'区切りの設定','Type'=>'タイプ','Tilt'=>'傾斜','Curve'=>'カーブ','Wave'=>'波状','Triangle'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Lower Divider Level'=>'下部区切りレベル','Border Setting'=>'枠線の設定','Border will disappear when divider effect is applied.'=>'枠線は区切りレベルを適用すると表示されなくなります。','Border type'=>'枠線の種類','None'=>'なし','Solid'=>'直線','Dotted'=>'点線','Dashed'=>'Dashed','Double'=>'二重線','Groove'=>'Groove','Ridge'=>'Ridge','Inset'=>'Inset','Outset'=>'Outset','Border width'=>'枠線の幅','Border radius'=>'枠線のRの大きさ','Container Inner Side Space Setting'=>'コンテナ内側のスペース設定','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','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 Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Default'=>'標準','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','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'=>'目次','Note on duplicating headings'=>'見出し複製時の注意','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','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:'=>'ボタンの位置:','Center'=>'中央','Wide'=>'幅広','Block'=>'ブロック','Button Width:'=>'ボタンの幅:','25%'=>'25%','50%'=>'50%','75%'=>'75%','Button Style:'=>'ボタンスタイル:','Text only'=>'テキストのみ','If you select "No background", that you need to select a Custom Color.'=>'もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。','Button Effect:'=>'ボタン エフェクト','Shine'=>'光る','Default Color (Bootstrap)'=>'標準色 (Bootstrap)','Primary'=>'Primary','Secondary'=>'Secondary','Light'=>'Light','Dark'=>'Dark','Custom Color'=>'カスタムカラー','Button Color'=>'ボタンカラー','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。','Before text'=>'文字の前','After text'=>'文字の後','Size'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','Input text'=>'文字を入力','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます','You can be collapsing this block at VK Blocks Pro'=>'Pro版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','Use common settings'=>'共通設定を使用','* You can change each common accordion settings from Setting > VK Blocks.'=>'* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。','Display of arrow'=>'矢印の表示','Arrow display'=>'矢印を表示する','Arrow hidden'=>'矢印を表示しない','Input title'=>'タイトルを入力','Input content'=>'説明を入力','Input title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','Margin between Heading and sub text (rem)'=>'見出しとサブテキストの余白サイズ(rem)','Margin bottom size of after this block (rem)'=>'このブロック全体の下部の余白 (rem)','Heading Settings'=>'見出し設定','Icon Color'=>'アイコンの色','Sub Text Settings'=>'サブテキスト設定','Text size (rem)'=>'文字サイズ (rem)','Change heading level'=>'見出しレベルの変更','Heading %d'=>'見出し %d','Reset'=>'リセット','Icon & Frame'=>'アイコンと枠','Icon only'=>'アイコンのみ','Icon Common Setting'=>'アイコン共通設定','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','This block can display private content. Please note that this content will be public even if you set the original page to private.'=>'このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。','PR Block1 Setting'=>'PR Block1 設定','Icon 1'=>'アイコン 1','When you have an image. Image is displayed with priority'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 1'=>'PR 画像 1','PR Block2 Setting'=>'PR Block2 設定','Icon 2'=>'アイコン 2','PR Image 2'=>'PR 画像 2','PR Block3 Setting'=>'PR Block3 設定','Icon 3'=>'アイコン 3','When you have an image. Image is displayed with priority.'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 3'=>'PR 画像 3','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Bottom on Mobile device'=>'モバイルでは下部に表示','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter integer divisors for the number of placed slide items for each display size.'=>'各表示サイズのスライド アイテムの配置数の整数の約数を入力します。','If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','One by One'=>'1つずつ','Same as the number of items to display'=>'表示アイテム数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','height'=>'height','margin-top'=>'margin-top','margin-bottom'=>'margin-bottom','Space Type'=>'余白タイプ','Custom'=>'カスタム','You can change each common margin size from Setting > VK Blocks'=>'* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。','Height for each device.'=>'デバイス毎の高さ','Spacer Settings'=>'余白の設定','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Display type and columns'=>'表示タイプとカラム','Column ( Screen size : Extra large )'=>'カラム ( 画面サイズ : Extra large )','Column ( Screen size : XX large )'=>'カラム ( 画面サイズ : XX Large )','Column ( Screen size : Extra small )'=>'カラム ( 画面サイズ : Extra small )','Column ( Screen size : Small )'=>'カラム ( 画面サイズ : Small )','Column ( Screen size : Medium )'=>'カラム ( 画面サイズ : Medium )','Column ( Screen size : Large )'=>'カラム ( 画面サイズ : Large )','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'=>'現在のページ','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Output Before Text Icon'=>'文字の前にアイコンを表示','Output After Text Icon'=>'文字の後にアイコンを表示','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. <Link>Learn more about inserters</Link>.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。','Hidden Settings'=>'非表示設定','Hidden at screen size'=>'非表示にする画面サイズ','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。','Hidden ( Screen size : all )'=>'非表示 ( 画面サイズ : all )','Hidden ( Screen size : xs )'=>'非表示 ( 画面サイズ : xs )','Hidden ( Screen size : sm )'=>'非表示 ( 画面サイズ : sm )','Hidden ( Screen size : md )'=>'非表示 ( 画面サイズ : md )','Hidden ( Screen size : lg )'=>'非表示 ( 画面サイズ : lg )','Hidden ( Screen size : xl )'=>'非表示 ( 画面サイズ : xl )','Hidden ( Screen size : xxl )'=>'非表示 ( 画面サイズ : xxl )','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。','Highlighter'=>'蛍光マーカー','Inline Font Size'=>'インライン文字サイズ','Inline font size'=>'インライン文字サイズ','Apply'=>'適用','Big'=>'大','Extra big'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Responsive BR '=>'画面サイズ毎の改行 ','Column link'=>'カラム設定','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'リンクに変換','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールできます','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','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.<br>Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %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 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'=>'投稿リスト','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','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;','language'=>'ja','project-id-version'=>'VK Blocks Pro','pot-creation-date'=>'2024-10-04T02:09:25+00:00','po-revision-date'=>'','x-generator'=>'Poedit 3.5','messages'=>['Added balloon image setting'=>'吹き出し画像設定を追加','Balloon Image Setting'=>'吹き出し画像設定','Would you like to delete %s?'=>'%sを削除しますか?','Cancel'=>'キャンセル','Delete'=>'削除','Select'=>'選択','Balloon Image Name'=>'吹き出し画像の名前','Balloon Setting'=>'吹き出しブロック設定','Balloon Border Width Setting'=>'吹き出しの線幅の設定','1px'=>'1px','2px'=>'2px','3px'=>'3px','4px'=>'4px','You can register frequently used icon images for speech bubble blocks.'=>'よく使う吹き出し用のアイコン画像を登録する事ができます。','image'=>'画像','Block Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','Block Style Label (Changeable)'=>'ブロックスタイル ラベル(変更可能)','Add'=>'追加','Add Custom Block Style'=>'ブロックスタイルを追加','Target Block (Required/Unchangeable)'=>'対象のブロック (必須/変更不可)','Set the target block.'=>'対象のブロックを設定してください。','Search for a block'=>'ブロックの検索','Please enter a string'=>'文字列を入力してください','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です','Class name is required'=>'クラス名は必須項目です','Already registered'=>'すでに登録されています','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)','This will be the CSS class name following is-style-.'=>'is-style-に続くCSSクラス名になります。','(e.g.) %s-block-style'=>'(例) %s-block-style','Custom Block Style Setting'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','Target block'=>'対象のブロック','CSS class'=>'CSSクラス','If selector is specified, it will be replaced with CSS class (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.'=>'selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。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'=>'四角','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'=>'ボタンギャップサイズ','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','Select image'=>'画像を選択','Delete Image'=>'画像を削除','URL'=>'URL','https://example.com'=>'https://example.com','Display item'=>'表示要素','Excerpt Text'=>'抜粋','Warning! When you hidden this item, you will lose the content.'=>'注意!この項目を非表示にすると入力されていた内容は失われます。','Image'=>'画像','Button'=>'ボタン','Button option'=>'ボタンオプション','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。','Button text'=>'ボタンの文字','Image Height'=>'画像高さ','Slide Height for each device.'=>'デバイス毎の高さ','There are no applicable child pages.'=>'該当する子ページがありません。','Check your settings from the settings sidebar.'=>'設定サイドバーから設定を確認してください。','Display conditions'=>'表示条件','Parent'=>'親ページ','Ignore this post'=>'この投稿を除く','Current page'=>'現在のページ','Please select display element from the Setting sidebar.'=>'設定サイドバーから表示要素を選択してください。','Post Type Name'=>'投稿タイプ名','Ancestor Page Title'=>'先祖ページのタイトル','Parent Page Title'=>'親ページのタイトル','Custom field'=>'カスタムフィールド','This block is not rendered because no custom field name is specified.'=>'カスタムフィールド名が指定されていないため、このブロックは表示されません。','Display element settings'=>'表示要素の設定','Display element'=>'表示要素','Please Select'=>'選択してください','Post type name of the page being viewed'=>'表示中のページの投稿タイプ名','Page name in the ancestor hierarchy of the displayed page'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','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','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','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'=>'スクロールしたら表示','Fixed position'=>'固定位置','Color Settings'=>'色設定','Margin setting inside the item'=>'アイテム内の余白設定','Padding (Top)'=>'余白 (上)','Padding (Left and Right)'=>'余白 (左右)','Padding (Bottom)'=>'余白 (下)','px'=>'px','em'=>'em','rem'=>'rem','vw'=>'vw','Grid column item link'=>'グリッドカラムアイテムリンク','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'=>'全カラム一括指定','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','Outer link'=>'Outerリンク','Background Setting'=>'背景設定','Color Setting'=>'色設定','Color will overcome background image. If you want to display image, set opacity 0.'=>'色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。','Opacity Setting'=>'透過設定','Background Image PC'=>'背景画像 ( PC )','Background Image Tablet'=>'背景画像 ( タブレット )','Background Image Mobile'=>'背景画像 ( モバイル )','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','Fit to the Content area'=>'コンテンツエリアに合わせる','Add padding to the Outer area'=>'アウターエリア内に余白を追加する','Remove padding from the Outer area'=>'アウターエリア内の余白を無くす','Padding (Top and Bottom)'=>'余白 (上下)','Use default padding'=>'標準の余白を使用','Do not use default padding'=>'標準の余白を使用しない','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。','Divider Setting'=>'区切りの設定','Type'=>'タイプ','Tilt'=>'傾斜','Curve'=>'カーブ','Wave'=>'波状','Triangle'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Lower Divider Level'=>'下部区切りレベル','Border Setting'=>'枠線の設定','Border will disappear when divider effect is applied.'=>'枠線は区切りレベルを適用すると表示されなくなります。','Border type'=>'枠線の種類','None'=>'なし','Solid'=>'直線','Dotted'=>'点線','Dashed'=>'Dashed','Double'=>'二重線','Groove'=>'Groove','Ridge'=>'Ridge','Inset'=>'Inset','Outset'=>'Outset','Border width'=>'枠線の幅','Border radius'=>'枠線のRの大きさ','Container Inner Side Space Setting'=>'コンテナ内側のスペース設定','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','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 Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Default'=>'標準','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','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'=>'目次','Note on duplicating headings'=>'見出し複製時の注意','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','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:'=>'ボタンの位置:','Center'=>'中央','Wide'=>'幅広','Block'=>'ブロック','Button Width:'=>'ボタンの幅:','25%'=>'25%','50%'=>'50%','75%'=>'75%','Button Style:'=>'ボタンスタイル:','Text only'=>'テキストのみ','If you select "No background", that you need to select a Custom Color.'=>'もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。','Button Effect:'=>'ボタン エフェクト','Shine'=>'光る','Default Color (Bootstrap)'=>'標準色 (Bootstrap)','Primary'=>'Primary','Secondary'=>'Secondary','Light'=>'Light','Dark'=>'Dark','Custom Color'=>'カスタムカラー','Button Color'=>'ボタンカラー','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。','Before text'=>'文字の前','After text'=>'文字の後','Size'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','Input text'=>'文字を入力','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます','You can be collapsing this block at VK Blocks Pro'=>'Pro版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','Use common settings'=>'共通設定を使用','* You can change each common accordion settings from Setting > VK Blocks.'=>'* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。','Display of arrow'=>'矢印の表示','Arrow display'=>'矢印を表示する','Arrow hidden'=>'矢印を表示しない','Input title'=>'タイトルを入力','Input content'=>'説明を入力','Input title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','Margin between Heading and sub text (rem)'=>'見出しとサブテキストの余白サイズ(rem)','Margin bottom size of after this block (rem)'=>'このブロック全体の下部の余白 (rem)','Heading Settings'=>'見出し設定','Icon Color'=>'アイコンの色','Sub Text Settings'=>'サブテキスト設定','Text size (rem)'=>'文字サイズ (rem)','Change heading level'=>'見出しレベルの変更','Heading %d'=>'見出し %d','Reset'=>'リセット','Icon & Frame'=>'アイコンと枠','Icon only'=>'アイコンのみ','Icon Common Setting'=>'アイコン共通設定','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','This block can display private content. Please note that this content will be public even if you set the original page to private.'=>'このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。','PR Block1 Setting'=>'PR Block1 設定','Icon 1'=>'アイコン 1','When you have an image. Image is displayed with priority'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 1'=>'PR 画像 1','PR Block2 Setting'=>'PR Block2 設定','Icon 2'=>'アイコン 2','PR Image 2'=>'PR 画像 2','PR Block3 Setting'=>'PR Block3 設定','Icon 3'=>'アイコン 3','When you have an image. Image is displayed with priority.'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 3'=>'PR 画像 3','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Bottom on Mobile device'=>'モバイルでは下部に表示','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter integer divisors for the number of placed slide items for each display size.'=>'各表示サイズのスライド アイテムの配置数の整数の約数を入力します。','If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','One by One'=>'1つずつ','Same as the number of items to display'=>'表示アイテム数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','height'=>'height','margin-top'=>'margin-top','margin-bottom'=>'margin-bottom','Space Type'=>'余白タイプ','Custom'=>'カスタム','You can change each common margin size from Setting > VK Blocks'=>'* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。','Height for each device.'=>'デバイス毎の高さ','Spacer Settings'=>'余白の設定','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Display type and columns'=>'表示タイプとカラム','Column ( Screen size : Extra large )'=>'カラム ( 画面サイズ : Extra large )','Column ( Screen size : XX large )'=>'カラム ( 画面サイズ : XX Large )','Column ( Screen size : Extra small )'=>'カラム ( 画面サイズ : Extra small )','Column ( Screen size : Small )'=>'カラム ( 画面サイズ : Small )','Column ( Screen size : Medium )'=>'カラム ( 画面サイズ : Medium )','Column ( Screen size : Large )'=>'カラム ( 画面サイズ : Large )','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'=>'現在のページ','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Show Scroll Message'=>'スクロールしたら表示','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','Inserter'=>'インサーター','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。','Hidden Settings'=>'非表示設定','Hidden at screen size'=>'非表示にする画面サイズ','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。','Hidden ( Screen size : all )'=>'非表示 ( 画面サイズ : all )','Hidden ( Screen size : xs )'=>'非表示 ( 画面サイズ : xs )','Hidden ( Screen size : sm )'=>'非表示 ( 画面サイズ : sm )','Hidden ( Screen size : md )'=>'非表示 ( 画面サイズ : md )','Hidden ( Screen size : lg )'=>'非表示 ( 画面サイズ : lg )','Hidden ( Screen size : xl )'=>'非表示 ( 画面サイズ : xl )','Hidden ( Screen size : xxl )'=>'非表示 ( 画面サイズ : xxl )','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。','Highlighter'=>'蛍光マーカー','Inline Font Size'=>'インライン文字サイズ','Inline font size'=>'インライン文字サイズ','Apply'=>'適用','Big'=>'大','Extra big'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Responsive BR '=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールしたら表示','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','VK Blocks Pro'=>'VK Blocks Pro','https://github.com/vektor-inc/vk-blocks'=>'https://github.com/vektor-inc/vk-blocks','This is a plugin that extends Block Editor.'=>'ブロックエディタを拡張するプラグインです。','Vektor,Inc.'=>'Vektor,Inc.','https://vektor-inc.co.jp'=>'https://vektor-inc.co.jp','We\'ve released VK Blocks Pro!'=>'VK Blocks Pro を公開しました!','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/','See more'=>'続きを見る','Dismiss this notice'=>'通知を無視','Install Required Plugins'=>'必須プラグインのインストール','Install Plugins'=>'プラグインのインストール','Installing Plugin: %s'=>'プラグイン %s をインストール中','Something went wrong with the plugin API.'=>'プラグイン API で問題が発生しました。','This plugin requires the following plugin: %1$s.'=>'このプラグインは下記プラグインを必要としています:%1$s。','This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','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 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'=>'投稿リスト','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。']]; \ No newline at end of file diff --git a/languages/vk-blocks-pro-ja.mo b/languages/vk-blocks-pro-ja.mo index 4bb17daf2ad7073cc409602852fee18cddacd62f..951941a42d6de31c63e910b6bedaf063f2f93826 100644 GIT binary patch delta 22150 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 delta 22098 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 Vj+_!Z@<8m!1-rVH2zZ?C{{bVpx7z>! diff --git a/languages/vk-blocks-pro-ja.po b/languages/vk-blocks-pro-ja.po index abb175a73..c303e7a7b 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: 2024-09-26T00:53:29+00:00\n" +"POT-Creation-Date: 2024-10-04T02:09:25+00:00\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -42,7 +42,7 @@ msgstr "キャンセル" #: src/admin/balloon/delete-button.js:69 src/admin/balloon/index.js:148 #: src/admin/custom-block-style/item/title-area/delete-button/index.js:75 #: src/admin/custom-format/delete-item-button.js:74 -#: src/blocks/_pro/gridcolcard/edit-common.js:160 +#: src/blocks/_pro/gridcolcard/edit-common.js:163 #: src/extensions/common/custom-block-variation/block-variation-list/item/title-area/delete-button/index.js:33 msgid "Delete" msgstr "削除" @@ -321,14 +321,14 @@ msgstr "色" #: src/admin/custom-format/index.js:208 #: src/blocks/_pro/grid-column-item/edit.js:102 -#: src/blocks/_pro/gridcolcard/edit-common.js:166 src/blocks/button/edit.js:749 +#: src/blocks/_pro/gridcolcard/edit-common.js:169 src/blocks/button/edit.js:749 #: src/blocks/heading/edit.js:324 msgid "Text Color" msgstr "文字の色" #: src/admin/custom-format/index.js:239 #: src/blocks/_pro/grid-column-item/edit.js:108 -#: src/blocks/_pro/gridcolcard/edit-common.js:172 +#: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 src/blocks/button/edit.js:732 #: src/blocks/icon/edit.js:304 msgid "Background Color" @@ -992,7 +992,7 @@ msgstr "" #: src/blocks/_pro/card-item/deprecated/0.20.6/component.js:206 #: src/blocks/_pro/card-item/deprecated/0.60.1/component.js:210 #: src/blocks/_pro/card-item/edit.js:182 src/blocks/_pro/card/edit.js:134 -#: src/blocks/_pro/icon-card/edit.js:75 src/blocks/_pro/post-list/edit.js:407 +#: src/blocks/_pro/icon-card/edit.js:75 src/blocks/_pro/post-list/edit.js:442 msgid "Title" msgstr "タイトル" @@ -1099,7 +1099,7 @@ msgstr "該当する子ページがありません。" msgid "Check your settings from the settings sidebar." msgstr "設定サイドバーから設定を確認してください。" -#: src/blocks/_pro/child-page/edit.js:115 src/blocks/_pro/post-list/edit.js:275 +#: src/blocks/_pro/child-page/edit.js:115 src/blocks/_pro/post-list/edit.js:310 msgid "Display conditions" msgstr "表示条件" @@ -1107,7 +1107,7 @@ msgstr "表示条件" msgid "Parent" msgstr "親ページ" -#: src/blocks/_pro/child-page/edit.js:134 src/blocks/_pro/post-list/edit.js:445 +#: src/blocks/_pro/child-page/edit.js:134 src/blocks/_pro/post-list/edit.js:480 msgid "Ignore this post" msgstr "この投稿を除く" @@ -1237,7 +1237,7 @@ msgid "Setting up a link" msgstr "リンクの設定" #: src/blocks/_pro/dynamic-text/edit.js:389 -#: src/blocks/_pro/gridcolcard-item/edit.js:348 +#: src/blocks/_pro/gridcolcard-item/edit.js:346 #: src/blocks/_pro/icon-card-item/edit.js:128 src/blocks/button/edit.js:283 #: src/blocks/icon/edit.js:292 src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 src/components/link-toolbar/index.js:279 @@ -1364,7 +1364,7 @@ msgid "Fixed position" msgstr "固定位置" #: src/blocks/_pro/grid-column-item/edit.js:100 -#: src/blocks/_pro/gridcolcard/edit-common.js:164 +#: src/blocks/_pro/gridcolcard/edit-common.js:167 msgid "Color Settings" msgstr "色設定" @@ -1433,55 +1433,55 @@ msgstr "下部の余白" msgid "You can create a variety of layouts with grid column card blocks." msgstr "グリッドカラムカードブロックでは柔軟なレイアウトが可能です。" -#: src/blocks/_pro/gridcolcard-item/edit.js:244 +#: src/blocks/_pro/gridcolcard-item/edit.js:242 #: src/blocks/_pro/select-post-list-item/edit.js:66 #: src/blocks/button/edit.js:249 src/components/link-toolbar/index.js:238 msgid "Unlink" msgstr "リンクを解除する" -#: src/blocks/_pro/gridcolcard-item/edit.js:245 src/blocks/button/edit.js:250 +#: src/blocks/_pro/gridcolcard-item/edit.js:243 src/blocks/button/edit.js:250 #: src/components/link-toolbar/index.js:239 msgid "Input Link URL" msgstr "リンクURL" -#: src/blocks/_pro/gridcolcard-item/edit.js:275 +#: src/blocks/_pro/gridcolcard-item/edit.js:273 #: src/blocks/_pro/select-post-list-item/edit.js:102 #: src/blocks/button/edit.js:278 src/components/link-toolbar/index.js:273 msgid "Submit" msgstr "送信" -#: src/blocks/_pro/gridcolcard-item/edit.js:299 +#: src/blocks/_pro/gridcolcard-item/edit.js:297 msgid "Edit mode" msgstr "編集モード" -#: src/blocks/_pro/gridcolcard-item/edit.js:309 +#: src/blocks/_pro/gridcolcard-item/edit.js:307 msgid "All columns" msgstr "すべてのカラム" -#: src/blocks/_pro/gridcolcard-item/edit.js:317 +#: src/blocks/_pro/gridcolcard-item/edit.js:315 msgid "This column only" msgstr "このカラムのみ" -#: src/blocks/_pro/gridcolcard-item/edit.js:322 +#: src/blocks/_pro/gridcolcard-item/edit.js:320 msgid "Edit Lock" msgstr "編集ロック" -#: src/blocks/_pro/gridcolcard-item/edit.js:325 +#: src/blocks/_pro/gridcolcard-item/edit.js:323 msgid "Lock edits this block from the parent and other Grid Column Item block" msgstr "" "このブロックをロックして親ブロックや他のブロックの変更を受け取らないようにす" "る" -#: src/blocks/_pro/gridcolcard-item/edit.js:336 +#: src/blocks/_pro/gridcolcard-item/edit.js:334 msgid "Column Setting" msgstr "カラム設定" -#: src/blocks/_pro/gridcolcard-item/edit.js:340 +#: src/blocks/_pro/gridcolcard-item/edit.js:338 #: 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:355 +#: src/blocks/_pro/gridcolcard-item/edit.js:353 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." @@ -1489,44 +1489,48 @@ msgstr "" "リンクURLを設定する場合は、グリッドカラムカードアイテム内にリンク要素(テキス" "トやボタン)を配置しないでください。 正しく表示されない場合があります。" -#: src/blocks/_pro/gridcolcard-item/edit.js:359 +#: src/blocks/_pro/gridcolcard-item/edit.js:357 msgid "Make sure that no link is specified for the image block, etc." msgstr "画像ブロックなどにもリンクが指定されていないか注意してください。" -#: src/blocks/_pro/gridcolcard/edit-common.js:119 +#: src/blocks/_pro/gridcolcard/edit-common.js:109 +msgid "Card header image aspect ratio" +msgstr "カードヘッダー画像 縦横比" + +#: src/blocks/_pro/gridcolcard/edit-common.js:122 msgid "Image fit to column" msgstr "画像とカラム内の余白をなくす" -#: src/blocks/_pro/gridcolcard/edit-common.js:134 +#: src/blocks/_pro/gridcolcard/edit-common.js:137 msgid "Column footer button area" msgstr "カラムフッターボタンエリア" -#: src/blocks/_pro/gridcolcard/edit-common.js:144 +#: src/blocks/_pro/gridcolcard/edit-common.js:147 #: src/blocks/heading/edit.js:372 msgid "Display" msgstr "表示" -#: src/blocks/_pro/gridcolcard/edit-common.js:152 +#: src/blocks/_pro/gridcolcard/edit-common.js:155 #: src/blocks/heading/edit.js:376 src/blocks/slider/edit.js:1133 msgid "Hide" msgstr "非表示" -#: src/blocks/_pro/gridcolcard/edit-common.js:183 +#: src/blocks/_pro/gridcolcard/edit-common.js:186 msgid "Column Radius" msgstr "カラムの角丸の大きさ" -#: src/blocks/_pro/gridcolcard/edit-common.js:189 +#: src/blocks/_pro/gridcolcard/edit-common.js:192 #: src/blocks/balloon/edit.js:310 #: inc/vk-blocks/class-vk-blocks-global-settings.php:384 #: inc/vk-blocks/class-vk-blocks-global-settings.php:402 msgid "Border" msgstr "枠線" -#: src/blocks/_pro/gridcolcard/edit-common.js:198 +#: src/blocks/_pro/gridcolcard/edit-common.js:201 msgid "Border Width" msgstr "線の幅" -#: src/blocks/_pro/gridcolcard/edit-common.js:209 +#: src/blocks/_pro/gridcolcard/edit-common.js:212 #: src/blocks/border-box/edit.js:239 src/extensions/core/group/style.js:99 msgid "Border Color" msgstr "線の色" @@ -1604,7 +1608,7 @@ msgstr "アイコンカード設定" #: src/blocks/_pro/step-item/edit.js:82 src/blocks/alert/edit.js:73 #: src/blocks/border-box/edit.js:272 src/blocks/button/edit.js:760 #: src/blocks/heading/edit.js:335 src/blocks/icon/edit.js:276 -#: src/blocks/pr-content/edit.js:212 +#: src/blocks/pr-content/edit.js:212 src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:167 #: src/utils/font-awesome-new.js:189 @@ -1893,51 +1897,51 @@ msgstr "自動" msgid "Filter by %s" msgstr "%sで絞り込み" -#: src/blocks/_pro/post-list/edit.js:279 +#: src/blocks/_pro/post-list/edit.js:314 msgid "Filter by PostTypes" msgstr "投稿タイプ" -#: src/blocks/_pro/post-list/edit.js:292 +#: src/blocks/_pro/post-list/edit.js:327 msgid "Taxonomy filter condition" msgstr "分類絞り込み条件" -#: src/blocks/_pro/post-list/edit.js:303 +#: src/blocks/_pro/post-list/edit.js:338 msgid "OR ( Whichever apply )" msgstr "OR ( どれか )" -#: src/blocks/_pro/post-list/edit.js:313 +#: src/blocks/_pro/post-list/edit.js:348 msgid "AND ( All apply )" msgstr "AND ( すべて )" -#: src/blocks/_pro/post-list/edit.js:319 +#: src/blocks/_pro/post-list/edit.js:354 msgid "Number of Posts" msgstr "表示件数" -#: src/blocks/_pro/post-list/edit.js:332 +#: src/blocks/_pro/post-list/edit.js:367 msgid "Filter by Date" msgstr "日付で絞り込み" -#: src/blocks/_pro/post-list/edit.js:336 +#: src/blocks/_pro/post-list/edit.js:371 msgid "Period of Time" msgstr "期間" -#: src/blocks/_pro/post-list/edit.js:344 +#: src/blocks/_pro/post-list/edit.js:379 msgid "Whole Period" msgstr "全期間" -#: src/blocks/_pro/post-list/edit.js:348 +#: src/blocks/_pro/post-list/edit.js:383 msgid "From Today" msgstr "今日以降" -#: src/blocks/_pro/post-list/edit.js:352 +#: src/blocks/_pro/post-list/edit.js:387 msgid "From Now" msgstr "現在以降" -#: src/blocks/_pro/post-list/edit.js:356 +#: src/blocks/_pro/post-list/edit.js:391 msgid "From Tomorrow" msgstr "明日以降" -#: src/blocks/_pro/post-list/edit.js:361 +#: src/blocks/_pro/post-list/edit.js:396 msgid "" "* If you choose a future period, you will need to customize it so that " "future posts will be published immediately." @@ -1945,43 +1949,43 @@ msgstr "" "※ 未来の期間を選択する場合は、未来の投稿が即時公開になるように別途カスタマイ" "ズが必要です。" -#: src/blocks/_pro/post-list/edit.js:368 +#: src/blocks/_pro/post-list/edit.js:403 msgid "Order" msgstr "表示順" -#: src/blocks/_pro/post-list/edit.js:377 +#: src/blocks/_pro/post-list/edit.js:412 msgid "ASC" msgstr "昇順" -#: src/blocks/_pro/post-list/edit.js:381 +#: src/blocks/_pro/post-list/edit.js:416 msgid "DESC" msgstr "降順" -#: src/blocks/_pro/post-list/edit.js:387 +#: src/blocks/_pro/post-list/edit.js:422 msgid "Order by" msgstr "表示順" -#: src/blocks/_pro/post-list/edit.js:396 +#: src/blocks/_pro/post-list/edit.js:431 msgid "Published Date" msgstr "公開日" -#: src/blocks/_pro/post-list/edit.js:403 +#: src/blocks/_pro/post-list/edit.js:438 msgid "Modefied Date" msgstr "更新日" -#: src/blocks/_pro/post-list/edit.js:411 +#: src/blocks/_pro/post-list/edit.js:446 msgid "Random" msgstr "ランダム" -#: src/blocks/_pro/post-list/edit.js:417 +#: src/blocks/_pro/post-list/edit.js:452 msgid "offset" msgstr "オフセット数" -#: src/blocks/_pro/post-list/edit.js:433 +#: src/blocks/_pro/post-list/edit.js:468 msgid "Display from the first post always" msgstr "常に最初の投稿から表示する" -#: src/blocks/_pro/post-list/edit.js:439 +#: src/blocks/_pro/post-list/edit.js:474 msgid "Display from the first post even on pages beyond the second page." msgstr "2ページ目以降のページでも、常に最初の投稿から表示する。" @@ -2227,7 +2231,7 @@ msgstr "スタイル設定" msgid "Alert Style" msgstr "アラートスタイル" -#: src/blocks/alert/edit.js:53 src/blocks/alert/variations.js:13 +#: src/blocks/alert/edit.js:53 src/blocks/alert/variations.js:16 #: src/blocks/button/edit.js:692 src/blocks/pr-content/edit.js:171 #: inc/vk-blocks/class-vk-blocks-global-settings.php:476 msgid "Success" @@ -2239,51 +2243,51 @@ msgstr "Success" msgid "Info" msgstr "Info" -#: src/blocks/alert/edit.js:61 src/blocks/alert/variations.js:54 +#: src/blocks/alert/edit.js:61 src/blocks/alert/variations.js:57 #: src/blocks/button/edit.js:700 src/blocks/pr-content/edit.js:179 #: inc/vk-blocks/class-vk-blocks-global-settings.php:480 msgid "Warning" msgstr "Warning" -#: src/blocks/alert/edit.js:65 src/blocks/alert/variations.js:73 +#: src/blocks/alert/edit.js:65 src/blocks/alert/variations.js:76 #: src/blocks/button/edit.js:704 src/blocks/pr-content/edit.js:183 #: inc/vk-blocks/class-vk-blocks-global-settings.php:484 msgid "Danger" msgstr "Danger" -#: src/blocks/alert/variations.js:19 +#: src/blocks/alert/variations.js:10 +msgid "Alert Success" +msgstr "アラート Success" + +#: src/blocks/alert/variations.js:22 msgid "This is a success alert." msgstr "This is a success alert." -#: src/blocks/alert/variations.js:26 +#: src/blocks/alert/variations.js:29 msgid "Alert Info" msgstr "アラート Info" -#: src/blocks/alert/variations.js:32 +#: src/blocks/alert/variations.js:35 msgid "Information" msgstr "Information" -#: src/blocks/alert/variations.js:38 +#: src/blocks/alert/variations.js:41 msgid "This is a information alert." msgstr "This is a information alert." -#: src/blocks/alert/variations.js:48 +#: src/blocks/alert/variations.js:51 msgid "Alert Warning" msgstr "アラート Warning" -#: src/blocks/alert/variations.js:60 +#: src/blocks/alert/variations.js:63 msgid "This is a warning alert." msgstr "This is a warning alert." -#: src/blocks/alert/variations.js:67 +#: src/blocks/alert/variations.js:70 msgid "Alert Danger" msgstr "アラート Danger" -#: src/blocks/alert/variations.js:7 -msgid "Alert Success" -msgstr "アラート Success" - -#: src/blocks/alert/variations.js:79 +#: src/blocks/alert/variations.js:82 msgid "This is a danger alert." msgstr "This is a danger alert." @@ -2585,12 +2589,12 @@ msgstr "" "は、クリアボタンをクリックしてください。" #: src/blocks/button/edit.js:767 src/blocks/heading/edit.js:339 -#: src/blocks/pr-content/edit.js:219 +#: src/blocks/pr-content/edit.js:219 src/components/scroll-hint/index.js:115 msgid "Before text" msgstr "文字の前" #: src/blocks/button/edit.js:789 src/blocks/heading/edit.js:348 -#: src/blocks/pr-content/edit.js:231 +#: src/blocks/pr-content/edit.js:231 src/components/scroll-hint/index.js:137 msgid "After text" msgstr "文字の後" @@ -3293,6 +3297,24 @@ msgstr "リンクをコピー: %s" msgid "Copy link" msgstr "リンクをコピー" +#: src/components/scroll-hint/index.js:109 +msgid "Output Before Text Icon" +msgstr "" + +#: src/components/scroll-hint/index.js:131 +msgid "Output After Text Icon" +msgstr "" + +#: src/components/scroll-hint/index.js:91 +#, fuzzy +#| msgid "Show on Scroll" +msgid "Show Scroll Message" +msgstr "スクロールしたら表示" + +#: src/components/scroll-hint/index.js:98 +msgid "Scroll Message Text" +msgstr "" + #: src/extensions/common/custom-block-variation/block-variation-explorer/sidebar.js:17 msgid "Create" msgstr "作成" @@ -3630,37 +3652,36 @@ msgstr "グループリンク" msgid "List Icon Color" msgstr "リストアイコンの色" -#: src/extensions/core/table/style.js:106 +#: src/extensions/core/table/style.js:221 +msgid "Table Horizontal Scroll" +msgstr "テーブルの水平方向スクロール" + +#: src/extensions/core/table/style.js:229 +msgid "Scrollable" +msgstr "スクロール" + +#: src/extensions/core/table/style.js:236 msgid "Horizontal Scroll Breakpoint" msgstr "水平スクロールのブレイクポイント" -#: src/extensions/core/table/style.js:113 +#: src/extensions/core/table/style.js:243 msgid "Mobile size" msgstr "モバイル" -#: src/extensions/core/table/style.js:120 +#: src/extensions/core/table/style.js:250 msgid "Tablet size" msgstr "タブレット" -#: src/extensions/core/table/style.js:127 +#: src/extensions/core/table/style.js:257 msgid "PC size" msgstr "PC" -#: src/extensions/core/table/style.js:137 -msgid "" -"Table cells are no longer fixed width when horizontal scroll breakpoint is " -"reached." -msgstr "" -"水平スクロールのブレークポイントに達すると、テーブルセルの幅が固定されなくな" -"ります。" - -#: src/extensions/core/table/style.js:91 -msgid "Table Horizontal Scroll" -msgstr "テーブルの水平方向スクロール" - -#: src/extensions/core/table/style.js:99 -msgid "Scrollable" -msgstr "スクロール" +#: src/extensions/core/table/style.js:41 +#: inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 +#, fuzzy +#| msgid "Show on Scroll" +msgid "You can scroll" +msgstr "スクロールしたら表示" #: src/utils/example-data.js:14 msgid "Theoretical Physicist" @@ -4982,6 +5003,13 @@ msgid "" "explaining the order." msgstr "順番を説明する時に便利でシンプルなスケジュールなどを表示します。" +#~ msgid "" +#~ "Table cells are no longer fixed width when horizontal scroll breakpoint " +#~ "is reached." +#~ msgstr "" +#~ "水平スクロールのブレークポイントに達すると、テーブルセルの幅が固定されなく" +#~ "なります。" + #~ msgid "Full Wide" #~ msgstr "全幅" diff --git a/languages/vk-blocks-pro-js.pot b/languages/vk-blocks-pro-js.pot index d1bbcdaf4..5c2bac490 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -34,7 +34,7 @@ msgstr "" #: src/admin/balloon/index.js:148 #: src/admin/custom-block-style/item/title-area/delete-button/index.js:75 #: src/admin/custom-format/delete-item-button.js:74 -#: src/blocks/_pro/gridcolcard/edit-common.js:160 +#: src/blocks/_pro/gridcolcard/edit-common.js:163 #: src/extensions/common/custom-block-variation/block-variation-list/item/title-area/delete-button/index.js:33 msgid "Delete" msgstr "" @@ -312,7 +312,7 @@ msgstr "" #: src/admin/custom-format/index.js:208 #: src/blocks/_pro/grid-column-item/edit.js:102 -#: src/blocks/_pro/gridcolcard/edit-common.js:166 +#: src/blocks/_pro/gridcolcard/edit-common.js:169 #: src/blocks/button/edit.js:749 #: src/blocks/heading/edit.js:324 msgid "Text Color" @@ -320,7 +320,7 @@ msgstr "" #: src/admin/custom-format/index.js:239 #: src/blocks/_pro/grid-column-item/edit.js:108 -#: src/blocks/_pro/gridcolcard/edit-common.js:172 +#: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 #: src/blocks/button/edit.js:732 #: src/blocks/icon/edit.js:304 @@ -1002,7 +1002,7 @@ msgstr "" #: src/blocks/_pro/card-item/edit.js:182 #: src/blocks/_pro/card/edit.js:134 #: src/blocks/_pro/icon-card/edit.js:75 -#: src/blocks/_pro/post-list/edit.js:407 +#: src/blocks/_pro/post-list/edit.js:442 msgid "Title" msgstr "" @@ -1111,7 +1111,7 @@ msgid "Check your settings from the settings sidebar." msgstr "" #: src/blocks/_pro/child-page/edit.js:115 -#: src/blocks/_pro/post-list/edit.js:275 +#: src/blocks/_pro/post-list/edit.js:310 msgid "Display conditions" msgstr "" @@ -1120,7 +1120,7 @@ msgid "Parent" msgstr "" #: src/blocks/_pro/child-page/edit.js:134 -#: src/blocks/_pro/post-list/edit.js:445 +#: src/blocks/_pro/post-list/edit.js:480 msgid "Ignore this post" msgstr "" @@ -1247,7 +1247,7 @@ msgid "Setting up a link" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:389 -#: src/blocks/_pro/gridcolcard-item/edit.js:348 +#: src/blocks/_pro/gridcolcard-item/edit.js:346 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:283 #: src/blocks/icon/edit.js:292 @@ -1379,7 +1379,7 @@ msgid "Fixed position" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:100 -#: src/blocks/_pro/gridcolcard/edit-common.js:164 +#: src/blocks/_pro/gridcolcard/edit-common.js:167 msgid "Color Settings" msgstr "" @@ -1456,99 +1456,103 @@ msgstr "" msgid "You can create a variety of layouts with grid column card blocks." msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:244 +#: src/blocks/_pro/gridcolcard-item/edit.js:242 #: src/blocks/_pro/select-post-list-item/edit.js:66 #: src/blocks/button/edit.js:249 #: src/components/link-toolbar/index.js:238 msgid "Unlink" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:245 +#: src/blocks/_pro/gridcolcard-item/edit.js:243 #: src/blocks/button/edit.js:250 #: src/components/link-toolbar/index.js:239 msgid "Input Link URL" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:275 +#: src/blocks/_pro/gridcolcard-item/edit.js:273 #: src/blocks/_pro/select-post-list-item/edit.js:102 #: src/blocks/button/edit.js:278 #: src/components/link-toolbar/index.js:273 msgid "Submit" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:299 +#: src/blocks/_pro/gridcolcard-item/edit.js:297 msgid "Edit mode" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:309 +#: src/blocks/_pro/gridcolcard-item/edit.js:307 msgid "All columns" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:317 +#: src/blocks/_pro/gridcolcard-item/edit.js:315 msgid "This column only" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:322 +#: src/blocks/_pro/gridcolcard-item/edit.js:320 msgid "Edit Lock" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:325 +#: src/blocks/_pro/gridcolcard-item/edit.js:323 msgid "Lock edits this block from the parent and other Grid Column Item block" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:336 +#: src/blocks/_pro/gridcolcard-item/edit.js:334 msgid "Column Setting" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:340 +#: src/blocks/_pro/gridcolcard-item/edit.js:338 #: src/blocks/_pro/icon-card-item/edit.js:120 #: src/blocks/pr-blocks/edit.js:254 msgid "Link URL:" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:355 +#: src/blocks/_pro/gridcolcard-item/edit.js:353 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." msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:359 +#: src/blocks/_pro/gridcolcard-item/edit.js:357 msgid "Make sure that no link is specified for the image block, etc." msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:119 +#: src/blocks/_pro/gridcolcard/edit-common.js:109 +msgid "Card header image aspect ratio" +msgstr "" + +#: src/blocks/_pro/gridcolcard/edit-common.js:122 msgid "Image fit to column" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:134 +#: src/blocks/_pro/gridcolcard/edit-common.js:137 msgid "Column footer button area" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:144 +#: src/blocks/_pro/gridcolcard/edit-common.js:147 #: src/blocks/heading/edit.js:372 msgid "Display" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:152 +#: src/blocks/_pro/gridcolcard/edit-common.js:155 #: src/blocks/heading/edit.js:376 #: src/blocks/slider/edit.js:1133 msgid "Hide" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:183 +#: src/blocks/_pro/gridcolcard/edit-common.js:186 msgid "Column Radius" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:189 +#: src/blocks/_pro/gridcolcard/edit-common.js:192 #: src/blocks/balloon/edit.js:310 msgid "Border" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:198 +#: src/blocks/_pro/gridcolcard/edit-common.js:201 msgid "Border Width" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:209 +#: src/blocks/_pro/gridcolcard/edit-common.js:212 #: src/blocks/border-box/edit.js:239 #: src/extensions/core/group/style.js:99 msgid "Border Color" @@ -1631,6 +1635,7 @@ msgstr "" #: src/blocks/heading/edit.js:335 #: src/blocks/icon/edit.js:276 #: src/blocks/pr-content/edit.js:212 +#: src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:167 #: src/utils/font-awesome-new.js:189 @@ -1933,93 +1938,93 @@ msgstr "" msgid "Filter by %s" msgstr "" -#: src/blocks/_pro/post-list/edit.js:279 +#: src/blocks/_pro/post-list/edit.js:314 msgid "Filter by PostTypes" msgstr "" -#: src/blocks/_pro/post-list/edit.js:292 +#: src/blocks/_pro/post-list/edit.js:327 msgid "Taxonomy filter condition" msgstr "" -#: src/blocks/_pro/post-list/edit.js:303 +#: src/blocks/_pro/post-list/edit.js:338 msgid "OR ( Whichever apply )" msgstr "" -#: src/blocks/_pro/post-list/edit.js:313 +#: src/blocks/_pro/post-list/edit.js:348 msgid "AND ( All apply )" msgstr "" -#: src/blocks/_pro/post-list/edit.js:319 +#: src/blocks/_pro/post-list/edit.js:354 msgid "Number of Posts" msgstr "" -#: src/blocks/_pro/post-list/edit.js:332 +#: src/blocks/_pro/post-list/edit.js:367 msgid "Filter by Date" msgstr "" -#: src/blocks/_pro/post-list/edit.js:336 +#: src/blocks/_pro/post-list/edit.js:371 msgid "Period of Time" msgstr "" -#: src/blocks/_pro/post-list/edit.js:344 +#: src/blocks/_pro/post-list/edit.js:379 msgid "Whole Period" msgstr "" -#: src/blocks/_pro/post-list/edit.js:348 +#: src/blocks/_pro/post-list/edit.js:383 msgid "From Today" msgstr "" -#: src/blocks/_pro/post-list/edit.js:352 +#: src/blocks/_pro/post-list/edit.js:387 msgid "From Now" msgstr "" -#: src/blocks/_pro/post-list/edit.js:356 +#: src/blocks/_pro/post-list/edit.js:391 msgid "From Tomorrow" msgstr "" -#: src/blocks/_pro/post-list/edit.js:361 +#: src/blocks/_pro/post-list/edit.js:396 msgid "" "* If you choose a future period, you will need to customize it so that " "future posts will be published immediately." msgstr "" -#: src/blocks/_pro/post-list/edit.js:368 +#: src/blocks/_pro/post-list/edit.js:403 msgid "Order" msgstr "" -#: src/blocks/_pro/post-list/edit.js:377 +#: src/blocks/_pro/post-list/edit.js:412 msgid "ASC" msgstr "" -#: src/blocks/_pro/post-list/edit.js:381 +#: src/blocks/_pro/post-list/edit.js:416 msgid "DESC" msgstr "" -#: src/blocks/_pro/post-list/edit.js:387 +#: src/blocks/_pro/post-list/edit.js:422 msgid "Order by" msgstr "" -#: src/blocks/_pro/post-list/edit.js:396 +#: src/blocks/_pro/post-list/edit.js:431 msgid "Published Date" msgstr "" -#: src/blocks/_pro/post-list/edit.js:403 +#: src/blocks/_pro/post-list/edit.js:438 msgid "Modefied Date" msgstr "" -#: src/blocks/_pro/post-list/edit.js:411 +#: src/blocks/_pro/post-list/edit.js:446 msgid "Random" msgstr "" -#: src/blocks/_pro/post-list/edit.js:417 +#: src/blocks/_pro/post-list/edit.js:452 msgid "offset" msgstr "" -#: src/blocks/_pro/post-list/edit.js:433 +#: src/blocks/_pro/post-list/edit.js:468 msgid "Display from the first post always" msgstr "" -#: src/blocks/_pro/post-list/edit.js:439 +#: src/blocks/_pro/post-list/edit.js:474 msgid "Display from the first post even on pages beyond the second page." msgstr "" @@ -2263,7 +2268,7 @@ msgid "Alert Style" msgstr "" #: src/blocks/alert/edit.js:53 -#: src/blocks/alert/variations.js:13 +#: src/blocks/alert/variations.js:16 #: src/blocks/button/edit.js:692 #: src/blocks/pr-content/edit.js:171 msgid "Success" @@ -2276,52 +2281,52 @@ msgid "Info" msgstr "" #: src/blocks/alert/edit.js:61 -#: src/blocks/alert/variations.js:54 +#: src/blocks/alert/variations.js:57 #: src/blocks/button/edit.js:700 #: src/blocks/pr-content/edit.js:179 msgid "Warning" msgstr "" #: src/blocks/alert/edit.js:65 -#: src/blocks/alert/variations.js:73 +#: src/blocks/alert/variations.js:76 #: src/blocks/button/edit.js:704 #: src/blocks/pr-content/edit.js:183 msgid "Danger" msgstr "" -#: src/blocks/alert/variations.js:19 +#: src/blocks/alert/variations.js:10 +msgid "Alert Success" +msgstr "" + +#: src/blocks/alert/variations.js:22 msgid "This is a success alert." msgstr "" -#: src/blocks/alert/variations.js:26 +#: src/blocks/alert/variations.js:29 msgid "Alert Info" msgstr "" -#: src/blocks/alert/variations.js:32 +#: src/blocks/alert/variations.js:35 msgid "Information" msgstr "" -#: src/blocks/alert/variations.js:38 +#: src/blocks/alert/variations.js:41 msgid "This is a information alert." msgstr "" -#: src/blocks/alert/variations.js:48 +#: src/blocks/alert/variations.js:51 msgid "Alert Warning" msgstr "" -#: src/blocks/alert/variations.js:60 +#: src/blocks/alert/variations.js:63 msgid "This is a warning alert." msgstr "" -#: src/blocks/alert/variations.js:67 +#: src/blocks/alert/variations.js:70 msgid "Alert Danger" msgstr "" -#: src/blocks/alert/variations.js:7 -msgid "Alert Success" -msgstr "" - -#: src/blocks/alert/variations.js:79 +#: src/blocks/alert/variations.js:82 msgid "This is a danger alert." msgstr "" @@ -2625,12 +2630,14 @@ msgstr "" #: src/blocks/button/edit.js:767 #: src/blocks/heading/edit.js:339 #: src/blocks/pr-content/edit.js:219 +#: src/components/scroll-hint/index.js:115 msgid "Before text" msgstr "" #: src/blocks/button/edit.js:789 #: src/blocks/heading/edit.js:348 #: src/blocks/pr-content/edit.js:231 +#: src/components/scroll-hint/index.js:137 msgid "After text" msgstr "" @@ -3335,6 +3342,22 @@ msgstr "" msgid "Copy link" msgstr "" +#: src/components/scroll-hint/index.js:109 +msgid "Output Before Text Icon" +msgstr "" + +#: src/components/scroll-hint/index.js:131 +msgid "Output After Text Icon" +msgstr "" + +#: src/components/scroll-hint/index.js:91 +msgid "Show Scroll Message" +msgstr "" + +#: src/components/scroll-hint/index.js:98 +msgid "Scroll Message Text" +msgstr "" + #: src/extensions/common/custom-block-variation/block-variation-explorer/sidebar.js:17 msgid "Create" msgstr "" @@ -3654,34 +3677,32 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:106 -msgid "Horizontal Scroll Breakpoint" +#: src/extensions/core/table/style.js:221 +msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:113 -msgid "Mobile size" +#: src/extensions/core/table/style.js:229 +msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:120 -msgid "Tablet size" +#: src/extensions/core/table/style.js:236 +msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:127 -msgid "PC size" +#: src/extensions/core/table/style.js:243 +msgid "Mobile size" msgstr "" -#: src/extensions/core/table/style.js:137 -msgid "" -"Table cells are no longer fixed width when horizontal scroll breakpoint is " -"reached." +#: src/extensions/core/table/style.js:250 +msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:91 -msgid "Table Horizontal Scroll" +#: src/extensions/core/table/style.js:257 +msgid "PC size" msgstr "" -#: src/extensions/core/table/style.js:99 -msgid "Scrollable" +#: src/extensions/core/table/style.js:41 +msgid "You can scroll" msgstr "" #: src/utils/example-data.js:14 @@ -3791,4 +3812,4 @@ msgstr "" #: src/blocks/_pro/blog-card/edit/url-placeholder.js:49 msgctxt "button label" msgid "Convert to link" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/languages/vk-blocks-pro.l10n.php b/languages/vk-blocks-pro.l10n.php index 95b531852..357a3af90 100644 --- a/languages/vk-blocks-pro.l10n.php +++ b/languages/vk-blocks-pro.l10n.php @@ -1,6 +1,3 @@ <?php -return ['domain'=>'vk-blocks-pro','plural-forms'=>NULL,'messages'=>['Added balloon image setting'=>'','Balloon Image Setting'=>'','Would you like to delete %s?'=>'','Cancel'=>'','Delete'=>'','Select'=>'','Balloon Image Name'=>'','Balloon Setting'=>'','Balloon Border Width Setting'=>'','1px'=>'','2px'=>'','3px'=>'','4px'=>'','You can register frequently used icon images for speech bubble blocks.'=>'','image'=>'','Block Manager Setting'=>'','Block Style Manager Setting'=>'','Block Style Label (Changeable)'=>'','Add'=>'','Add Custom Block Style'=>'','Target Block (Required/Unchangeable)'=>'','Set the target block.'=>'','Search for a block'=>'','Please enter a string'=>'','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'','Class name is required'=>'','Already registered'=>'','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'','This will be the CSS class name following is-style-.'=>'','(e.g.) %s-block-style'=>'','Custom Block Style Setting'=>'','Block style settings can be registered.'=>'','Target block'=>'','CSS class'=>'','If selector is specified, it will be replaced with CSS class (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.'=>'','Block Style Labels'=>'','※ Required If no title is entered, it will not appear on the toolbar.'=>'','If this Block Style is used for saved content, the style may change.'=>'','Edit'=>'','Custom CSS Setting'=>'','Show Custom CSS flag in editor'=>'','Add Custom Format'=>'','CSS class/unique ID (Required/Unchangeable)'=>'','(e.g.) vk-format-1'=>'','Toolbar title (Changeable)'=>'','Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.'=>'','Custom Format'=>'','If the saved content has this format, the style will be unstyled.'=>'','Format Setting'=>'','Bold'=>'','Italic'=>'','Strikethrough'=>'','Nowrap'=>'','Color'=>'','Text Color'=>'','Background Color'=>'','Highlighter Color'=>'','Activate Highlighter'=>'','Custom CSS'=>'','If selector is specified, it will be replaced by a unique CSS class (<code>.%s</code>); CSS selectors other than selector may affect the entire page.'=>'','Example:'=>'','Custom Format Setting'=>'','You can apply commonly used formatting on the block toolbar.'=>'','Toolbar title'=>'','Preview Text'=>'','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'','License key'=>'','Load Separate Setting'=>'','Note that the order in which CSS/JS are loaded will change.'=>'','Load Separate Option on'=>'','Custom Value'=>'','If you enter a custom value, the values you entered will be used as a priority.'=>'','This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.'=>'','ex)'=>'','Margin'=>'','XS'=>'','S'=>'','M'=>'','L'=>'','XL'=>'','PC'=>'','Tablet'=>'','Mobile'=>'','Common Margin Setting'=>'','Please specify the size of the common margin used for responsive spacers, etc.'=>'','Unit'=>'','FAQ Block Setting'=>'','Disable accordion'=>'','Enable accordion and default open'=>'','Enable accordion and default close'=>'','Save setting'=>'','Save Success'=>' -develop:languages/vk-blocks-pro.po','No background color'=>'','No background color / Border'=>'','Background color'=>'','Background color / Border'=>'','Background color / Rounded '=>'','Background color / Rounded / Border'=>'','Slow'=>'','Fast'=>'','Very Fast'=>'','Animation range'=>'','Short'=>'','Normal'=>'','Long'=>'','Animation only the first view'=>'','Animation Settings'=>'','Animation effect'=>'','Fade In'=>'','Slide Up'=>'','Slide Left'=>'','Slide Right'=>'','Left Right'=>'','Up Down'=>'','Trembling Y'=>'','Trembling X'=>'','Pounding'=>'','Shaking'=>'','Animation speed'=>'','Very Slow'=>'','Archive List Setting'=>'','Post type'=>'','Archive type'=>'','Monthly'=>'','Yearly'=>'','Display as dropdown'=>'','Show post counts'=>'','Button Common Setting'=>'','Button gap size'=>'','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'','Title'=>'','Select image'=>'','Delete Image'=>'','URL'=>'','https://example.com'=>'','Display item'=>'','Excerpt Text'=>'','Warning! When you hidden this item, you will lose the content.'=>'','Image'=>'','Button'=>'','Button option'=>'','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'','Button text'=>'','Image Height'=>'','Slide Height for each device.'=>'','There are no Page.'=>'','Display conditions'=>'','Parent'=>'','Ignore this post'=>'','Current page'=>'','Please select display element from the Setting sidebar.'=>'','Post Type Name'=>'','Ancestor Page Title'=>'','Display element settings'=>'','Display element'=>'','Please Select'=>'','Post type name of the page being viewed'=>'','Page name in the ancestor hierarchy of the displayed page'=>'','Hide on Ancestor Hierarchy Pages'=>'','This block will not display on pages other than pages that have a parent hierarchy.'=>'','HTML element'=>'','div (default)'=>'','h1'=>'','h2'=>'','h3'=>'','h4'=>'','h5'=>'','h6'=>'','p'=>'','span'=>'','Color Settings'=>'','Margin setting inside the item'=>'','Padding (Top)'=>'','Padding (Left and Right)'=>'','Padding (Bottom)'=>'','px'=>'','em'=>'','rem'=>'','vw'=>'','Layout Columns'=>'','Column Margin Bottom Setting'=>'','Margin Bottom'=>'','You can create a variety of layouts with grid column card blocks.'=>'','Unlink'=>'','Input Link URL'=>'','Submit'=>'','Edit mode'=>'','All columns'=>'','This column only'=>'','Edit Lock'=>'','Lock edits this block from the parent and other Grid Column Item block'=>'','Column Setting'=>'','Link URL:'=>'','Open link new tab.'=>'','If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.'=>'','Make sure that no link is specified for the image block, etc.'=>'','Image fit to column'=>'','Column footer button area'=>'','Display'=>'','Hide'=>'','Column Radius'=>'','Border'=>'','Border Color'=>'','Column padding'=>'','Column header media area'=>'','Column Width Setting'=>'','If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.'=>'','Column min width (Mobile)'=>'','Column min width (Tablet / Optional)'=>'','Column min width (PC / Optional)'=>'','Column Gap Setting'=>'','Column gap size'=>'','Column row-gap size (optional)'=>'','Specify all columns at once'=>'','Input Title'=>'','Input Content'=>'','Icon Card Setting'=>'','Icon'=>'','Icon Background:'=>'','Solid color'=>'','No background'=>'','Columns'=>'','Align'=>'','Text'=>'','Background Setting'=>'','Color Setting'=>'','Color will overcome background image. If you want to display image, set opacity 0.'=>'','Opacity Setting'=>'','Background Image PC'=>'','Background Image Tablet'=>'','Background Image Mobile'=>'','Background image Position'=>'','Repeat'=>'','Cover'=>'','Cover fixed (Not fixed on iPhone)'=>'','Parallax (Non-guaranteed)'=>'','Layout Setting'=>'','Width'=>'','Fit to the Content area'=>'','Add padding to the Outer area'=>'','Remove padding from the Outer area'=>'','Padding (Top and Bottom)'=>'','Use default padding'=>'','Do not use default padding'=>'','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'','Divider Setting'=>'','Type'=>'','Tilt'=>'','Curve'=>'','Wave'=>'','Triangle'=>'','Upper Divider Level'=>'','Lower Divider Level'=>'','Border Setting'=>'','Border will disappear when divider effect is applied.'=>'','Border type'=>'','None'=>'','Solid'=>'','Dotted'=>'','Dashed'=>'','Double'=>'','Groove'=>'','Ridge'=>'','Inset'=>'','Outset'=>'','Border width'=>'','Border radius'=>'','Container Inner Side Space Setting'=>'','Unit Type'=>'','Filter by %s'=>'','Filter by PostTypes'=>'','Taxonomy filter condition'=>'','OR ( Whichever apply )'=>'','AND ( All apply )'=>'','Number of Posts'=>'','Filter by Date'=>'','Period of Time'=>'','Whole Period'=>'','From Today'=>'','From Now'=>'','From Tomorrow'=>'','* If you choose a future period, you will need to customize it so that future posts will be published immediately.'=>'','Order'=>'','ASC'=>'','DESC'=>'','Order by'=>'','Published Date'=>'','Modefied Date'=>'','Random'=>'','offset'=>'','Because no post is selected, The block Will not render'=>'','Input Internal Post URL'=>'','Ex,6:00AM'=>'','Style -develop:languages/vk-blocks-pro.po'=>'','Outlined'=>'','Default'=>'','Step Mark'=>'','If Font Awesome tags entered, it will overrides the number.'=>'','First Dot Number'=>'','Tab Color Setting'=>'','Tab Color'=>'','Body Layout Setting'=>'','Padding of Tab Body'=>'','Tab Item'=>'','Tab Label [ %s ]'=>'','Tab size Setting'=>'','Tab Size ( Smart Phone )'=>'','Tab Size ( Tablet )'=>'','Tab Size ( PC )'=>'','Fit to the text'=>'','Monospaced'=>'','Padding Setting Mode'=>'','Separate'=>'','Tab 01'=>'','Bundle'=>'','Tab 02'=>'','Tab'=>'','Normal No Frame'=>'','Line'=>'','Line No Frame'=>'','Table of Contents'=>'','Note on duplicating headings'=>'','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'','Display type'=>'','No frame'=>'','Default Display Status'=>'','OPEN'=>'','CLOSE'=>'','Show only top level categories'=>'','Hide if term has no posts'=>'','Show hierarchy'=>'','This block will not be displayed because no taxonomy is selected.'=>'','This block will not be displayed because this taxonomy has no term.'=>'','Taxonomy Block Option'=>'','Taxonomy'=>'','label'=>'','Style Settings'=>'','Success'=>'','Info'=>'','Warning'=>'','Danger'=>'','Don\'t display inactive grand child pages'=>'','Ancestor Page List Setting'=>'','Display Ancestor Page Title'=>'','Archive title tag'=>'','Ancestor page title class name'=>'','Add link to ancestor page title'=>'','If there is no child page, the block itself is not displayed'=>'',' Image Border'=>'','Add border to image'=>'','* You can change border width on Setting > VK Blocks'=>'','Border color of speech balloon'=>'','Add border to balloon'=>'','Balloon setting'=>'','Position'=>'','Please specify the layout of the balloon.'=>'','Left'=>'','Right'=>'','Please select the type of balloon.'=>'','Speech'=>'','Thinking'=>'','Image Style'=>'','Rounded'=>'','Circle'=>'','100%'=>'','Background color of speech balloon'=>'','Default Icon Setting'=>'','You can register default icons from Settings > VK Blocks in Admin.'=>'','Animation setting'=>'','Please select the type of animation.'=>'','Trembling'=>'','Upload image'=>'','Icon Name'=>'','Please enter a title.'=>'','The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.'=>'','Transparent'=>'','White'=>'','Solid Angle Tab'=>'','Solid Round Tab'=>'','Solid Angle Banner'=>'','Solid Angle Onborder'=>'','Solid Angle Inner'=>'','Solid Angle iconFeature'=>'','Button setting'=>'','Sub Caption'=>'','Button Size:'=>'','Large'=>'','Small'=>'','Button Position:'=>'','Center'=>'','Wide'=>'','Block'=>'','Button Width:'=>'','25%'=>'','50%'=>'','75%'=>'','Button Style:'=>'','Text only'=>'','If you select "No background", that you need to select a Custom Color.'=>'','Button Effect:'=>'','Shine'=>'','Default Color (Bootstrap)'=>'','Primary'=>'','Secondary'=>'','Light'=>'','Dark'=>'','Custom Color'=>'','Button Color'=>'','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'','Before text'=>'','After text'=>'','Size'=>'','Input text'=>'','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'','You can be collapsing this block at VK Blocks Pro'=>'','Accordion Setting'=>'','Please enter a question.'=>'','Bgfill Circle'=>'','Bgfill Square'=>'','Bgfill Rounded'=>'','Border Circle'=>'','Border Square'=>'','Border Rounded'=>'','Display of arrow'=>'','Arrow display'=>'','Arrow hidden'=>'','Input title'=>'','Input content'=>'','Input sub text…'=>'','Input title…'=>'','Heading style'=>'','Plain'=>'','Margin Setting'=>'','Margin between Heading and sub text (rem)'=>'','Margin bottom size of after this block (rem)'=>'','Heading Settings'=>'','Icon Color'=>'','Sub Text Settings'=>'','Text size (rem)'=>'','Change heading level'=>'','Heading %d'=>'','Reset'=>'','Icon & Frame'=>'','Icon only'=>'','Icon Common Setting'=>'','Icon Setting'=>'','Link URL'=>'','Unspecified'=>'','Page Setting'=>'','Select Page'=>'','This block can display private content. Please note that this content will be public even if you set the original page to private.'=>'','PR Block1 Setting'=>'','Icon 1'=>'','When you have an image. Image is displayed with priority'=>'','PR Image 1'=>'','PR Block2 Setting'=>'','Icon 2'=>'','PR Image 2'=>'','PR Block3 Setting'=>'','Icon 3'=>'','When you have an image. Image is displayed with priority.'=>'','PR Image 3'=>'','Input title.'=>'','Input content.'=>'','Select Image'=>'','Button Setting'=>'','Button Text'=>'','Button Type'=>'','Ghost'=>'','Default Color:'=>'','Layout Type'=>'','Title Color'=>'','Content Color'=>'','Image Border Color'=>'','Fit to the Container area'=>'','Add padding to the Slider area'=>'','Remove padding from the Slider area'=>'','Vertical align'=>'','Background Image Size'=>'','cover'=>'','repeat'=>'','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'','The decimal point can be set for the display number only when the display is switched one by one.'=>'','Enter integer divisors for the number of placed slide items for each display size.'=>'','If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.'=>'','Multi-item Display Setting'=>'','Number of Items to display per view'=>'','Enter divisors for the number of placed slide items for each display size.'=>'','If the number is not divisible, the sliding behaviour will be unnatural'=>'','Number of items to change in a transition'=>'','One by One'=>'','Same as the number of items to display'=>'','Centering the active slide'=>'','If you specify the center, you can display items that are cut off on the left and right.'=>'','Full Wide'=>'','Height'=>'','Slider Settings'=>'','Effect '=>'','Slide'=>'','Fade'=>'','Loop '=>'','AutoPlay'=>'','Stop AutoPlay when swipe'=>'','Display Time'=>'','Change Speed'=>'','Pagination Type'=>'','Number of slides'=>'','Navigation Position'=>'','Bottom on Mobile device'=>'','height'=>'','margin-top'=>'','margin-bottom'=>'','Space Type'=>'','Custom'=>'','You can change each common margin size from Setting > VK Blocks'=>'','Height for each device.'=>'','Spacer Settings'=>'','Medium'=>'','Your Name'=>'','Caption'=>'','Role position'=>'','Profile title'=>'','Profile text'=>'','Layout'=>'','Image left'=>'','Image border'=>'','Alt text'=>'','Set the alt text for profile image'=>'','Staff name'=>'','Name caption'=>'','Heading Font'=>'','Font'=>'','minchoBody'=>'','Note : Contains double-byte spaces; CSS may not work.'=>'','There is an error with your CSS structure.'=>'','Card (Image Round)'=>'','Card'=>'','Card (No border)'=>'','Card (Intext)'=>'','Card (Horizontal)'=>'','Media'=>'','Text 1 Column'=>'','Display type and columns'=>'','Column ( Screen size : Extra large )'=>'','Column ( Screen size : XX large )'=>'','Column ( Screen size : Extra small )'=>'','Column ( Screen size : Small )'=>'','Column ( Screen size : Medium )'=>'','Column ( Screen size : Large )'=>'','Button align'=>'','Term\'s name on Image'=>'','Excerpt'=>'','Author'=>'','Date'=>'','New mark'=>'','Taxonomies (all)'=>'','New mark option'=>'','Number of days to display the new post mark'=>'','New post mark'=>'','Link target'=>'','Open in new tab'=>'','Link rel'=>'','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'','Hidden Settings'=>'','Hidden at screen size'=>'','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'','Hidden ( Screen size : all )'=>'','Hidden ( Screen size : xs )'=>'','Hidden ( Screen size : sm )'=>'','Hidden ( Screen size : md )'=>'','Hidden ( Screen size : lg )'=>'','Hidden ( Screen size : xl )'=>'','Hidden ( Screen size : xxl )'=>'','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'','Highlighter'=>'','Inline Font Size'=>'','Inline font size'=>'','Apply'=>'','Big'=>'','Extra big'=>'','Top XL'=>'','Margin the block'=>'','Top L'=>'','Top M'=>'','Top S'=>'','Top XS'=>'','Top 0'=>'','Bottom 0'=>'','Bottom XS'=>'','Bottom S'=>'','Bottom M'=>'','Bottom L'=>'','Bottom XL'=>'','No wrap'=>'','Responsive BR'=>'','Responsive BR '=>'','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'','List Icon Color'=>'','Theoretical Physicist'=>'','Profile'=>'','Albert Einstein'=>'','14 March 1879 – 18 April 1955'=>'','Lorem ipsum dolor'=>'','Lorem ipsum'=>'','Font Awesome icon list'=>'','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'','Ex) '=>'','When you click save button, the window will be reloaded and this setting will be applied.'=>'','Save'=>'','Select Icon'=>'','vh'=>'','svh'=>'','lvh'=>'','dvh'=>'','VK Blocks Pro'=>'','https://github.com/vektor-inc/vk-blocks'=>'','This is a plugin that extends Block Editor.'=>'','Vektor,Inc.'=>'','https://vektor-inc.co.jp'=>'','We\'ve released VK Blocks Pro!'=>'','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'','See more'=>'','Dismiss this notice'=>'','Setting saved.'=>'','Install Required Plugins'=>'','Install Plugins'=>'','Installing Plugin: %s'=>'','Something went wrong with the plugin API.'=>'','This plugin requires the following plugin: %1$s.'=>'' . "\0" . '','This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'' . "\0" . '','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'' . "\0" . '','There is an update available for: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'' . "\0" . '','The following required plugin is currently inactive: %1$s.'=>'' . "\0" . '','The following recommended plugin is currently inactive: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'' . "\0" . '','Begin installing plugin'=>'' . "\0" . '','Begin updating plugin'=>'' . "\0" . '','Begin activating plugin'=>'' . "\0" . '','Return to Required Plugins Installer'=>'','Plugin activated successfully.'=>'','The following plugin was activated successfully:'=>'','No action taken. Plugin %1$s was already active.'=>'','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'','All plugins installed and activated successfully. %1$s'=>'','Please contact the administrator of this site for help.'=>'','Sorry, there is no post'=>'','Vektor WordPress Information'=>'','Enable accordion and default open '=>'','Enable accordion and default close '=>'','FAQ Setting'=>'','If you change image or name that please click Save Changes button.'=>'','Enter a valid Lightning G3 Pro Pack or Lightning Pro license key.'=>'','Load Separete Setting'=>'','Load Separete Option on'=>'','Blocks setting'=>'','label in admin menuBlocks'=>'','Blocks Setting'=>'','License Key'=>'','Balloon Block Setting'=>'','Setting'=>'','Edit this area'=>'','Blocks'=>'','Blocks Layout'=>'','Deprecated Blocks'=>'','Dummy Text'=>'','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'','This message only display on the edit screen.'=>'','Please select year'=>'','Please select month'=>'','Please select taxonomy'=>'','Categories'=>'','All of %s'=>'','Background fill lightgray'=>'','Double border top and bottom black'=>'','Double border bottom black'=>'','Solid border top and bottom black'=>'','Solid border bottom black'=>'','Dotted border bottom black'=>'','Both ends'=>'','Brackets black'=>'','Arrow'=>'','Check'=>'','Check Square'=>'','Check Circle'=>'','Handpoint'=>'','Pencil'=>'','Smile'=>'','Frown'=>'','Numbered Circle'=>'','Numbered Square'=>'','Border Top Bottom'=>'','Border / Stripes'=>'','Rounded02'=>'','Photo frame'=>'','Photo frame Tilt Right'=>'','Photo frame Tilt Left'=>'','Shadow'=>'','Wave01'=>'','Wave02'=>'','Wave03'=>'','Wave04'=>'','Solid Roundcorner'=>'','Stitch'=>'','Post'=>'','There are no %ss.'=>'','Read more'=>'','New!!'=>'','More'=>'','Posts navigation'=>'','Posts'=>'','Page'=>'','Card Noborder'=>'','Card Intext'=>'','Card Horizontal'=>'','post list typeText 1 Column'=>'','CSS Optimize ( Speed up ) Settings'=>'','Tree shaking'=>'','Tree shaking activation settings'=>'','Output only the main CSS of the page inline'=>'','Nothing to do'=>'','Active Tree shaking (Recomend)'=>'','Exclude class of Tree shaking'=>'','If you choose "Active Tree shaking" that delete the useless css.If you using active css class that please fill in class name. Ex) btn-active,slide-active,scrolled'=>'','Preload CSS'=>'','Preload CSS activation settings'=>'','Preload css except for critical css'=>'','Active Preload CSS (Recomend)'=>'','Exclude class of Preload CSS'=>'','If you choose "Active Preload CSS" that css load timing was changed.If you have any do not want to preload css file that please fill in handle(id) name. Ex) pluginname_a-style,pluginname_b-css'=>'','Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.'=>'','License Key has no registered.'=>'','The VK Blocks Pro license is invalid.'=>'','Enter a valid license key for any of the following products on the settings screen.'=>'','Enter the license key'=>'','If this display does not disappear even after entering a valid license key, re-acquire the update.'=>'','Re-acquisition of updates'=>'','VK Blocks '=>'','Please enter a valid license key for any of the following products on the settings screen.'=>'','block titleAlert'=>'','block descriptionA colored box with four statuses, including annotations and alerts.'=>'','block titlePage list from ancestor'=>'','block descriptionDisplay Page list from ancestor page'=>'','block titleBallon'=>'','block descriptionThese speech balloons are perfect for recreating conversations.'=>'','block titleBorder Box'=>'','block descriptionThis is a border box where you can place headings to attract attention.'=>'','block titleButton'=>'','block descriptionA button link that can display icons before and after.'=>'','block titleClassic FAQ'=>'','block descriptionDisplays a combination of questions and answers.'=>'','block titleFAQ Answer'=>'','block descriptionAnswer area where you can add blocks freely.'=>'','block titleFAQ Question'=>'','block descriptionQuestion area where you can freely add blocks.'=>'','block titleNew FAQ'=>'','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'','block titleFlow'=>'','block descriptionDisplays a sequential description in time series.'=>'','block titleHeading'=>'','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'','block titleIcon Outer'=>'','block descriptionDisplay the Font Awesome icons horizontally.'=>'','block titleIcon'=>'','block descriptionDisplay icons with Font Awesome.'=>'','block titlePage Content'=>'','block descriptionDisplays the body content of the specified parent page.'=>'','block titlePR Blocks (not recommended)'=>'','block descriptionThis is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.'=>'','block titlePR Content'=>'','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'','block titleSlider Item'=>'','block descriptionThis is one item in the slider.'=>'','block titleSlider'=>'','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'','block titleResponsive Spacer'=>'','block descriptionUse responsive spacers to get the margins right.'=>'','block titleStaff'=>'','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'','block titleAccordion Target'=>'','block descriptionThis is the content area where you can add blocks freely.'=>'','block titleAccordion Trigger'=>'','block descriptionThis is the title area where you can freely add blocks.'=>'','block titleAccordion'=>'','block descriptionCollapses and hides content when the content is long.'=>'','block titleAnimation'=>'','block descriptionAdd animation to elements when scrolling the page.'=>'','block titleArchive list'=>'','block descriptionDisplays a list of archives'=>'','block titleBreadcrumb'=>'','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'','block titleButton Outer'=>'','block descriptionDisplay the VK Button block horizontally.'=>'','block titleCard Item'=>'','block descriptionA single item in a card block.'=>'','block titleCard'=>'','block descriptionA card where you can place images, headings, text, and links.'=>'','block titleChild page list'=>'','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'','block titleDynamic Text'=>'','block descriptionDisplay dynamic text'=>'','block titleGrid Column Item'=>'','block descriptionOne item in a grit column block.'=>'','block titleGrid Column'=>'','block descriptionSet the number of columns to be displayed for each screen size.'=>'','block titleGrid Column Card Item Body'=>'','block descriptionBody of Grid Column Card Block Item'=>'','block titleGrid Column Card Item Footer'=>'','block descriptionFooter button area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item header'=>'','block descriptionHeader image area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item'=>'','block descriptionIt is a block of single column of Grid Column Card.'=>'','block titleGrid Column Card'=>'','block descriptionThis block can flexible column layout'=>'','block titleIcon Card Item'=>'','block descriptionThis is one item in an icon card.'=>'','block titleIcon Card'=>'','block descriptionDisplay card with icons, headings, text, and links.'=>'','block titleOuter'=>'','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'','block titlePost list'=>'','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'','block titleSelected Post List Item'=>'','block descriptionA single item in the select post list.'=>'','block titleSelected Post List'=>'','block description -HEAD:inc/vk-blocks/languages/vk-blocks.potDisplays an arbitrarily specified page with the layout of the posting list.'=>'','block descriptionDisplays an arbitrarily specified page with the layout of the posting list. -develop:languages/vk-blocks-pro.po'=>'','block titleStep Item'=>'','block descriptionThis element sets the icon, color, and style of the step mark.'=>'','block titleStep'=>'','block descriptionSet and display step marks, which are useful when explaining the order.'=>'','block titleTable of Contents'=>'','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'','block titleTaxonomy'=>'','block descriptionDisplay Taxnomy List Pulldown'=>'','block titleTimeline Item'=>'','block descriptionThis element sets the label, color, and style of the timeline.'=>'','block titleTimeline'=>'','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>''],'language'=>'','x-generator'=>'Poedit 3.3.1']; \ No newline at end of file +return ['domain'=>'vk-blocks-pro','plural-forms'=>NULL,'language'=>'','project-id-version'=>'VK Blocks Pro 1.56.0.0','pot-creation-date'=>'2023-06-02T07:05:03+00:00','po-revision-date'=>'YEAR-MO-DA HO:MI+ZONE','x-generator'=>'Poedit 3.3.1','messages'=>['Save Success'=>' +develop:languages/vk-blocks-pro.po']]; \ No newline at end of file diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index c40b968d9..40745efe6 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -2,16 +2,16 @@ # This file is distributed under the same license as the VK Blocks Pro plugin. msgid "" msgstr "" -"Project-Id-Version: VK Blocks Pro 1.84.0.0\n" +"Project-Id-Version: VK Blocks Pro 1.85.1.1\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-09-26T00:56:51+00:00\n" +"POT-Creation-Date: 2024-10-04T02:39:44+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.10.0\n" +"X-Generator: WP-CLI 2.11.0\n" "X-Domain: vk-blocks-pro\n" #: src/admin/balloon/add-button.js:38 @@ -45,7 +45,7 @@ msgstr "" #: src/admin/balloon/index.js:148 #: src/admin/custom-block-style/item/title-area/delete-button/index.js:75 #: src/admin/custom-format/delete-item-button.js:74 -#: src/blocks/_pro/gridcolcard/edit-common.js:160 +#: src/blocks/_pro/gridcolcard/edit-common.js:163 #: src/extensions/common/custom-block-variation/block-variation-list/item/title-area/delete-button/index.js:33 msgid "Delete" msgstr "" @@ -322,7 +322,7 @@ msgstr "" #: src/admin/custom-format/index.js:208 #: src/blocks/_pro/grid-column-item/edit.js:102 -#: src/blocks/_pro/gridcolcard/edit-common.js:166 +#: src/blocks/_pro/gridcolcard/edit-common.js:169 #: src/blocks/button/edit.js:749 #: src/blocks/heading/edit.js:324 msgid "Text Color" @@ -330,7 +330,7 @@ msgstr "" #: src/admin/custom-format/index.js:239 #: src/blocks/_pro/grid-column-item/edit.js:108 -#: src/blocks/_pro/gridcolcard/edit-common.js:172 +#: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 #: src/blocks/button/edit.js:732 #: src/blocks/icon/edit.js:304 @@ -996,7 +996,7 @@ msgstr "" #: src/blocks/_pro/card-item/edit.js:182 #: src/blocks/_pro/card/edit.js:134 #: src/blocks/_pro/icon-card/edit.js:75 -#: src/blocks/_pro/post-list/edit.js:407 +#: src/blocks/_pro/post-list/edit.js:442 msgid "Title" msgstr "" @@ -1103,7 +1103,7 @@ msgid "Check your settings from the settings sidebar." msgstr "" #: src/blocks/_pro/child-page/edit.js:115 -#: src/blocks/_pro/post-list/edit.js:275 +#: src/blocks/_pro/post-list/edit.js:310 msgid "Display conditions" msgstr "" @@ -1112,7 +1112,7 @@ msgid "Parent" msgstr "" #: src/blocks/_pro/child-page/edit.js:134 -#: src/blocks/_pro/post-list/edit.js:445 +#: src/blocks/_pro/post-list/edit.js:480 msgid "Ignore this post" msgstr "" @@ -1239,7 +1239,7 @@ msgid "Setting up a link" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:389 -#: src/blocks/_pro/gridcolcard-item/edit.js:348 +#: src/blocks/_pro/gridcolcard-item/edit.js:346 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:283 #: src/blocks/icon/edit.js:292 @@ -1369,7 +1369,7 @@ msgid "Fixed position" msgstr "" #: src/blocks/_pro/grid-column-item/edit.js:100 -#: src/blocks/_pro/gridcolcard/edit-common.js:164 +#: src/blocks/_pro/gridcolcard/edit-common.js:167 msgid "Color Settings" msgstr "" @@ -1446,99 +1446,103 @@ msgstr "" msgid "You can create a variety of layouts with grid column card blocks." msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:244 +#: src/blocks/_pro/gridcolcard-item/edit.js:242 #: src/blocks/_pro/select-post-list-item/edit.js:66 #: src/blocks/button/edit.js:249 #: src/components/link-toolbar/index.js:238 msgid "Unlink" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:245 +#: src/blocks/_pro/gridcolcard-item/edit.js:243 #: src/blocks/button/edit.js:250 #: src/components/link-toolbar/index.js:239 msgid "Input Link URL" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:275 +#: src/blocks/_pro/gridcolcard-item/edit.js:273 #: src/blocks/_pro/select-post-list-item/edit.js:102 #: src/blocks/button/edit.js:278 #: src/components/link-toolbar/index.js:273 msgid "Submit" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:299 +#: src/blocks/_pro/gridcolcard-item/edit.js:297 msgid "Edit mode" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:309 +#: src/blocks/_pro/gridcolcard-item/edit.js:307 msgid "All columns" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:317 +#: src/blocks/_pro/gridcolcard-item/edit.js:315 msgid "This column only" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:322 +#: src/blocks/_pro/gridcolcard-item/edit.js:320 msgid "Edit Lock" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:325 +#: src/blocks/_pro/gridcolcard-item/edit.js:323 msgid "Lock edits this block from the parent and other Grid Column Item block" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:336 +#: src/blocks/_pro/gridcolcard-item/edit.js:334 msgid "Column Setting" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:340 +#: src/blocks/_pro/gridcolcard-item/edit.js:338 #: src/blocks/_pro/icon-card-item/edit.js:120 #: src/blocks/pr-blocks/edit.js:254 msgid "Link URL:" msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:355 +#: src/blocks/_pro/gridcolcard-item/edit.js:353 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." msgstr "" -#: src/blocks/_pro/gridcolcard-item/edit.js:359 +#: src/blocks/_pro/gridcolcard-item/edit.js:357 msgid "Make sure that no link is specified for the image block, etc." msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:119 +#: src/blocks/_pro/gridcolcard/edit-common.js:109 +msgid "Card header image aspect ratio" +msgstr "" + +#: src/blocks/_pro/gridcolcard/edit-common.js:122 msgid "Image fit to column" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:134 +#: src/blocks/_pro/gridcolcard/edit-common.js:137 msgid "Column footer button area" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:144 +#: src/blocks/_pro/gridcolcard/edit-common.js:147 #: src/blocks/heading/edit.js:372 msgid "Display" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:152 +#: src/blocks/_pro/gridcolcard/edit-common.js:155 #: src/blocks/heading/edit.js:376 #: src/blocks/slider/edit.js:1133 msgid "Hide" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:183 +#: src/blocks/_pro/gridcolcard/edit-common.js:186 msgid "Column Radius" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:189 +#: src/blocks/_pro/gridcolcard/edit-common.js:192 #: src/blocks/balloon/edit.js:310 #: inc/vk-blocks/class-vk-blocks-global-settings.php:384 #: inc/vk-blocks/class-vk-blocks-global-settings.php:402 msgid "Border" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:198 +#: src/blocks/_pro/gridcolcard/edit-common.js:201 msgid "Border Width" msgstr "" -#: src/blocks/_pro/gridcolcard/edit-common.js:209 +#: src/blocks/_pro/gridcolcard/edit-common.js:212 #: src/blocks/border-box/edit.js:239 #: src/extensions/core/group/style.js:99 msgid "Border Color" @@ -1618,6 +1622,7 @@ msgstr "" #: src/blocks/heading/edit.js:335 #: src/blocks/icon/edit.js:276 #: src/blocks/pr-content/edit.js:212 +#: src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 #: src/extensions/common/custom-block-variation/create-variation/block-variation-form/index.js:167 #: src/utils/font-awesome-new.js:189 @@ -1922,91 +1927,91 @@ msgstr "" msgid "Filter by %s" msgstr "" -#: src/blocks/_pro/post-list/edit.js:279 +#: src/blocks/_pro/post-list/edit.js:314 msgid "Filter by PostTypes" msgstr "" -#: src/blocks/_pro/post-list/edit.js:292 +#: src/blocks/_pro/post-list/edit.js:327 msgid "Taxonomy filter condition" msgstr "" -#: src/blocks/_pro/post-list/edit.js:303 +#: src/blocks/_pro/post-list/edit.js:338 msgid "OR ( Whichever apply )" msgstr "" -#: src/blocks/_pro/post-list/edit.js:313 +#: src/blocks/_pro/post-list/edit.js:348 msgid "AND ( All apply )" msgstr "" -#: src/blocks/_pro/post-list/edit.js:319 +#: src/blocks/_pro/post-list/edit.js:354 msgid "Number of Posts" msgstr "" -#: src/blocks/_pro/post-list/edit.js:332 +#: src/blocks/_pro/post-list/edit.js:367 msgid "Filter by Date" msgstr "" -#: src/blocks/_pro/post-list/edit.js:336 +#: src/blocks/_pro/post-list/edit.js:371 msgid "Period of Time" msgstr "" -#: src/blocks/_pro/post-list/edit.js:344 +#: src/blocks/_pro/post-list/edit.js:379 msgid "Whole Period" msgstr "" -#: src/blocks/_pro/post-list/edit.js:348 +#: src/blocks/_pro/post-list/edit.js:383 msgid "From Today" msgstr "" -#: src/blocks/_pro/post-list/edit.js:352 +#: src/blocks/_pro/post-list/edit.js:387 msgid "From Now" msgstr "" -#: src/blocks/_pro/post-list/edit.js:356 +#: src/blocks/_pro/post-list/edit.js:391 msgid "From Tomorrow" msgstr "" -#: src/blocks/_pro/post-list/edit.js:361 +#: src/blocks/_pro/post-list/edit.js:396 msgid "* If you choose a future period, you will need to customize it so that future posts will be published immediately." msgstr "" -#: src/blocks/_pro/post-list/edit.js:368 +#: src/blocks/_pro/post-list/edit.js:403 msgid "Order" msgstr "" -#: src/blocks/_pro/post-list/edit.js:377 +#: src/blocks/_pro/post-list/edit.js:412 msgid "ASC" msgstr "" -#: src/blocks/_pro/post-list/edit.js:381 +#: src/blocks/_pro/post-list/edit.js:416 msgid "DESC" msgstr "" -#: src/blocks/_pro/post-list/edit.js:387 +#: src/blocks/_pro/post-list/edit.js:422 msgid "Order by" msgstr "" -#: src/blocks/_pro/post-list/edit.js:396 +#: src/blocks/_pro/post-list/edit.js:431 msgid "Published Date" msgstr "" -#: src/blocks/_pro/post-list/edit.js:403 +#: src/blocks/_pro/post-list/edit.js:438 msgid "Modefied Date" msgstr "" -#: src/blocks/_pro/post-list/edit.js:411 +#: src/blocks/_pro/post-list/edit.js:446 msgid "Random" msgstr "" -#: src/blocks/_pro/post-list/edit.js:417 +#: src/blocks/_pro/post-list/edit.js:452 msgid "offset" msgstr "" -#: src/blocks/_pro/post-list/edit.js:433 +#: src/blocks/_pro/post-list/edit.js:468 msgid "Display from the first post always" msgstr "" -#: src/blocks/_pro/post-list/edit.js:439 +#: src/blocks/_pro/post-list/edit.js:474 msgid "Display from the first post even on pages beyond the second page." msgstr "" @@ -2246,7 +2251,7 @@ msgid "Alert Style" msgstr "" #: src/blocks/alert/edit.js:53 -#: src/blocks/alert/variations.js:13 +#: src/blocks/alert/variations.js:16 #: src/blocks/button/edit.js:692 #: src/blocks/pr-content/edit.js:171 #: inc/vk-blocks/class-vk-blocks-global-settings.php:476 @@ -2261,7 +2266,7 @@ msgid "Info" msgstr "" #: src/blocks/alert/edit.js:61 -#: src/blocks/alert/variations.js:54 +#: src/blocks/alert/variations.js:57 #: src/blocks/button/edit.js:700 #: src/blocks/pr-content/edit.js:179 #: inc/vk-blocks/class-vk-blocks-global-settings.php:480 @@ -2269,46 +2274,46 @@ msgid "Warning" msgstr "" #: src/blocks/alert/edit.js:65 -#: src/blocks/alert/variations.js:73 +#: src/blocks/alert/variations.js:76 #: src/blocks/button/edit.js:704 #: src/blocks/pr-content/edit.js:183 #: inc/vk-blocks/class-vk-blocks-global-settings.php:484 msgid "Danger" msgstr "" -#: src/blocks/alert/variations.js:19 +#: src/blocks/alert/variations.js:10 +msgid "Alert Success" +msgstr "" + +#: src/blocks/alert/variations.js:22 msgid "This is a success alert." msgstr "" -#: src/blocks/alert/variations.js:26 +#: src/blocks/alert/variations.js:29 msgid "Alert Info" msgstr "" -#: src/blocks/alert/variations.js:32 +#: src/blocks/alert/variations.js:35 msgid "Information" msgstr "" -#: src/blocks/alert/variations.js:38 +#: src/blocks/alert/variations.js:41 msgid "This is a information alert." msgstr "" -#: src/blocks/alert/variations.js:48 +#: src/blocks/alert/variations.js:51 msgid "Alert Warning" msgstr "" -#: src/blocks/alert/variations.js:60 +#: src/blocks/alert/variations.js:63 msgid "This is a warning alert." msgstr "" -#: src/blocks/alert/variations.js:67 +#: src/blocks/alert/variations.js:70 msgid "Alert Danger" msgstr "" -#: src/blocks/alert/variations.js:7 -msgid "Alert Success" -msgstr "" - -#: src/blocks/alert/variations.js:79 +#: src/blocks/alert/variations.js:82 msgid "This is a danger alert." msgstr "" @@ -2608,12 +2613,14 @@ msgstr "" #: src/blocks/button/edit.js:767 #: src/blocks/heading/edit.js:339 #: src/blocks/pr-content/edit.js:219 +#: src/components/scroll-hint/index.js:115 msgid "Before text" msgstr "" #: src/blocks/button/edit.js:789 #: src/blocks/heading/edit.js:348 #: src/blocks/pr-content/edit.js:231 +#: src/components/scroll-hint/index.js:137 msgid "After text" msgstr "" @@ -3300,6 +3307,22 @@ msgstr "" msgid "Copy link" msgstr "" +#: src/components/scroll-hint/index.js:109 +msgid "Output Before Text Icon" +msgstr "" + +#: src/components/scroll-hint/index.js:131 +msgid "Output After Text Icon" +msgstr "" + +#: src/components/scroll-hint/index.js:91 +msgid "Show Scroll Message" +msgstr "" + +#: src/components/scroll-hint/index.js:98 +msgid "Scroll Message Text" +msgstr "" + #: src/extensions/common/custom-block-variation/block-variation-explorer/sidebar.js:17 msgid "Create" msgstr "" @@ -3602,32 +3625,33 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:106 -msgid "Horizontal Scroll Breakpoint" +#: src/extensions/core/table/style.js:221 +msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:113 -msgid "Mobile size" +#: src/extensions/core/table/style.js:229 +msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:120 -msgid "Tablet size" +#: src/extensions/core/table/style.js:236 +msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:127 -msgid "PC size" +#: src/extensions/core/table/style.js:243 +msgid "Mobile size" msgstr "" -#: src/extensions/core/table/style.js:137 -msgid "Table cells are no longer fixed width when horizontal scroll breakpoint is reached." +#: src/extensions/core/table/style.js:250 +msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:91 -msgid "Table Horizontal Scroll" +#: src/extensions/core/table/style.js:257 +msgid "PC size" msgstr "" -#: src/extensions/core/table/style.js:99 -msgid "Scrollable" +#: src/extensions/core/table/style.js:41 +#: inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:72 +msgid "You can scroll" msgstr "" #: src/utils/example-data.js:14 From d0285e72cc1cf0310ddf21f26c62ba47e2fb74aa Mon Sep 17 00:00:00 2001 From: akito-38 <m.akirabo@gmail.com> Date: Fri, 4 Oct 2024 11:46:46 +0900 Subject: [PATCH 13/21] lint --- src/extensions/core/table/style.js | 33 +++++++++++++++++++----------- 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/src/extensions/core/table/style.js b/src/extensions/core/table/style.js index 146299fcc..9afbfb794 100644 --- a/src/extensions/core/table/style.js +++ b/src/extensions/core/table/style.js @@ -119,18 +119,20 @@ export const addBlockControl = createHigherOrderComponent((BlockEdit) => { tables.forEach((table) => { // もし is-style-vk-table-scrollable クラスや data-scroll-breakpoint 属性がついていたら scrollable を ON に設定 if ( - table.classList.contains('is-style-vk-table-scrollable') || + table.classList.contains( + 'is-style-vk-table-scrollable' + ) || table.hasAttribute('data-scroll-breakpoint') ) { setAttributes({ scrollable: true }); } }); }; - + // コンポーネントの初回レンダリング時に実行 checkTableScrollAttributes(); }, []); // 初期レンダリング時のみ実行 - + // scrollable の状態が確定したら処理を実行 useEffect(() => { const updateTableScrollAttributes = () => { @@ -145,26 +147,29 @@ export const addBlockControl = createHigherOrderComponent((BlockEdit) => { const breakpoint = table.getAttribute('data-scroll-breakpoint') || 'table-scrollable-mobile'; - table.setAttribute('data-scroll-breakpoint', breakpoint); + table.setAttribute( + 'data-scroll-breakpoint', + breakpoint + ); } - + table.setAttribute( 'data-output-scroll-hint', showScrollMessage ? 'true' : 'false' ); - + table.setAttribute( 'data-icon-output-left', iconOutputLeft ? 'true' : 'false' ); - + table.setAttribute( 'data-icon-output-right', iconOutputRight ? 'true' : 'false' ); }); }; - + if (typeof scrollable !== 'undefined') { updateTableScrollAttributes(); } @@ -176,7 +181,7 @@ export const addBlockControl = createHigherOrderComponent((BlockEdit) => { scrollIconRight, iconOutputLeft, iconOutputRight, - ]); + ]); if (isValidBlockType(name) && props.isSelected) { const blockEditContent = <BlockEdit {...props} />; @@ -288,11 +293,15 @@ const addExtraProps = (saveElementProps, blockType, attributes) => { if (isValidBlockType(blockType.name)) { // 'scrollable' が true の場合のみ 'is-style-vk-table-scrollable' クラスと 'data-scroll-breakpoint' を設定 if (attributes.scrollable) { - saveElementProps.className = `${saveElementProps.className || ''} is-style-vk-table-scrollable`.trim(); - saveElementProps['data-scroll-breakpoint'] = attributes.scrollBreakpoint; + saveElementProps.className = + `${saveElementProps.className || ''} is-style-vk-table-scrollable`.trim(); + saveElementProps['data-scroll-breakpoint'] = + attributes.scrollBreakpoint; } else { // 'scrollable' が false の場合、クラスと属性を削除 - saveElementProps.className = saveElementProps.className.replace('is-style-vk-table-scrollable', '').trim(); + saveElementProps.className = saveElementProps.className + .replace('is-style-vk-table-scrollable', '') + .trim(); delete saveElementProps['data-scroll-breakpoint']; } From 5e4e7518afaa1fa9569376b9dea924943aee7cc6 Mon Sep 17 00:00:00 2001 From: sysbird <koro@sysbird.jp> Date: Fri, 4 Oct 2024 11:57:35 +0900 Subject: [PATCH 14/21] fix iconTarget attribute --- src/blocks/icon/edit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/icon/edit.js b/src/blocks/icon/edit.js index 7afec14cc..df180c234 100644 --- a/src/blocks/icon/edit.js +++ b/src/blocks/icon/edit.js @@ -276,9 +276,9 @@ export default function IconEdit(props) { <LinkToolbar linkUrl={iconUrl} setLinkUrl={(url) => setAttributes({ iconUrl: url })} - linkTarget={iconTarget} + linkTarget={iconTarget ? '_blank' : ''} setLinkTarget={(target) => - setAttributes({ iconTarget: target }) + setAttributes({ iconTarget: (target? true: false) }) } /> </ToolbarGroup> From af34b0261862d6dafb3dceaff254ce95e40df96f Mon Sep 17 00:00:00 2001 From: sysbird <koro@sysbird.jp> Date: Mon, 7 Oct 2024 11:08:07 +0900 Subject: [PATCH 15/21] fix syntax --- src/blocks/icon/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blocks/icon/edit.js b/src/blocks/icon/edit.js index df180c234..5009148c5 100644 --- a/src/blocks/icon/edit.js +++ b/src/blocks/icon/edit.js @@ -278,7 +278,7 @@ export default function IconEdit(props) { setLinkUrl={(url) => setAttributes({ iconUrl: url })} linkTarget={iconTarget ? '_blank' : ''} setLinkTarget={(target) => - setAttributes({ iconTarget: (target? true: false) }) + setAttributes({ iconTarget: !!target }) } /> </ToolbarGroup> From d533abdce3cf519a55394939e1d3e47ae2c3bdb4 Mon Sep 17 00:00:00 2001 From: mtdkei <mt@matsudakeinoMacBook-Air.local> Date: Mon, 7 Oct 2024 14:52:47 +0900 Subject: [PATCH 16/21] Add test file --- .../blocks/vk-blocks__fixed-display__deprecated-1-81-1.html | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__deprecated-1-81-1.html diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__deprecated-1-81-1.html b/test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__deprecated-1-81-1.html new file mode 100644 index 000000000..f4470b25a --- /dev/null +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__fixed-display__deprecated-1-81-1.html @@ -0,0 +1,5 @@ +<!-- wp:vk-blocks/fixed-display {"blockId":"6f494e74-9519-4228-ad3f-351a08a1db76"} --> +<div class="wp-block-vk-blocks-fixed-display vk_fixed-display vk_fixed-display-mode-always-visible vk_fixed-display-position-right vk_fixed-display-6f494e74-9519-4228-ad3f-351a08a1db76 vk_fixed-display-position-from-top" style="top:50svh"><!-- wp:paragraph --> + <p>あああああああああ</p> + <!-- /wp:paragraph --></div> + <!-- /wp:vk-blocks/fixed-display --> \ No newline at end of file From da510d1e5004a0fbbd60a83e86bc54da2eb04c05 Mon Sep 17 00:00:00 2001 From: drill-lancer <rickaddison7634@gmail.com> Date: Tue, 8 Oct 2024 09:57:03 +0900 Subject: [PATCH 17/21] fix: swiper-load --- inc/vk-blocks/class-vk-blocks-block-loader.php | 2 +- src/blocks/slider/block.json | 6 +++--- src/blocks/slider/index.php | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/inc/vk-blocks/class-vk-blocks-block-loader.php b/inc/vk-blocks/class-vk-blocks-block-loader.php index 439d4a4f1..f264d705f 100644 --- a/inc/vk-blocks/class-vk-blocks-block-loader.php +++ b/inc/vk-blocks/class-vk-blocks-block-loader.php @@ -120,7 +120,7 @@ public function register_blocks_assets() { wp_register_style( 'vk-blocks-utils-common-css', VK_BLOCKS_DIR_URL . 'build/utils/common.css', array(), VK_BLOCKS_VERSION ); } else { // 一括読み込みの場合 : 結合CSSを登録. - wp_register_style( 'vk-blocks-build-css', VK_BLOCKS_DIR_URL . 'build/block-build.css', array(), VK_BLOCKS_VERSION ); + wp_register_style( 'vk-blocks-build-css', VK_BLOCKS_DIR_URL . 'build/block-build.css', array( 'vk-swiper-style' ), VK_BLOCKS_VERSION ); } // 編集画面のCSS登録 : 分割読み込みの設定に関わらず結合CSSを登録 -> 各ブロックのindex.phpから呼び出される. diff --git a/src/blocks/slider/block.json b/src/blocks/slider/block.json index 33d2bf1db..e6d99f32b 100644 --- a/src/blocks/slider/block.json +++ b/src/blocks/slider/block.json @@ -5,9 +5,9 @@ "description": "This slider allows you to place various items.Slider is do not move in edit screen.", "textdomain": "vk-blocks-pro", "category": "vk-blocks-cat-layout", - "editorScript": "vk-blocks-build-js", - "editorStyle": ["vk-swiper-style", "vk-blocks-build-editor-css"], - "style": "vk-blocks-build-css", + "editorScriptHandles": ["vk-blocks-build-js"], + "editorStyleHandles": ["vk-swiper-style", "vk-blocks-build-editor-css"], + "styleHandles": ["vk-blocks-build-css"], "attributes": { "editorMode": { "type": "string", diff --git a/src/blocks/slider/index.php b/src/blocks/slider/index.php index 0b9601db4..a3c24a27e 100644 --- a/src/blocks/slider/index.php +++ b/src/blocks/slider/index.php @@ -14,14 +14,14 @@ */ function vk_blocks_register_block_slider() { // Register Style. - if ( ! is_admin() ) { + //if ( ! is_admin() ) { wp_register_style( 'vk-blocks/slider', VK_BLOCKS_DIR_URL . 'build/slider/style.css', - array( 'vk-swiper-style' ), + array( 'vk-swiper-style'), VK_BLOCKS_VERSION ); - } + //} // Register Script. if ( ! is_admin() ) { From 03ab5463e5a83706bb829c0d76fd8996e5d00b6c Mon Sep 17 00:00:00 2001 From: drill-lancer <rickaddison7634@gmail.com> Date: Tue, 8 Oct 2024 09:59:53 +0900 Subject: [PATCH 18/21] fix: readme --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index d68e854aa..b9b5fbcaa 100644 --- a/readme.txt +++ b/readme.txt @@ -105,7 +105,7 @@ e.g. 1. VK Blocks examples. == Changelog == - +[ Bug fix ][ Slider ] Adjusting the timing of loading swiper to prevent the slider from collapsing. [ Bug fix ][ Grid Column Card (Pro) ] Add translation. [ Bug fix ][ Category Badge (Pro) ] Added Pro label to the inserter. [ Add function ][ Link Toolbar ] Added to skip retrieving metadata (title and favicon) for external links in link toolbar to prevent CORS errors. From 86ae364b5f17b24c40dfeae53ba44df608973a6e Mon Sep 17 00:00:00 2001 From: drill-lancer <rickaddison7634@gmail.com> Date: Tue, 8 Oct 2024 10:00:11 +0900 Subject: [PATCH 19/21] lint --- src/components/link-toolbar/index.js | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/components/link-toolbar/index.js b/src/components/link-toolbar/index.js index 744d26cd9..714a0b534 100644 --- a/src/components/link-toolbar/index.js +++ b/src/components/link-toolbar/index.js @@ -106,25 +106,27 @@ const LinkToolbar = ({ linkUrl, setLinkUrl, linkTarget, setLinkTarget }) => { const formattedUrl = formatUrl(linkUrl); const isExternalLink = !formattedUrl.startsWith(window.location.origin) && - !formattedUrl.startsWith('#'); // 外部リンクかどうか判定 - + !formattedUrl.startsWith('#'); // 外部リンクかどうか判定 + // 外部リンクの場合はプレビュー(タイトル取得)をスキップする if (!isExternalLink) { const fetchTitle = function (url) { if (url.startsWith('#')) { - return Promise.resolve(url); // アンカーリンクの場合はそのまま返す + return Promise.resolve(url); // アンカーリンクの場合はそのまま返す } return fetch(url, { method: 'GET' }) .then((response) => response.text()) .then((text) => { - const titleMatch = text.match(/<title>(.*?)<\/title>/i); + const titleMatch = text.match( + /<title>(.*?)<\/title>/i + ); return titleMatch ? titleMatch[1] : url; }) .catch(() => { return url; }); }; - + fetchTitle(formattedUrl).then((title) => { setLinkTitle(title); }); @@ -132,12 +134,12 @@ const LinkToolbar = ({ linkUrl, setLinkUrl, linkTarget, setLinkTarget }) => { // 外部リンクの場合はそのままリンクURLをタイトルとして設定する setLinkTitle(formattedUrl); } - + // アイコン設定 if (isExternalLink) { - setIcon(globe); // 外部リンクの場合は地球アイコン + setIcon(globe); // 外部リンクの場合は地球アイコン } else if (formattedUrl.startsWith('#')) { - setIcon(globe); // アンカーリンクにも地球アイコンを使用 + setIcon(globe); // アンカーリンクにも地球アイコンを使用 } else { try { const domain = new URL(formattedUrl).origin; @@ -150,11 +152,11 @@ const LinkToolbar = ({ linkUrl, setLinkUrl, linkTarget, setLinkTarget }) => { /> ); } catch { - setIcon(link); // URLが無効な場合はリンクアイコンを使用 + setIcon(link); // URLが無効な場合はリンクアイコンを使用 } } } - }, [linkUrl]); + }, [linkUrl]); useEffect(() => { setSubmitDisabled(!linkUrl || linkUrl.trim() === ''); From 1d26aec28173ce213c3924409080d54468edf6fe Mon Sep 17 00:00:00 2001 From: drill-lancer <rickaddison7634@gmail.com> Date: Tue, 8 Oct 2024 10:01:53 +0900 Subject: [PATCH 20/21] lint --- src/blocks/slider/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blocks/slider/index.php b/src/blocks/slider/index.php index a3c24a27e..0b9601db4 100644 --- a/src/blocks/slider/index.php +++ b/src/blocks/slider/index.php @@ -14,14 +14,14 @@ */ function vk_blocks_register_block_slider() { // Register Style. - //if ( ! is_admin() ) { + if ( ! is_admin() ) { wp_register_style( 'vk-blocks/slider', VK_BLOCKS_DIR_URL . 'build/slider/style.css', - array( 'vk-swiper-style'), + array( 'vk-swiper-style' ), VK_BLOCKS_VERSION ); - //} + } // Register Script. if ( ! is_admin() ) { From 176e7dc351f6302e1e73e3b9a3429cfb910796c1 Mon Sep 17 00:00:00 2001 From: kurudrive <kurudrive@gmail.com> Date: Tue, 8 Oct 2024 23:46:02 +0900 Subject: [PATCH 21/21] [ Change version ] 1.87.0.0 --- languages/vk-blocks-pro-ja.l10n.php | 2 +- languages/vk-blocks-pro-js.pot | 98 ++++---- languages/vk-blocks-pro.l10n.php | 7 +- languages/vk-blocks-pro.pot | 349 +++++++++++++++++++++++----- readme.txt | 13 +- vk-blocks.php | 4 +- 6 files changed, 363 insertions(+), 110 deletions(-) diff --git a/languages/vk-blocks-pro-ja.l10n.php b/languages/vk-blocks-pro-ja.l10n.php index de1f6dce9..b2371c46f 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,2 +1,2 @@ <?php -return ['domain'=>NULL,'plural-forms'=>'nplurals=1; plural=0;','language'=>'ja','project-id-version'=>'VK Blocks Pro','pot-creation-date'=>'2024-10-04T02:09:25+00:00','po-revision-date'=>'','x-generator'=>'Poedit 3.5','messages'=>['Added balloon image setting'=>'吹き出し画像設定を追加','Balloon Image Setting'=>'吹き出し画像設定','Would you like to delete %s?'=>'%sを削除しますか?','Cancel'=>'キャンセル','Delete'=>'削除','Select'=>'選択','Balloon Image Name'=>'吹き出し画像の名前','Balloon Setting'=>'吹き出しブロック設定','Balloon Border Width Setting'=>'吹き出しの線幅の設定','1px'=>'1px','2px'=>'2px','3px'=>'3px','4px'=>'4px','You can register frequently used icon images for speech bubble blocks.'=>'よく使う吹き出し用のアイコン画像を登録する事ができます。','image'=>'画像','Block Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','Block Style Label (Changeable)'=>'ブロックスタイル ラベル(変更可能)','Add'=>'追加','Add Custom Block Style'=>'ブロックスタイルを追加','Target Block (Required/Unchangeable)'=>'対象のブロック (必須/変更不可)','Set the target block.'=>'対象のブロックを設定してください。','Search for a block'=>'ブロックの検索','Please enter a string'=>'文字列を入力してください','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です','Class name is required'=>'クラス名は必須項目です','Already registered'=>'すでに登録されています','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)','This will be the CSS class name following is-style-.'=>'is-style-に続くCSSクラス名になります。','(e.g.) %s-block-style'=>'(例) %s-block-style','Custom Block Style Setting'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','Target block'=>'対象のブロック','CSS class'=>'CSSクラス','If selector is specified, it will be replaced with CSS class (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.'=>'selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。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'=>'四角','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'=>'ボタンギャップサイズ','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','Select image'=>'画像を選択','Delete Image'=>'画像を削除','URL'=>'URL','https://example.com'=>'https://example.com','Display item'=>'表示要素','Excerpt Text'=>'抜粋','Warning! When you hidden this item, you will lose the content.'=>'注意!この項目を非表示にすると入力されていた内容は失われます。','Image'=>'画像','Button'=>'ボタン','Button option'=>'ボタンオプション','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。','Button text'=>'ボタンの文字','Image Height'=>'画像高さ','Slide Height for each device.'=>'デバイス毎の高さ','There are no applicable child pages.'=>'該当する子ページがありません。','Check your settings from the settings sidebar.'=>'設定サイドバーから設定を確認してください。','Display conditions'=>'表示条件','Parent'=>'親ページ','Ignore this post'=>'この投稿を除く','Current page'=>'現在のページ','Please select display element from the Setting sidebar.'=>'設定サイドバーから表示要素を選択してください。','Post Type Name'=>'投稿タイプ名','Ancestor Page Title'=>'先祖ページのタイトル','Parent Page Title'=>'親ページのタイトル','Custom field'=>'カスタムフィールド','This block is not rendered because no custom field name is specified.'=>'カスタムフィールド名が指定されていないため、このブロックは表示されません。','Display element settings'=>'表示要素の設定','Display element'=>'表示要素','Please Select'=>'選択してください','Post type name of the page being viewed'=>'表示中のページの投稿タイプ名','Page name in the ancestor hierarchy of the displayed page'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','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','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','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'=>'スクロールしたら表示','Fixed position'=>'固定位置','Color Settings'=>'色設定','Margin setting inside the item'=>'アイテム内の余白設定','Padding (Top)'=>'余白 (上)','Padding (Left and Right)'=>'余白 (左右)','Padding (Bottom)'=>'余白 (下)','px'=>'px','em'=>'em','rem'=>'rem','vw'=>'vw','Grid column item link'=>'グリッドカラムアイテムリンク','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'=>'全カラム一括指定','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','Outer link'=>'Outerリンク','Background Setting'=>'背景設定','Color Setting'=>'色設定','Color will overcome background image. If you want to display image, set opacity 0.'=>'色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。','Opacity Setting'=>'透過設定','Background Image PC'=>'背景画像 ( PC )','Background Image Tablet'=>'背景画像 ( タブレット )','Background Image Mobile'=>'背景画像 ( モバイル )','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','Fit to the Content area'=>'コンテンツエリアに合わせる','Add padding to the Outer area'=>'アウターエリア内に余白を追加する','Remove padding from the Outer area'=>'アウターエリア内の余白を無くす','Padding (Top and Bottom)'=>'余白 (上下)','Use default padding'=>'標準の余白を使用','Do not use default padding'=>'標準の余白を使用しない','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。','Divider Setting'=>'区切りの設定','Type'=>'タイプ','Tilt'=>'傾斜','Curve'=>'カーブ','Wave'=>'波状','Triangle'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Lower Divider Level'=>'下部区切りレベル','Border Setting'=>'枠線の設定','Border will disappear when divider effect is applied.'=>'枠線は区切りレベルを適用すると表示されなくなります。','Border type'=>'枠線の種類','None'=>'なし','Solid'=>'直線','Dotted'=>'点線','Dashed'=>'Dashed','Double'=>'二重線','Groove'=>'Groove','Ridge'=>'Ridge','Inset'=>'Inset','Outset'=>'Outset','Border width'=>'枠線の幅','Border radius'=>'枠線のRの大きさ','Container Inner Side Space Setting'=>'コンテナ内側のスペース設定','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','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 Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Default'=>'標準','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','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'=>'目次','Note on duplicating headings'=>'見出し複製時の注意','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','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:'=>'ボタンの位置:','Center'=>'中央','Wide'=>'幅広','Block'=>'ブロック','Button Width:'=>'ボタンの幅:','25%'=>'25%','50%'=>'50%','75%'=>'75%','Button Style:'=>'ボタンスタイル:','Text only'=>'テキストのみ','If you select "No background", that you need to select a Custom Color.'=>'もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。','Button Effect:'=>'ボタン エフェクト','Shine'=>'光る','Default Color (Bootstrap)'=>'標準色 (Bootstrap)','Primary'=>'Primary','Secondary'=>'Secondary','Light'=>'Light','Dark'=>'Dark','Custom Color'=>'カスタムカラー','Button Color'=>'ボタンカラー','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。','Before text'=>'文字の前','After text'=>'文字の後','Size'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','Input text'=>'文字を入力','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます','You can be collapsing this block at VK Blocks Pro'=>'Pro版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','Use common settings'=>'共通設定を使用','* You can change each common accordion settings from Setting > VK Blocks.'=>'* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。','Display of arrow'=>'矢印の表示','Arrow display'=>'矢印を表示する','Arrow hidden'=>'矢印を表示しない','Input title'=>'タイトルを入力','Input content'=>'説明を入力','Input title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','Margin between Heading and sub text (rem)'=>'見出しとサブテキストの余白サイズ(rem)','Margin bottom size of after this block (rem)'=>'このブロック全体の下部の余白 (rem)','Heading Settings'=>'見出し設定','Icon Color'=>'アイコンの色','Sub Text Settings'=>'サブテキスト設定','Text size (rem)'=>'文字サイズ (rem)','Change heading level'=>'見出しレベルの変更','Heading %d'=>'見出し %d','Reset'=>'リセット','Icon & Frame'=>'アイコンと枠','Icon only'=>'アイコンのみ','Icon Common Setting'=>'アイコン共通設定','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','This block can display private content. Please note that this content will be public even if you set the original page to private.'=>'このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。','PR Block1 Setting'=>'PR Block1 設定','Icon 1'=>'アイコン 1','When you have an image. Image is displayed with priority'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 1'=>'PR 画像 1','PR Block2 Setting'=>'PR Block2 設定','Icon 2'=>'アイコン 2','PR Image 2'=>'PR 画像 2','PR Block3 Setting'=>'PR Block3 設定','Icon 3'=>'アイコン 3','When you have an image. Image is displayed with priority.'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 3'=>'PR 画像 3','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Bottom on Mobile device'=>'モバイルでは下部に表示','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter integer divisors for the number of placed slide items for each display size.'=>'各表示サイズのスライド アイテムの配置数の整数の約数を入力します。','If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','One by One'=>'1つずつ','Same as the number of items to display'=>'表示アイテム数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','height'=>'height','margin-top'=>'margin-top','margin-bottom'=>'margin-bottom','Space Type'=>'余白タイプ','Custom'=>'カスタム','You can change each common margin size from Setting > VK Blocks'=>'* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。','Height for each device.'=>'デバイス毎の高さ','Spacer Settings'=>'余白の設定','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Display type and columns'=>'表示タイプとカラム','Column ( Screen size : Extra large )'=>'カラム ( 画面サイズ : Extra large )','Column ( Screen size : XX large )'=>'カラム ( 画面サイズ : XX Large )','Column ( Screen size : Extra small )'=>'カラム ( 画面サイズ : Extra small )','Column ( Screen size : Small )'=>'カラム ( 画面サイズ : Small )','Column ( Screen size : Medium )'=>'カラム ( 画面サイズ : Medium )','Column ( Screen size : Large )'=>'カラム ( 画面サイズ : Large )','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'=>'現在のページ','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Show Scroll Message'=>'スクロールしたら表示','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','Inserter'=>'インサーター','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。','Hidden Settings'=>'非表示設定','Hidden at screen size'=>'非表示にする画面サイズ','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。','Hidden ( Screen size : all )'=>'非表示 ( 画面サイズ : all )','Hidden ( Screen size : xs )'=>'非表示 ( 画面サイズ : xs )','Hidden ( Screen size : sm )'=>'非表示 ( 画面サイズ : sm )','Hidden ( Screen size : md )'=>'非表示 ( 画面サイズ : md )','Hidden ( Screen size : lg )'=>'非表示 ( 画面サイズ : lg )','Hidden ( Screen size : xl )'=>'非表示 ( 画面サイズ : xl )','Hidden ( Screen size : xxl )'=>'非表示 ( 画面サイズ : xxl )','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。','Highlighter'=>'蛍光マーカー','Inline Font Size'=>'インライン文字サイズ','Inline font size'=>'インライン文字サイズ','Apply'=>'適用','Big'=>'大','Extra big'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Responsive BR '=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールしたら表示','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','VK Blocks Pro'=>'VK Blocks Pro','https://github.com/vektor-inc/vk-blocks'=>'https://github.com/vektor-inc/vk-blocks','This is a plugin that extends Block Editor.'=>'ブロックエディタを拡張するプラグインです。','Vektor,Inc.'=>'Vektor,Inc.','https://vektor-inc.co.jp'=>'https://vektor-inc.co.jp','We\'ve released VK Blocks Pro!'=>'VK Blocks Pro を公開しました!','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/','See more'=>'続きを見る','Dismiss this notice'=>'通知を無視','Install Required Plugins'=>'必須プラグインのインストール','Install Plugins'=>'プラグインのインストール','Installing Plugin: %s'=>'プラグイン %s をインストール中','Something went wrong with the plugin API.'=>'プラグイン API で問題が発生しました。','This plugin requires the following plugin: %1$s.'=>'このプラグインは下記プラグインを必要としています:%1$s。','This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','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 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'=>'投稿リスト','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','block titleNew Badge'=>'新着バッジ','block descriptionEasily highlight your latest post.'=>'最新の投稿を簡単に目立たせることができます。','block titleSelected Post List Item'=>'選択投稿リストアイテム','block descriptionA single item in the select post list.'=>'選択投稿リスト内の1つのアイテムです。','block titleSelected Post List'=>'選択投稿リスト','block descriptionDisplays an arbitrarily specified page with the layout of the posting list.'=>'任意に指定したページを投稿リストのレイアウトで表示します。','block titleStep Item'=>'ステップ要素','block descriptionThis element sets the icon, color, and style of the step mark.'=>'ステップマークのアイコン、色、スタイルを設定する要素です。','block titleStep'=>'ステップ','block descriptionSet and display step marks, which are useful when explaining the order.'=>'順番を説明する時に便利でステップマークを設定し表示します。','block titleTable of Contents'=>'目次','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'追加すると見出しに合わせて自動で生成される目次です。','block titleTaxonomy'=>'タクソノミー','block descriptionDisplay Taxnomy List Pulldown'=>'タクソノミーの一覧やプルダウンを表示します','block titleTimeline Item'=>'タイムライン要素','block descriptionThis element sets the label, color, and style of the timeline.'=>'タイムラインのラベル、色、スタイルを設定する要素です。','block titleTimeline'=>'タイムライン','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>'順番を説明する時に便利でシンプルなスケジュールなどを表示します。']]; \ No newline at end of file +return ['domain'=>NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['Added balloon image setting'=>'吹き出し画像設定を追加','Balloon Image Setting'=>'吹き出し画像設定','Would you like to delete %s?'=>'%sを削除しますか?','Cancel'=>'キャンセル','Delete'=>'削除','Select'=>'選択','Balloon Image Name'=>'吹き出し画像の名前','Balloon Setting'=>'吹き出しブロック設定','Balloon Border Width Setting'=>'吹き出しの線幅の設定','1px'=>'1px','2px'=>'2px','3px'=>'3px','4px'=>'4px','You can register frequently used icon images for speech bubble blocks.'=>'よく使う吹き出し用のアイコン画像を登録する事ができます。','image'=>'画像','Block Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','Block Style Label (Changeable)'=>'ブロックスタイル ラベル(変更可能)','Add'=>'追加','Add Custom Block Style'=>'ブロックスタイルを追加','Target Block (Required/Unchangeable)'=>'対象のブロック (必須/変更不可)','Set the target block.'=>'対象のブロックを設定してください。','Search for a block'=>'ブロックの検索','Please enter a string'=>'文字列を入力してください','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です','Class name is required'=>'クラス名は必須項目です','Already registered'=>'すでに登録されています','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)','This will be the CSS class name following is-style-.'=>'is-style-に続くCSSクラス名になります。','(e.g.) %s-block-style'=>'(例) %s-block-style','Custom Block Style Setting'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','Target block'=>'対象のブロック','CSS class'=>'CSSクラス','If selector is specified, it will be replaced with CSS class (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.'=>'selector を指定した場合、CSS クラス(<code>.is-style-%1$s</code>)に置き換わります。selector,<code>.is-style-%2$s</code>以外の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 (<code>.%s</code>); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(<code>.%s</code>)に置き換わります。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'=>'','4:3'=>'','3:2'=>'','9:16'=>'','3:4'=>'','2:3'=>'','Height'=>'高さ','Width'=>'幅','Image is scaled and cropped to fill the entire space without being distorted.'=>'全体を埋めるように拡大・切り取られます。','Image is scaled to fill the space without clipping nor distorting.'=>'画像は切り取りや歪みなくスペースを埋めるように拡大されます。','Image will be stretched and distorted to completely fill the space.'=>'画像はスペースを完全に埋めるために引き伸ばされます。','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'=>'ボタンギャップサイズ','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。','Title'=>'タイトル','Select image'=>'画像を選択','Delete Image'=>'画像を削除','URL'=>'URL','https://example.com'=>'https://example.com','Display item'=>'表示要素','Excerpt Text'=>'抜粋','Warning! When you hidden this item, you will lose the content.'=>'注意!この項目を非表示にすると入力されていた内容は失われます。','Image'=>'画像','Button'=>'ボタン','Button option'=>'ボタンオプション','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。','Button text'=>'ボタンの文字','Image Height'=>'画像高さ','Slide Height for each device.'=>'デバイス毎の高さ','There are no applicable child pages.'=>'該当する子ページがありません。','Check your settings from the settings sidebar.'=>'設定サイドバーから設定を確認してください。','Display conditions'=>'表示条件','Parent'=>'親ページ','Ignore this post'=>'この投稿を除く','Current page'=>'現在のページ','Please select display element from the Setting sidebar.'=>'設定サイドバーから表示要素を選択してください。','Post Type Name'=>'投稿タイプ名','Ancestor Page Title'=>'先祖ページのタイトル','Parent Page Title'=>'親ページのタイトル','Custom field'=>'カスタムフィールド','This block is not rendered because no custom field name is specified.'=>'カスタムフィールド名が指定されていないため、このブロックは表示されません。','Display element settings'=>'表示要素の設定','Display element'=>'表示要素','Please Select'=>'選択してください','Post type name of the page being viewed'=>'表示中のページの投稿タイプ名','Page name in the ancestor hierarchy of the displayed page'=>'表示中の固定ページの先祖階層のページ名','Page name in the parent hierarchy of the displayed page'=>'表示されているページの親階層にあるページ名','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','Top'=>'上 ','Right'=>'右','Bottom'=>'下 ','Left'=>'左','Fixed position origin'=>'固定位置の基準','Top section'=>'上部','Bottom section'=>'下部','Fixed position from the top'=>'上部からの固定位置','Fixed position from the bottom'=>'下部からの固定位置','Timing to display'=>'表示するタイミング','Persist visibility once visible'=>'一度表示したら表示を維持する','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'=>'スクロールしたら表示','Fixed position'=>'固定位置','Color Settings'=>'色設定','Margin setting inside the item'=>'アイテム内の余白設定','Padding (Top)'=>'余白 (上)','Padding (Left and Right)'=>'余白 (左右)','Padding (Bottom)'=>'余白 (下)','px'=>'px','em'=>'em','rem'=>'rem','vw'=>'vw','Grid column item link'=>'グリッドカラムアイテムリンク','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'=>'全カラム一括指定','Input Title'=>'タイトルを入力','Input Content'=>'文章を入力してください','Icon Card Setting'=>'アイコンカード設定','Icon'=>'アイコン','Icon Background:'=>'アイコン背景:','Solid color'=>'ベタ塗り','No background'=>'背景なし','Columns'=>'カラム','Align'=>'表示位置','Text'=>'テキスト','Min Height Setting'=>'最小高さ設定','Unit Type'=>'単位','vh'=>'','svh'=>'','lvh'=>'','dvh'=>'','Outer link'=>'Outerリンク','Background Setting'=>'背景設定','Color Setting'=>'色設定','Color will overcome background image. If you want to display image, set opacity 0.'=>'色を指定すると画像よりも優先されます。画像を表示したい場合は、不透明度を0に設定します。','Opacity Setting'=>'透過設定','Background Image PC'=>'背景画像 ( PC )','Background Image Tablet'=>'背景画像 ( タブレット )','Background Image Mobile'=>'背景画像 ( モバイル )','Background image Position'=>'背景画像の位置','Repeat'=>'リピート','Cover'=>'カバー','Cover fixed (Not fixed on iPhone)'=>'カバー 固定(iPhoneでは固定されません)','Parallax (Non-guaranteed)'=>'パララックス(非保証)','Layout Setting'=>'レイアウト設定','Fit to the Content area'=>'コンテンツエリアに合わせる','Add padding to the Outer area'=>'アウターエリア内に余白を追加する','Remove padding from the Outer area'=>'アウターエリア内の余白を無くす','Padding (Top and Bottom)'=>'余白 (上下)','Use default padding'=>'標準の余白を使用','Do not use default padding'=>'標準の余白を使用しない','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。','Divider Setting'=>'区切りの設定','Type'=>'タイプ','Tilt'=>'傾斜','Curve'=>'カーブ','Wave'=>'波状','Triangle'=>'三角','Large triangle'=>'大きい三角','Serrated'=>'ギザギザ','Settings for each device'=>'デバイス毎の設定','Upper Divider Level'=>'上部区切りレベル','Lower Divider Level'=>'下部区切りレベル','Border Setting'=>'枠線の設定','Border will disappear when divider effect is applied.'=>'枠線は区切りレベルを適用すると表示されなくなります。','Border type'=>'枠線の種類','None'=>'なし','Solid'=>'直線','Dotted'=>'点線','Dashed'=>'Dashed','Double'=>'二重線','Groove'=>'Groove','Ridge'=>'Ridge','Inset'=>'Inset','Outset'=>'Outset','Border width'=>'枠線の幅','Border radius'=>'枠線のRの大きさ','Container Inner Side Space Setting'=>'コンテナ内側のスペース設定','Setting'=>'設定','Enable Term Link'=>'タームへのリンクを有効にする','Select Taxonomy'=>'タクソノミーを選択','Auto'=>'自動','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 Badge setting'=>'新着バッジ設定','Days Counted as New Post'=>'新しい投稿としてカウントされる日数','Edit text…'=>'テキストを編集…','New Badge'=>'新着バッジ','Because no post is selected, The block Will not render'=>'ページが選択されていないためこのブロックはレンダリングされません','Input Internal Post URL'=>'このサイトの投稿の URL を入力してください','Ex,6:00AM'=>'例) 午前 6:00','Style'=>'スタイル','Outlined'=>'アウトライン','Default'=>'標準','Step Mark'=>'ステップマーク','If Font Awesome tags entered, it will overrides the number.'=>'Font Awesome の class 名が入力されている場合は数字は上書きされます。','First Dot Number'=>'ステップの開始番号','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'=>'目次','Note on duplicating headings'=>'見出し複製時の注意','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','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:'=>'ボタンの位置:','Center'=>'中央','Wide'=>'幅広','Block'=>'ブロック','Button Width:'=>'ボタンの幅:','25%'=>'25%','50%'=>'50%','75%'=>'75%','Button Style:'=>'ボタンスタイル:','Text only'=>'テキストのみ','If you select "No background", that you need to select a Custom Color.'=>'もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。','Button Effect:'=>'ボタン エフェクト','Shine'=>'光る','Default Color (Bootstrap)'=>'標準色 (Bootstrap)','Primary'=>'Primary','Secondary'=>'Secondary','Light'=>'Light','Dark'=>'Dark','Custom Color'=>'カスタムカラー','Button Color'=>'ボタンカラー','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'このカラーパレットの色は標準色を上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。','Before text'=>'文字の前','After text'=>'文字の後','Size'=>'サイズ','Button border radius'=>'ボタンの角丸の大きさ','Input text'=>'文字を入力','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'このブロックを折りたたみたい場合は 設定 > VK Blocks から指定できます','You can be collapsing this block at VK Blocks Pro'=>'Pro版は回答部分を開閉式にできます','Please enter a question.'=>'質問を入力してください。','Bgfill Circle'=>'背景塗り 円形','Bgfill Square'=>'背景塗り ピン角','Bgfill Rounded'=>'背景塗り 角丸','Border Circle'=>'枠線 円形','Border Square'=>'枠線 ピン角','Border Rounded'=>'枠線 角丸','Question'=>'質問','Answer'=>'回答','Use common settings'=>'共通設定を使用','* You can change each common accordion settings from Setting > VK Blocks.'=>'* 共通のアコーディオン設定は 設定 > VK Blocks から変更する事ができます。','Display of arrow'=>'矢印の表示','Arrow display'=>'矢印を表示する','Arrow hidden'=>'矢印を表示しない','Input title'=>'タイトルを入力','Input content'=>'説明を入力','Input title…'=>'タイトルを入力','Input sub text…'=>'サブテキストを入力','Heading style'=>'見出しスタイル','Margin between Heading and sub text (rem)'=>'見出しとサブテキストの余白サイズ(rem)','Margin bottom size of after this block (rem)'=>'このブロック全体の下部の余白 (rem)','Heading Settings'=>'見出し設定','Icon Color'=>'アイコンの色','Sub Text Settings'=>'サブテキスト設定','Text size (rem)'=>'文字サイズ (rem)','Change heading level'=>'見出しレベルの変更','Heading %d'=>'見出し %d','Reset'=>'リセット','Icon & Frame'=>'アイコンと枠','Icon only'=>'アイコンのみ','Icon Common Setting'=>'アイコン共通設定','Icon Setting'=>'アイコン設定','Link URL'=>'リンクURL','Unspecified'=>'指定しない','Page Setting'=>'ページ設定','Select Page'=>'ページを選択','This block can display private content. Please note that this content will be public even if you set the original page to private.'=>'このブロックは非公開のコンテンツも表示する事ができます。元のページを非公開に設定してもこのコンテンツは公開されますのでご注意ください。','PR Block1 Setting'=>'PR Block1 設定','Icon 1'=>'アイコン 1','When you have an image. Image is displayed with priority'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 1'=>'PR 画像 1','PR Block2 Setting'=>'PR Block2 設定','Icon 2'=>'アイコン 2','PR Image 2'=>'PR 画像 2','PR Block3 Setting'=>'PR Block3 設定','Icon 3'=>'アイコン 3','When you have an image. Image is displayed with priority.'=>'画像を設定した場合は画像が優先して表示されます。','PR Image 3'=>'PR 画像 3','Input title.'=>'タイトルを入力してください。','Input content.'=>'本文を入力してください。','Select Image'=>'画像を選択','Button Setting'=>'ボタン設定','Button Text'=>'ボタンの文字','Button Type'=>'ボタンタイプ','Ghost'=>'ゴーストボタン','Default Color:'=>'標準色:','Layout Type'=>'レイアウトタイプ','Title Color'=>'見出しの色','Content Color'=>'本文の色','Image Border Color'=>'画像の線の色','Slider item link'=>'スライダーアイテムリンク','Vertical align'=>'縦揃え','Background Image Size'=>'背景画像サイズ','cover'=>'カバー','repeat'=>'リピート','Slide'=>'スライド','Fade'=>'フェード','Loop '=>'繰り返し','AutoPlay'=>'自動再生','Stop AutoPlay when swipe'=>'スワイプ時に自動再生を停止','Display Time'=>'表示時間','Change Speed'=>'切り替え時間','Pagination Type'=>'ページネーションの種類','Number of slides'=>'スライドの枚数','Navigation Position'=>'ナビゲーションの位置','Bottom on Mobile device'=>'モバイルでは下部に表示','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'1.5などの小数点以下の数値を指定する場合は「アクティブスライドを中央にする」に設定してください','The decimal point can be set for the display number only when the display is switched one by one.'=>'表示番号に小数点を設定できるのは、表示を 1 つずつ切り替える場合のみです。','Enter integer divisors for the number of placed slide items for each display size.'=>'各表示サイズのスライド アイテムの配置数の整数の約数を入力します。','If you want to loop slides, the number of placed slide items must be greater than or equal to twice the number of items you want to display per view.'=>'スライドをループさせたい場合、配置されたスライドアイテムの数は、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以上である必要があります。','Multi-item Display Setting'=>'アイテムの複数表示設定','Number of Items to display per view'=>'一度に表示するスライドアイテムの数','Enter divisors for the number of placed slide items for each display size.'=>'配置済みのスライドアイテムを割り切れる数を入力してください。','If the number is not divisible, the sliding behaviour will be unnatural'=>'割り切れない数の場合、スライド動作が不自然になります。','Number of items to change in a transition'=>'一度に遷移するスライドアイテムの数','One by One'=>'1つずつ','Same as the number of items to display'=>'表示アイテム数と同じ','Centering the active slide'=>'アクティブスライドを中央にする','If you specify the center, you can display items that are cut off on the left and right.'=>'中央を指定すると左右が切れたアイテムを表示できます。','Change Slide Editor Mode'=>'スライド編集モードの変更','Edit ( Stacked Layout ) Mode'=>'編集(縦積み配置)モード','Preview ( Slide ) Mode'=>'プレビュー(スライド)モード','Editor Setting'=>'エディタ設定','Editor Mode'=>'編集モード','Edit ( Stacked Layout )'=>'編集(縦積み配置)','Preview ( Slide )'=>'プレビュー(スライド)','Slider Settings'=>'スライド設定','Effect '=>'エフェクト','height'=>'height','margin-top'=>'margin-top','margin-bottom'=>'margin-bottom','Space Type'=>'余白タイプ','Custom'=>'カスタム','You can change each common margin size from Setting > VK Blocks'=>'* 共通の余白サイズは管理画面の 設定 > VK Blocks から変更する事ができます。','Height for each device.'=>'デバイス毎の高さ','Spacer Settings'=>'余白の設定','Your Name'=>'名前','Caption'=>'キャプション','Role position'=>'役職','Profile title'=>'プロフィールタイトル','Profile text'=>'プロフィールテキスト','Layout'=>'レイアウト','Image left'=>'画像 左','Image border'=>'画像の線','Alt text'=>'画像の代替テキスト','Set the alt text for profile image'=>'プロフィール画像の代替テキストを設定します','Staff name'=>'名前','Name caption'=>'名前のキャプション','Heading Font'=>'見出しのフォント','Font'=>'フォント','minchoBody'=>'明朝体にする','Theme'=>'テーマ','Note : Contains double-byte spaces; CSS may not work.'=>'注意 : 全角スペースが含まれています。CSSが効かない可能性があります。','There is an error with your CSS structure.'=>'CSS 構造にエラーがあります。','Card (Image Round)'=>'カード(画像丸抜き)','Card'=>'カード','Card (No border)'=>'カード(線なし)','Card (Intext)'=>'カード(インテキスト)','Card (Horizontal)'=>'カード(水平)','Media'=>'メディア','Text 1 Column'=>'テキスト 1 カラム','Display type and columns'=>'表示タイプとカラム','Column ( Screen size : Extra large )'=>'カラム ( 画面サイズ : Extra large )','Column ( Screen size : XX large )'=>'カラム ( 画面サイズ : XX Large )','Column ( Screen size : Extra small )'=>'カラム ( 画面サイズ : Extra small )','Column ( Screen size : Small )'=>'カラム ( 画面サイズ : Small )','Column ( Screen size : Medium )'=>'カラム ( 画面サイズ : Medium )','Column ( Screen size : Large )'=>'カラム ( 画面サイズ : Large )','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'=>'現在のページ','Link copied to clipboard.'=>'リンクをクリップボードにコピーしました','Deleting Link'=>'リンクを削除','Copy link: %s'=>'リンクをコピー: %s','Copy link'=>'リンクをコピー','Output Before Text Icon'=>'','Output After Text Icon'=>'','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. <Link>Learn more about inserters</Link>.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。','Hidden Settings'=>'非表示設定','Hidden at screen size'=>'非表示にする画面サイズ','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。','Hidden ( Screen size : all )'=>'非表示 ( 画面サイズ : all )','Hidden ( Screen size : xs )'=>'非表示 ( 画面サイズ : xs )','Hidden ( Screen size : sm )'=>'非表示 ( 画面サイズ : sm )','Hidden ( Screen size : md )'=>'非表示 ( 画面サイズ : md )','Hidden ( Screen size : lg )'=>'非表示 ( 画面サイズ : lg )','Hidden ( Screen size : xl )'=>'非表示 ( 画面サイズ : xl )','Hidden ( Screen size : xxl )'=>'非表示 ( 画面サイズ : xxl )','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。','Highlighter'=>'蛍光マーカー','Inline Font Size'=>'インライン文字サイズ','Inline font size'=>'インライン文字サイズ','Apply'=>'適用','Big'=>'大','Extra big'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Responsive BR '=>'画面サイズ毎の改行 ','Column link'=>'カラムリンク','Column Direction'=>'カラムの方向','Reverse'=>'逆','Cover link'=>'カバーリンク','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'theme.json が有効なテーマの場合は「枠線」パネルから色指定が可能になったため、ここでの色指定は非推奨になりました。','Group link'=>'グループリンク','List Icon Color'=>'リストアイコンの色','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','You can scroll'=>'スクロールしたら表示','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','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.<br>Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。<br>これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Display a list of assigned terms from the taxonomy: %s'=>'','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','All of %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 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'=>'投稿リスト','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'投稿タイプ,分類,表示件数が設定して投稿リストを表示します。','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-js.pot b/languages/vk-blocks-pro-js.pot index 5c2bac490..e78a165ce 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -305,7 +305,7 @@ msgstr "" #: src/blocks/_pro/timeline-item/edit.js:71 #: src/blocks/border-box/edit.js:236 #: src/blocks/button/edit.js:677 -#: src/blocks/icon/edit.js:299 +#: src/blocks/icon/edit.js:313 #: src/blocks/staff/edit.js:199 msgid "Color" msgstr "" @@ -323,7 +323,7 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 #: src/blocks/button/edit.js:732 -#: src/blocks/icon/edit.js:304 +#: src/blocks/icon/edit.js:318 msgid "Background Color" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #: src/admin/margin.js:141 #: src/blocks/border-box/edit.js:200 #: src/blocks/icon-outer/edit.js:150 -#: src/blocks/icon/edit.js:140 +#: src/blocks/icon/edit.js:142 msgid "Margin" msgstr "" @@ -1250,10 +1250,10 @@ msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:346 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:283 -#: src/blocks/icon/edit.js:292 +#: src/blocks/icon/edit.js:306 #: src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 -#: src/components/link-toolbar/index.js:279 +#: src/components/link-toolbar/index.js:288 msgid "Open link new tab." msgstr "" @@ -1299,10 +1299,14 @@ msgid "span" msgstr "" #: src/blocks/_pro/fixed-display/edit.js:100 +msgid "Fixed position" +msgstr "" + +#: src/blocks/_pro/fixed-display/edit.js:104 msgid "Top" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:102 +#: src/blocks/_pro/fixed-display/edit.js:106 #: src/blocks/balloon/edit.js:434 #: src/blocks/button/edit.js:375 #: src/blocks/pr-content/edit.js:252 @@ -1310,11 +1314,11 @@ msgstr "" msgid "Right" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:106 +#: src/blocks/_pro/fixed-display/edit.js:110 msgid "Bottom" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:110 +#: src/blocks/_pro/fixed-display/edit.js:114 #: src/blocks/balloon/edit.js:422 #: src/blocks/button/edit.js:355 #: src/blocks/pr-content/edit.js:256 @@ -1322,62 +1326,58 @@ msgstr "" msgid "Left" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:118 +#: src/blocks/_pro/fixed-display/edit.js:122 msgid "Fixed position origin" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:125 +#: src/blocks/_pro/fixed-display/edit.js:129 msgid "Top section" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:132 +#: src/blocks/_pro/fixed-display/edit.js:136 msgid "Bottom section" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:146 +#: src/blocks/_pro/fixed-display/edit.js:150 msgid "Fixed position from the top" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:150 +#: src/blocks/_pro/fixed-display/edit.js:154 msgid "Fixed position from the bottom" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:174 +#: src/blocks/_pro/fixed-display/edit.js:178 msgid "Timing to display" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:190 +#: src/blocks/_pro/fixed-display/edit.js:194 msgid "Persist visibility once visible" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:71 +#: src/blocks/_pro/fixed-display/edit.js:75 msgid "Fixed Display Setting" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:74 +#: src/blocks/_pro/fixed-display/edit.js:78 msgid "" "The fixed position of the fixed position block will not change on the edit " "screen. Please check on the front screen." msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:81 +#: src/blocks/_pro/fixed-display/edit.js:85 #: src/blocks/_pro/table-of-contents-new/edit.js:114 #: src/components/column-layout-control/index.js:69 msgid "Display type" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:86 +#: src/blocks/_pro/fixed-display/edit.js:90 msgid "Always Visible" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:90 +#: src/blocks/_pro/fixed-display/edit.js:94 msgid "Show on Scroll" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:96 -msgid "Fixed position" -msgstr "" - #: src/blocks/_pro/grid-column-item/edit.js:100 #: src/blocks/_pro/gridcolcard/edit-common.js:167 msgid "Color Settings" @@ -1404,7 +1404,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:96 #: src/blocks/_pro/outer/edit.js:1076 #: src/blocks/icon-outer/edit.js:183 -#: src/blocks/icon/edit.js:172 +#: src/blocks/icon/edit.js:174 #: src/utils/unit-options.js:6 msgid "px" msgstr "" @@ -1413,7 +1413,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:100 #: src/blocks/_pro/outer/edit.js:1080 #: src/blocks/icon-outer/edit.js:187 -#: src/blocks/icon/edit.js:176 +#: src/blocks/icon/edit.js:178 #: src/utils/unit-options.js:10 msgid "em" msgstr "" @@ -1422,7 +1422,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:104 #: src/blocks/_pro/outer/edit.js:1084 #: src/blocks/icon-outer/edit.js:191 -#: src/blocks/icon/edit.js:180 +#: src/blocks/icon/edit.js:182 #: src/utils/unit-options.js:14 msgid "rem" msgstr "" @@ -1431,7 +1431,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:108 #: src/blocks/_pro/outer/edit.js:1012 #: src/blocks/icon-outer/edit.js:195 -#: src/blocks/icon/edit.js:184 +#: src/blocks/icon/edit.js:186 #: src/utils/unit-options.js:18 msgid "vw" msgstr "" @@ -1459,20 +1459,20 @@ msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:242 #: src/blocks/_pro/select-post-list-item/edit.js:66 #: src/blocks/button/edit.js:249 -#: src/components/link-toolbar/index.js:238 +#: src/components/link-toolbar/index.js:247 msgid "Unlink" msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:243 #: src/blocks/button/edit.js:250 -#: src/components/link-toolbar/index.js:239 +#: src/components/link-toolbar/index.js:248 msgid "Input Link URL" msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:273 #: src/blocks/_pro/select-post-list-item/edit.js:102 #: src/blocks/button/edit.js:278 -#: src/components/link-toolbar/index.js:273 +#: src/components/link-toolbar/index.js:282 msgid "Submit" msgstr "" @@ -1633,7 +1633,7 @@ msgstr "" #: src/blocks/border-box/edit.js:272 #: src/blocks/button/edit.js:760 #: src/blocks/heading/edit.js:335 -#: src/blocks/icon/edit.js:276 +#: src/blocks/icon/edit.js:290 #: src/blocks/pr-content/edit.js:212 #: src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 @@ -1650,7 +1650,7 @@ msgstr "" #: src/blocks/_pro/icon-card-item/edit.js:153 #: src/blocks/button/edit.js:606 #: src/blocks/icon-outer/edit.js:238 -#: src/blocks/icon/edit.js:224 +#: src/blocks/icon/edit.js:226 #: src/blocks/pr-blocks/edit.js:285 msgid "Solid color" msgstr "" @@ -1909,7 +1909,7 @@ msgstr "" #: src/blocks/_pro/outer/edit.js:904 #: src/blocks/icon-outer/edit.js:212 -#: src/blocks/icon/edit.js:201 +#: src/blocks/icon/edit.js:203 msgid "Border radius" msgstr "" @@ -2062,7 +2062,7 @@ msgstr "" #: src/blocks/_pro/table-of-contents-new/edit.js:119 #: src/blocks/_pro/timeline-item/edit.js:74 #: src/blocks/icon-outer/edit.js:229 -#: src/blocks/icon/edit.js:216 +#: src/blocks/icon/edit.js:218 msgid "Style" msgstr "" @@ -2643,7 +2643,7 @@ msgstr "" #: src/blocks/button/edit.js:796 #: src/blocks/icon-outer/edit.js:89 -#: src/blocks/icon/edit.js:82 +#: src/blocks/icon/edit.js:84 msgid "Size" msgstr "" @@ -2763,7 +2763,7 @@ msgid "Heading Settings" msgstr "" #: src/blocks/heading/edit.js:357 -#: src/blocks/icon/edit.js:313 +#: src/blocks/icon/edit.js:327 msgid "Icon Color" msgstr "" @@ -2785,17 +2785,17 @@ msgid "Heading %d" msgstr "" #: src/blocks/icon-outer/edit.js:208 -#: src/blocks/icon/edit.js:197 +#: src/blocks/icon/edit.js:199 msgid "Reset" msgstr "" #: src/blocks/icon-outer/edit.js:246 -#: src/blocks/icon/edit.js:235 +#: src/blocks/icon/edit.js:237 msgid "Icon & Frame" msgstr "" #: src/blocks/icon-outer/edit.js:254 -#: src/blocks/icon/edit.js:246 +#: src/blocks/icon/edit.js:248 msgid "Icon only" msgstr "" @@ -2803,11 +2803,11 @@ msgstr "" msgid "Icon Common Setting" msgstr "" -#: src/blocks/icon/edit.js:273 +#: src/blocks/icon/edit.js:287 msgid "Icon Setting" msgstr "" -#: src/blocks/icon/edit.js:287 +#: src/blocks/icon/edit.js:301 #: src/blocks/pr-content/edit.js:122 msgid "Link URL" msgstr "" @@ -3326,7 +3326,7 @@ msgstr "" msgid "Currently selected" msgstr "" -#: src/components/link-toolbar/index.js:308 +#: src/components/link-toolbar/index.js:317 msgid "Link copied to clipboard." msgstr "" @@ -3677,27 +3677,27 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:221 +#: src/extensions/core/table/style.js:226 msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:229 +#: src/extensions/core/table/style.js:234 msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:236 +#: src/extensions/core/table/style.js:241 msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:243 +#: src/extensions/core/table/style.js:248 msgid "Mobile size" msgstr "" -#: src/extensions/core/table/style.js:250 +#: src/extensions/core/table/style.js:255 msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:257 +#: src/extensions/core/table/style.js:262 msgid "PC size" msgstr "" diff --git a/languages/vk-blocks-pro.l10n.php b/languages/vk-blocks-pro.l10n.php index 357a3af90..95b531852 100644 --- a/languages/vk-blocks-pro.l10n.php +++ b/languages/vk-blocks-pro.l10n.php @@ -1,3 +1,6 @@ <?php -return ['domain'=>'vk-blocks-pro','plural-forms'=>NULL,'language'=>'','project-id-version'=>'VK Blocks Pro 1.56.0.0','pot-creation-date'=>'2023-06-02T07:05:03+00:00','po-revision-date'=>'YEAR-MO-DA HO:MI+ZONE','x-generator'=>'Poedit 3.3.1','messages'=>['Save Success'=>' -develop:languages/vk-blocks-pro.po']]; \ No newline at end of file +return ['domain'=>'vk-blocks-pro','plural-forms'=>NULL,'messages'=>['Added balloon image setting'=>'','Balloon Image Setting'=>'','Would you like to delete %s?'=>'','Cancel'=>'','Delete'=>'','Select'=>'','Balloon Image Name'=>'','Balloon Setting'=>'','Balloon Border Width Setting'=>'','1px'=>'','2px'=>'','3px'=>'','4px'=>'','You can register frequently used icon images for speech bubble blocks.'=>'','image'=>'','Block Manager Setting'=>'','Block Style Manager Setting'=>'','Block Style Label (Changeable)'=>'','Add'=>'','Add Custom Block Style'=>'','Target Block (Required/Unchangeable)'=>'','Set the target block.'=>'','Search for a block'=>'','Please enter a string'=>'','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'','Class name is required'=>'','Already registered'=>'','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'','This will be the CSS class name following is-style-.'=>'','(e.g.) %s-block-style'=>'','Custom Block Style Setting'=>'','Block style settings can be registered.'=>'','Target block'=>'','CSS class'=>'','If selector is specified, it will be replaced with CSS class (<code>.is-style-%1$s</code>). CSS selectors other than selector,<code>.is-style-%2$s</code> may affect the entire page.'=>'','Block Style Labels'=>'','※ Required If no title is entered, it will not appear on the toolbar.'=>'','If this Block Style is used for saved content, the style may change.'=>'','Edit'=>'','Custom CSS Setting'=>'','Show Custom CSS flag in editor'=>'','Add Custom Format'=>'','CSS class/unique ID (Required/Unchangeable)'=>'','(e.g.) vk-format-1'=>'','Toolbar title (Changeable)'=>'','Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.'=>'','Custom Format'=>'','If the saved content has this format, the style will be unstyled.'=>'','Format Setting'=>'','Bold'=>'','Italic'=>'','Strikethrough'=>'','Nowrap'=>'','Color'=>'','Text Color'=>'','Background Color'=>'','Highlighter Color'=>'','Activate Highlighter'=>'','Custom CSS'=>'','If selector is specified, it will be replaced by a unique CSS class (<code>.%s</code>); CSS selectors other than selector may affect the entire page.'=>'','Example:'=>'','Custom Format Setting'=>'','You can apply commonly used formatting on the block toolbar.'=>'','Toolbar title'=>'','Preview Text'=>'','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'','License key'=>'','Load Separate Setting'=>'','Note that the order in which CSS/JS are loaded will change.'=>'','Load Separate Option on'=>'','Custom Value'=>'','If you enter a custom value, the values you entered will be used as a priority.'=>'','This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.'=>'','ex)'=>'','Margin'=>'','XS'=>'','S'=>'','M'=>'','L'=>'','XL'=>'','PC'=>'','Tablet'=>'','Mobile'=>'','Common Margin Setting'=>'','Please specify the size of the common margin used for responsive spacers, etc.'=>'','Unit'=>'','FAQ Block Setting'=>'','Disable accordion'=>'','Enable accordion and default open'=>'','Enable accordion and default close'=>'','Save setting'=>'','Save Success'=>' +develop:languages/vk-blocks-pro.po','No background color'=>'','No background color / Border'=>'','Background color'=>'','Background color / Border'=>'','Background color / Rounded '=>'','Background color / Rounded / Border'=>'','Slow'=>'','Fast'=>'','Very Fast'=>'','Animation range'=>'','Short'=>'','Normal'=>'','Long'=>'','Animation only the first view'=>'','Animation Settings'=>'','Animation effect'=>'','Fade In'=>'','Slide Up'=>'','Slide Left'=>'','Slide Right'=>'','Left Right'=>'','Up Down'=>'','Trembling Y'=>'','Trembling X'=>'','Pounding'=>'','Shaking'=>'','Animation speed'=>'','Very Slow'=>'','Archive List Setting'=>'','Post type'=>'','Archive type'=>'','Monthly'=>'','Yearly'=>'','Display as dropdown'=>'','Show post counts'=>'','Button Common Setting'=>'','Button gap size'=>'','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'','Title'=>'','Select image'=>'','Delete Image'=>'','URL'=>'','https://example.com'=>'','Display item'=>'','Excerpt Text'=>'','Warning! When you hidden this item, you will lose the content.'=>'','Image'=>'','Button'=>'','Button option'=>'','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'','Button text'=>'','Image Height'=>'','Slide Height for each device.'=>'','There are no Page.'=>'','Display conditions'=>'','Parent'=>'','Ignore this post'=>'','Current page'=>'','Please select display element from the Setting sidebar.'=>'','Post Type Name'=>'','Ancestor Page Title'=>'','Display element settings'=>'','Display element'=>'','Please Select'=>'','Post type name of the page being viewed'=>'','Page name in the ancestor hierarchy of the displayed page'=>'','Hide on Ancestor Hierarchy Pages'=>'','This block will not display on pages other than pages that have a parent hierarchy.'=>'','HTML element'=>'','div (default)'=>'','h1'=>'','h2'=>'','h3'=>'','h4'=>'','h5'=>'','h6'=>'','p'=>'','span'=>'','Color Settings'=>'','Margin setting inside the item'=>'','Padding (Top)'=>'','Padding (Left and Right)'=>'','Padding (Bottom)'=>'','px'=>'','em'=>'','rem'=>'','vw'=>'','Layout Columns'=>'','Column Margin Bottom Setting'=>'','Margin Bottom'=>'','You can create a variety of layouts with grid column card blocks.'=>'','Unlink'=>'','Input Link URL'=>'','Submit'=>'','Edit mode'=>'','All columns'=>'','This column only'=>'','Edit Lock'=>'','Lock edits this block from the parent and other Grid Column Item block'=>'','Column Setting'=>'','Link URL:'=>'','Open link new tab.'=>'','If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.'=>'','Make sure that no link is specified for the image block, etc.'=>'','Image fit to column'=>'','Column footer button area'=>'','Display'=>'','Hide'=>'','Column Radius'=>'','Border'=>'','Border Color'=>'','Column padding'=>'','Column header media area'=>'','Column Width Setting'=>'','If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.'=>'','Column min width (Mobile)'=>'','Column min width (Tablet / Optional)'=>'','Column min width (PC / Optional)'=>'','Column Gap Setting'=>'','Column gap size'=>'','Column row-gap size (optional)'=>'','Specify all columns at once'=>'','Input Title'=>'','Input Content'=>'','Icon Card Setting'=>'','Icon'=>'','Icon Background:'=>'','Solid color'=>'','No background'=>'','Columns'=>'','Align'=>'','Text'=>'','Background Setting'=>'','Color Setting'=>'','Color will overcome background image. If you want to display image, set opacity 0.'=>'','Opacity Setting'=>'','Background Image PC'=>'','Background Image Tablet'=>'','Background Image Mobile'=>'','Background image Position'=>'','Repeat'=>'','Cover'=>'','Cover fixed (Not fixed on iPhone)'=>'','Parallax (Non-guaranteed)'=>'','Layout Setting'=>'','Width'=>'','Fit to the Content area'=>'','Add padding to the Outer area'=>'','Remove padding from the Outer area'=>'','Padding (Top and Bottom)'=>'','Use default padding'=>'','Do not use default padding'=>'','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'','Divider Setting'=>'','Type'=>'','Tilt'=>'','Curve'=>'','Wave'=>'','Triangle'=>'','Upper Divider Level'=>'','Lower Divider Level'=>'','Border Setting'=>'','Border will disappear when divider effect is applied.'=>'','Border type'=>'','None'=>'','Solid'=>'','Dotted'=>'','Dashed'=>'','Double'=>'','Groove'=>'','Ridge'=>'','Inset'=>'','Outset'=>'','Border width'=>'','Border radius'=>'','Container Inner Side Space Setting'=>'','Unit Type'=>'','Filter by %s'=>'','Filter by PostTypes'=>'','Taxonomy filter condition'=>'','OR ( Whichever apply )'=>'','AND ( All apply )'=>'','Number of Posts'=>'','Filter by Date'=>'','Period of Time'=>'','Whole Period'=>'','From Today'=>'','From Now'=>'','From Tomorrow'=>'','* If you choose a future period, you will need to customize it so that future posts will be published immediately.'=>'','Order'=>'','ASC'=>'','DESC'=>'','Order by'=>'','Published Date'=>'','Modefied Date'=>'','Random'=>'','offset'=>'','Because no post is selected, The block Will not render'=>'','Input Internal Post URL'=>'','Ex,6:00AM'=>'','Style +develop:languages/vk-blocks-pro.po'=>'','Outlined'=>'','Default'=>'','Step Mark'=>'','If Font Awesome tags entered, it will overrides the number.'=>'','First Dot Number'=>'','Tab Color Setting'=>'','Tab Color'=>'','Body Layout Setting'=>'','Padding of Tab Body'=>'','Tab Item'=>'','Tab Label [ %s ]'=>'','Tab size Setting'=>'','Tab Size ( Smart Phone )'=>'','Tab Size ( Tablet )'=>'','Tab Size ( PC )'=>'','Fit to the text'=>'','Monospaced'=>'','Padding Setting Mode'=>'','Separate'=>'','Tab 01'=>'','Bundle'=>'','Tab 02'=>'','Tab'=>'','Normal No Frame'=>'','Line'=>'','Line No Frame'=>'','Table of Contents'=>'','Note on duplicating headings'=>'','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'','Display type'=>'','No frame'=>'','Default Display Status'=>'','OPEN'=>'','CLOSE'=>'','Show only top level categories'=>'','Hide if term has no posts'=>'','Show hierarchy'=>'','This block will not be displayed because no taxonomy is selected.'=>'','This block will not be displayed because this taxonomy has no term.'=>'','Taxonomy Block Option'=>'','Taxonomy'=>'','label'=>'','Style Settings'=>'','Success'=>'','Info'=>'','Warning'=>'','Danger'=>'','Don\'t display inactive grand child pages'=>'','Ancestor Page List Setting'=>'','Display Ancestor Page Title'=>'','Archive title tag'=>'','Ancestor page title class name'=>'','Add link to ancestor page title'=>'','If there is no child page, the block itself is not displayed'=>'',' Image Border'=>'','Add border to image'=>'','* You can change border width on Setting > VK Blocks'=>'','Border color of speech balloon'=>'','Add border to balloon'=>'','Balloon setting'=>'','Position'=>'','Please specify the layout of the balloon.'=>'','Left'=>'','Right'=>'','Please select the type of balloon.'=>'','Speech'=>'','Thinking'=>'','Image Style'=>'','Rounded'=>'','Circle'=>'','100%'=>'','Background color of speech balloon'=>'','Default Icon Setting'=>'','You can register default icons from Settings > VK Blocks in Admin.'=>'','Animation setting'=>'','Please select the type of animation.'=>'','Trembling'=>'','Upload image'=>'','Icon Name'=>'','Please enter a title.'=>'','The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.'=>'','Transparent'=>'','White'=>'','Solid Angle Tab'=>'','Solid Round Tab'=>'','Solid Angle Banner'=>'','Solid Angle Onborder'=>'','Solid Angle Inner'=>'','Solid Angle iconFeature'=>'','Button setting'=>'','Sub Caption'=>'','Button Size:'=>'','Large'=>'','Small'=>'','Button Position:'=>'','Center'=>'','Wide'=>'','Block'=>'','Button Width:'=>'','25%'=>'','50%'=>'','75%'=>'','Button Style:'=>'','Text only'=>'','If you select "No background", that you need to select a Custom Color.'=>'','Button Effect:'=>'','Shine'=>'','Default Color (Bootstrap)'=>'','Primary'=>'','Secondary'=>'','Light'=>'','Dark'=>'','Custom Color'=>'','Button Color'=>'','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'','Before text'=>'','After text'=>'','Size'=>'','Input text'=>'','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'','You can be collapsing this block at VK Blocks Pro'=>'','Accordion Setting'=>'','Please enter a question.'=>'','Bgfill Circle'=>'','Bgfill Square'=>'','Bgfill Rounded'=>'','Border Circle'=>'','Border Square'=>'','Border Rounded'=>'','Display of arrow'=>'','Arrow display'=>'','Arrow hidden'=>'','Input title'=>'','Input content'=>'','Input sub text…'=>'','Input title…'=>'','Heading style'=>'','Plain'=>'','Margin Setting'=>'','Margin between Heading and sub text (rem)'=>'','Margin bottom size of after this block (rem)'=>'','Heading Settings'=>'','Icon Color'=>'','Sub Text Settings'=>'','Text size (rem)'=>'','Change heading level'=>'','Heading %d'=>'','Reset'=>'','Icon & Frame'=>'','Icon only'=>'','Icon Common Setting'=>'','Icon Setting'=>'','Link URL'=>'','Unspecified'=>'','Page Setting'=>'','Select Page'=>'','This block can display private content. Please note that this content will be public even if you set the original page to private.'=>'','PR Block1 Setting'=>'','Icon 1'=>'','When you have an image. Image is displayed with priority'=>'','PR Image 1'=>'','PR Block2 Setting'=>'','Icon 2'=>'','PR Image 2'=>'','PR Block3 Setting'=>'','Icon 3'=>'','When you have an image. Image is displayed with priority.'=>'','PR Image 3'=>'','Input title.'=>'','Input content.'=>'','Select Image'=>'','Button Setting'=>'','Button Text'=>'','Button Type'=>'','Ghost'=>'','Default Color:'=>'','Layout Type'=>'','Title Color'=>'','Content Color'=>'','Image Border Color'=>'','Fit to the Container area'=>'','Add padding to the Slider area'=>'','Remove padding from the Slider area'=>'','Vertical align'=>'','Background Image Size'=>'','cover'=>'','repeat'=>'','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'','The decimal point can be set for the display number only when the display is switched one by one.'=>'','Enter integer divisors for the number of placed slide items for each display size.'=>'','If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.'=>'','Multi-item Display Setting'=>'','Number of Items to display per view'=>'','Enter divisors for the number of placed slide items for each display size.'=>'','If the number is not divisible, the sliding behaviour will be unnatural'=>'','Number of items to change in a transition'=>'','One by One'=>'','Same as the number of items to display'=>'','Centering the active slide'=>'','If you specify the center, you can display items that are cut off on the left and right.'=>'','Full Wide'=>'','Height'=>'','Slider Settings'=>'','Effect '=>'','Slide'=>'','Fade'=>'','Loop '=>'','AutoPlay'=>'','Stop AutoPlay when swipe'=>'','Display Time'=>'','Change Speed'=>'','Pagination Type'=>'','Number of slides'=>'','Navigation Position'=>'','Bottom on Mobile device'=>'','height'=>'','margin-top'=>'','margin-bottom'=>'','Space Type'=>'','Custom'=>'','You can change each common margin size from Setting > VK Blocks'=>'','Height for each device.'=>'','Spacer Settings'=>'','Medium'=>'','Your Name'=>'','Caption'=>'','Role position'=>'','Profile title'=>'','Profile text'=>'','Layout'=>'','Image left'=>'','Image border'=>'','Alt text'=>'','Set the alt text for profile image'=>'','Staff name'=>'','Name caption'=>'','Heading Font'=>'','Font'=>'','minchoBody'=>'','Note : Contains double-byte spaces; CSS may not work.'=>'','There is an error with your CSS structure.'=>'','Card (Image Round)'=>'','Card'=>'','Card (No border)'=>'','Card (Intext)'=>'','Card (Horizontal)'=>'','Media'=>'','Text 1 Column'=>'','Display type and columns'=>'','Column ( Screen size : Extra large )'=>'','Column ( Screen size : XX large )'=>'','Column ( Screen size : Extra small )'=>'','Column ( Screen size : Small )'=>'','Column ( Screen size : Medium )'=>'','Column ( Screen size : Large )'=>'','Button align'=>'','Term\'s name on Image'=>'','Excerpt'=>'','Author'=>'','Date'=>'','New mark'=>'','Taxonomies (all)'=>'','New mark option'=>'','Number of days to display the new post mark'=>'','New post mark'=>'','Link target'=>'','Open in new tab'=>'','Link rel'=>'','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'','Hidden Settings'=>'','Hidden at screen size'=>'','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'','Hidden ( Screen size : all )'=>'','Hidden ( Screen size : xs )'=>'','Hidden ( Screen size : sm )'=>'','Hidden ( Screen size : md )'=>'','Hidden ( Screen size : lg )'=>'','Hidden ( Screen size : xl )'=>'','Hidden ( Screen size : xxl )'=>'','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'','Highlighter'=>'','Inline Font Size'=>'','Inline font size'=>'','Apply'=>'','Big'=>'','Extra big'=>'','Top XL'=>'','Margin the block'=>'','Top L'=>'','Top M'=>'','Top S'=>'','Top XS'=>'','Top 0'=>'','Bottom 0'=>'','Bottom XS'=>'','Bottom S'=>'','Bottom M'=>'','Bottom L'=>'','Bottom XL'=>'','No wrap'=>'','Responsive BR'=>'','Responsive BR '=>'','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'','List Icon Color'=>'','Theoretical Physicist'=>'','Profile'=>'','Albert Einstein'=>'','14 March 1879 – 18 April 1955'=>'','Lorem ipsum dolor'=>'','Lorem ipsum'=>'','Font Awesome icon list'=>'','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'','Ex) '=>'','When you click save button, the window will be reloaded and this setting will be applied.'=>'','Save'=>'','Select Icon'=>'','vh'=>'','svh'=>'','lvh'=>'','dvh'=>'','VK Blocks Pro'=>'','https://github.com/vektor-inc/vk-blocks'=>'','This is a plugin that extends Block Editor.'=>'','Vektor,Inc.'=>'','https://vektor-inc.co.jp'=>'','We\'ve released VK Blocks Pro!'=>'','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'','See more'=>'','Dismiss this notice'=>'','Setting saved.'=>'','Install Required Plugins'=>'','Install Plugins'=>'','Installing Plugin: %s'=>'','Something went wrong with the plugin API.'=>'','This plugin requires the following plugin: %1$s.'=>'' . "\0" . '','This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'' . "\0" . '','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'' . "\0" . '','There is an update available for: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'' . "\0" . '','The following required plugin is currently inactive: %1$s.'=>'' . "\0" . '','The following recommended plugin is currently inactive: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'' . "\0" . '','Begin installing plugin'=>'' . "\0" . '','Begin updating plugin'=>'' . "\0" . '','Begin activating plugin'=>'' . "\0" . '','Return to Required Plugins Installer'=>'','Plugin activated successfully.'=>'','The following plugin was activated successfully:'=>'','No action taken. Plugin %1$s was already active.'=>'','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'','All plugins installed and activated successfully. %1$s'=>'','Please contact the administrator of this site for help.'=>'','Sorry, there is no post'=>'','Vektor WordPress Information'=>'','Enable accordion and default open '=>'','Enable accordion and default close '=>'','FAQ Setting'=>'','If you change image or name that please click Save Changes button.'=>'','Enter a valid Lightning G3 Pro Pack or Lightning Pro license key.'=>'','Load Separete Setting'=>'','Load Separete Option on'=>'','Blocks setting'=>'','label in admin menuBlocks'=>'','Blocks Setting'=>'','License Key'=>'','Balloon Block Setting'=>'','Setting'=>'','Edit this area'=>'','Blocks'=>'','Blocks Layout'=>'','Deprecated Blocks'=>'','Dummy Text'=>'','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'','This message only display on the edit screen.'=>'','Please select year'=>'','Please select month'=>'','Please select taxonomy'=>'','Categories'=>'','All of %s'=>'','Background fill lightgray'=>'','Double border top and bottom black'=>'','Double border bottom black'=>'','Solid border top and bottom black'=>'','Solid border bottom black'=>'','Dotted border bottom black'=>'','Both ends'=>'','Brackets black'=>'','Arrow'=>'','Check'=>'','Check Square'=>'','Check Circle'=>'','Handpoint'=>'','Pencil'=>'','Smile'=>'','Frown'=>'','Numbered Circle'=>'','Numbered Square'=>'','Border Top Bottom'=>'','Border / Stripes'=>'','Rounded02'=>'','Photo frame'=>'','Photo frame Tilt Right'=>'','Photo frame Tilt Left'=>'','Shadow'=>'','Wave01'=>'','Wave02'=>'','Wave03'=>'','Wave04'=>'','Solid Roundcorner'=>'','Stitch'=>'','Post'=>'','There are no %ss.'=>'','Read more'=>'','New!!'=>'','More'=>'','Posts navigation'=>'','Posts'=>'','Page'=>'','Card Noborder'=>'','Card Intext'=>'','Card Horizontal'=>'','post list typeText 1 Column'=>'','CSS Optimize ( Speed up ) Settings'=>'','Tree shaking'=>'','Tree shaking activation settings'=>'','Output only the main CSS of the page inline'=>'','Nothing to do'=>'','Active Tree shaking (Recomend)'=>'','Exclude class of Tree shaking'=>'','If you choose "Active Tree shaking" that delete the useless css.If you using active css class that please fill in class name. Ex) btn-active,slide-active,scrolled'=>'','Preload CSS'=>'','Preload CSS activation settings'=>'','Preload css except for critical css'=>'','Active Preload CSS (Recomend)'=>'','Exclude class of Preload CSS'=>'','If you choose "Active Preload CSS" that css load timing was changed.If you have any do not want to preload css file that please fill in handle(id) name. Ex) pluginname_a-style,pluginname_b-css'=>'','Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.'=>'','License Key has no registered.'=>'','The VK Blocks Pro license is invalid.'=>'','Enter a valid license key for any of the following products on the settings screen.'=>'','Enter the license key'=>'','If this display does not disappear even after entering a valid license key, re-acquire the update.'=>'','Re-acquisition of updates'=>'','VK Blocks '=>'','Please enter a valid license key for any of the following products on the settings screen.'=>'','block titleAlert'=>'','block descriptionA colored box with four statuses, including annotations and alerts.'=>'','block titlePage list from ancestor'=>'','block descriptionDisplay Page list from ancestor page'=>'','block titleBallon'=>'','block descriptionThese speech balloons are perfect for recreating conversations.'=>'','block titleBorder Box'=>'','block descriptionThis is a border box where you can place headings to attract attention.'=>'','block titleButton'=>'','block descriptionA button link that can display icons before and after.'=>'','block titleClassic FAQ'=>'','block descriptionDisplays a combination of questions and answers.'=>'','block titleFAQ Answer'=>'','block descriptionAnswer area where you can add blocks freely.'=>'','block titleFAQ Question'=>'','block descriptionQuestion area where you can freely add blocks.'=>'','block titleNew FAQ'=>'','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'','block titleFlow'=>'','block descriptionDisplays a sequential description in time series.'=>'','block titleHeading'=>'','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'','block titleIcon Outer'=>'','block descriptionDisplay the Font Awesome icons horizontally.'=>'','block titleIcon'=>'','block descriptionDisplay icons with Font Awesome.'=>'','block titlePage Content'=>'','block descriptionDisplays the body content of the specified parent page.'=>'','block titlePR Blocks (not recommended)'=>'','block descriptionThis is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.'=>'','block titlePR Content'=>'','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'','block titleSlider Item'=>'','block descriptionThis is one item in the slider.'=>'','block titleSlider'=>'','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'','block titleResponsive Spacer'=>'','block descriptionUse responsive spacers to get the margins right.'=>'','block titleStaff'=>'','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'','block titleAccordion Target'=>'','block descriptionThis is the content area where you can add blocks freely.'=>'','block titleAccordion Trigger'=>'','block descriptionThis is the title area where you can freely add blocks.'=>'','block titleAccordion'=>'','block descriptionCollapses and hides content when the content is long.'=>'','block titleAnimation'=>'','block descriptionAdd animation to elements when scrolling the page.'=>'','block titleArchive list'=>'','block descriptionDisplays a list of archives'=>'','block titleBreadcrumb'=>'','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'','block titleButton Outer'=>'','block descriptionDisplay the VK Button block horizontally.'=>'','block titleCard Item'=>'','block descriptionA single item in a card block.'=>'','block titleCard'=>'','block descriptionA card where you can place images, headings, text, and links.'=>'','block titleChild page list'=>'','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'','block titleDynamic Text'=>'','block descriptionDisplay dynamic text'=>'','block titleGrid Column Item'=>'','block descriptionOne item in a grit column block.'=>'','block titleGrid Column'=>'','block descriptionSet the number of columns to be displayed for each screen size.'=>'','block titleGrid Column Card Item Body'=>'','block descriptionBody of Grid Column Card Block Item'=>'','block titleGrid Column Card Item Footer'=>'','block descriptionFooter button area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item header'=>'','block descriptionHeader image area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item'=>'','block descriptionIt is a block of single column of Grid Column Card.'=>'','block titleGrid Column Card'=>'','block descriptionThis block can flexible column layout'=>'','block titleIcon Card Item'=>'','block descriptionThis is one item in an icon card.'=>'','block titleIcon Card'=>'','block descriptionDisplay card with icons, headings, text, and links.'=>'','block titleOuter'=>'','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'','block titlePost list'=>'','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'','block titleSelected Post List Item'=>'','block descriptionA single item in the select post list.'=>'','block titleSelected Post List'=>'','block description +HEAD:inc/vk-blocks/languages/vk-blocks.potDisplays an arbitrarily specified page with the layout of the posting list.'=>'','block descriptionDisplays an arbitrarily specified page with the layout of the posting list. +develop:languages/vk-blocks-pro.po'=>'','block titleStep Item'=>'','block descriptionThis element sets the icon, color, and style of the step mark.'=>'','block titleStep'=>'','block descriptionSet and display step marks, which are useful when explaining the order.'=>'','block titleTable of Contents'=>'','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'','block titleTaxonomy'=>'','block descriptionDisplay Taxnomy List Pulldown'=>'','block titleTimeline Item'=>'','block descriptionThis element sets the label, color, and style of the timeline.'=>'','block titleTimeline'=>'','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>''],'language'=>'','x-generator'=>'Poedit 3.3.1']; \ No newline at end of file diff --git a/languages/vk-blocks-pro.pot b/languages/vk-blocks-pro.pot index 40745efe6..b4614904f 100644 --- a/languages/vk-blocks-pro.pot +++ b/languages/vk-blocks-pro.pot @@ -2,16 +2,16 @@ # This file is distributed under the same license as the VK Blocks Pro plugin. msgid "" msgstr "" -"Project-Id-Version: VK Blocks Pro 1.85.1.1\n" +"Project-Id-Version: VK Blocks Pro 1.86.0.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-10-04T02:39:44+00:00\n" +"POT-Creation-Date: 2024-10-08T14:42:00+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.11.0\n" +"X-Generator: WP-CLI 2.10.0\n" "X-Domain: vk-blocks-pro\n" #: src/admin/balloon/add-button.js:38 @@ -92,6 +92,7 @@ msgid "image" msgstr "" #: src/admin/block-category-position.js:20 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:109 #: inc/vk-blocks/admin/admin.php:109 msgid "Block Category Position Setting" msgstr "" @@ -106,17 +107,20 @@ msgstr "" #: src/admin/block-manager/index.js:51 #: src/admin/import-export/index.js:106 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:118 #: inc/vk-blocks/admin/admin.php:118 msgid "Block Manager Setting" msgstr "" #: src/admin/block-style-manager/index.js:27 #: src/admin/import-export/index.js:115 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:119 #: inc/vk-blocks/admin/admin.php:119 msgid "Block Style Manager Setting" msgstr "" #: src/admin/breadcrumb.js:24 +#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:15 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:15 msgid "Breadcrumb Setting" msgstr "" @@ -209,6 +213,7 @@ msgstr "" #: src/admin/custom-block-style/index.js:77 #: src/admin/custom-block-style/item/title-area/delete-button/index.js:31 #: src/admin/import-export/index.js:52 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:113 #: inc/vk-blocks/admin/admin.php:113 msgid "Custom Block Style Setting" msgstr "" @@ -252,6 +257,7 @@ msgstr "" #: src/admin/custom-css.js:20 #: src/admin/import-export/index.js:96 #: src/extensions/common/custom-css-extension/index.js:225 +#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:16 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:16 msgid "Custom CSS Setting" msgstr "" @@ -315,7 +321,7 @@ msgstr "" #: src/blocks/_pro/timeline-item/edit.js:71 #: src/blocks/border-box/edit.js:236 #: src/blocks/button/edit.js:677 -#: src/blocks/icon/edit.js:299 +#: src/blocks/icon/edit.js:313 #: src/blocks/staff/edit.js:199 msgid "Color" msgstr "" @@ -333,7 +339,7 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:175 #: src/blocks/border-box/edit.js:248 #: src/blocks/button/edit.js:732 -#: src/blocks/icon/edit.js:304 +#: src/blocks/icon/edit.js:318 msgid "Background Color" msgstr "" @@ -362,6 +368,7 @@ msgstr "" #: src/admin/custom-format/index.js:50 #: src/admin/import-export/index.js:39 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:112 #: inc/vk-blocks/admin/admin.php:112 msgid "Custom Format Setting" msgstr "" @@ -449,11 +456,13 @@ msgid "Breadcrumb Separator Setting" msgstr "" #: src/admin/import-export/index.js:15 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:107 #: inc/vk-blocks/admin/admin.php:107 msgid "License Key" msgstr "" #: src/admin/import-export/index.js:167 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:120 #: inc/vk-blocks/admin/admin.php:120 msgid "Import Export Tool" msgstr "" @@ -512,7 +521,7 @@ msgstr "" #: src/admin/margin.js:141 #: src/blocks/border-box/edit.js:200 #: src/blocks/icon-outer/edit.js:150 -#: src/blocks/icon/edit.js:140 +#: src/blocks/icon/edit.js:142 msgid "Margin" msgstr "" @@ -579,6 +588,7 @@ msgid "Mobile" msgstr "" #: src/admin/margin.js:72 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:115 #: inc/vk-blocks/admin/admin.php:115 msgid "Common Margin Setting" msgstr "" @@ -670,6 +680,7 @@ msgstr "" #: src/blocks/_pro/accordion/index.js:47 #: src/blocks/heading/edit.js:268 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:296 #: inc/vk-blocks/class-vk-blocks-global-settings.php:296 msgid "Plain" msgstr "" @@ -701,6 +712,7 @@ msgstr "" #: src/blocks/faq/index.js:26 #: src/blocks/faq2/index.js:21 #: src/extensions/common/inline-font-size/inline.js:28 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:514 #: inc/vk-blocks/class-vk-blocks-global-settings.php:514 msgid "Normal" msgstr "" @@ -1129,6 +1141,7 @@ msgid "Post Type Name" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:136 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: src/blocks/ancestor-page-list/index.php:44 msgid "Ancestor Page Title" @@ -1242,10 +1255,10 @@ msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:346 #: src/blocks/_pro/icon-card-item/edit.js:128 #: src/blocks/button/edit.js:283 -#: src/blocks/icon/edit.js:292 +#: src/blocks/icon/edit.js:306 #: src/blocks/pr-blocks/edit.js:262 #: src/blocks/pr-content/edit.js:131 -#: src/components/link-toolbar/index.js:279 +#: src/components/link-toolbar/index.js:288 msgid "Open link new tab." msgstr "" @@ -1291,10 +1304,14 @@ msgid "span" msgstr "" #: src/blocks/_pro/fixed-display/edit.js:100 +msgid "Fixed position" +msgstr "" + +#: src/blocks/_pro/fixed-display/edit.js:104 msgid "Top" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:102 +#: src/blocks/_pro/fixed-display/edit.js:106 #: src/blocks/balloon/edit.js:434 #: src/blocks/button/edit.js:375 #: src/blocks/pr-content/edit.js:252 @@ -1302,11 +1319,11 @@ msgstr "" msgid "Right" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:106 +#: src/blocks/_pro/fixed-display/edit.js:110 msgid "Bottom" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:110 +#: src/blocks/_pro/fixed-display/edit.js:114 #: src/blocks/balloon/edit.js:422 #: src/blocks/button/edit.js:355 #: src/blocks/pr-content/edit.js:256 @@ -1314,60 +1331,56 @@ msgstr "" msgid "Left" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:118 +#: src/blocks/_pro/fixed-display/edit.js:122 msgid "Fixed position origin" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:125 +#: src/blocks/_pro/fixed-display/edit.js:129 msgid "Top section" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:132 +#: src/blocks/_pro/fixed-display/edit.js:136 msgid "Bottom section" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:146 +#: src/blocks/_pro/fixed-display/edit.js:150 msgid "Fixed position from the top" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:150 +#: src/blocks/_pro/fixed-display/edit.js:154 msgid "Fixed position from the bottom" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:174 +#: src/blocks/_pro/fixed-display/edit.js:178 msgid "Timing to display" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:190 +#: src/blocks/_pro/fixed-display/edit.js:194 msgid "Persist visibility once visible" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:71 +#: src/blocks/_pro/fixed-display/edit.js:75 msgid "Fixed Display Setting" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:74 +#: src/blocks/_pro/fixed-display/edit.js:78 msgid "The fixed position of the fixed position block will not change on the edit screen. Please check on the front screen." msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:81 +#: src/blocks/_pro/fixed-display/edit.js:85 #: src/blocks/_pro/table-of-contents-new/edit.js:114 #: src/components/column-layout-control/index.js:69 msgid "Display type" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:86 +#: src/blocks/_pro/fixed-display/edit.js:90 msgid "Always Visible" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:90 +#: src/blocks/_pro/fixed-display/edit.js:94 msgid "Show on Scroll" msgstr "" -#: src/blocks/_pro/fixed-display/edit.js:96 -msgid "Fixed position" -msgstr "" - #: src/blocks/_pro/grid-column-item/edit.js:100 #: src/blocks/_pro/gridcolcard/edit-common.js:167 msgid "Color Settings" @@ -1394,7 +1407,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:96 #: src/blocks/_pro/outer/edit.js:1076 #: src/blocks/icon-outer/edit.js:183 -#: src/blocks/icon/edit.js:172 +#: src/blocks/icon/edit.js:174 #: src/utils/unit-options.js:6 msgid "px" msgstr "" @@ -1403,7 +1416,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:100 #: src/blocks/_pro/outer/edit.js:1080 #: src/blocks/icon-outer/edit.js:187 -#: src/blocks/icon/edit.js:176 +#: src/blocks/icon/edit.js:178 #: src/utils/unit-options.js:10 msgid "em" msgstr "" @@ -1412,7 +1425,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:104 #: src/blocks/_pro/outer/edit.js:1084 #: src/blocks/icon-outer/edit.js:191 -#: src/blocks/icon/edit.js:180 +#: src/blocks/icon/edit.js:182 #: src/utils/unit-options.js:14 msgid "rem" msgstr "" @@ -1421,7 +1434,7 @@ msgstr "" #: src/blocks/_pro/grid-column/edit.js:108 #: src/blocks/_pro/outer/edit.js:1012 #: src/blocks/icon-outer/edit.js:195 -#: src/blocks/icon/edit.js:184 +#: src/blocks/icon/edit.js:186 #: src/utils/unit-options.js:18 msgid "vw" msgstr "" @@ -1449,20 +1462,20 @@ msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:242 #: src/blocks/_pro/select-post-list-item/edit.js:66 #: src/blocks/button/edit.js:249 -#: src/components/link-toolbar/index.js:238 +#: src/components/link-toolbar/index.js:247 msgid "Unlink" msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:243 #: src/blocks/button/edit.js:250 -#: src/components/link-toolbar/index.js:239 +#: src/components/link-toolbar/index.js:248 msgid "Input Link URL" msgstr "" #: src/blocks/_pro/gridcolcard-item/edit.js:273 #: src/blocks/_pro/select-post-list-item/edit.js:102 #: src/blocks/button/edit.js:278 -#: src/components/link-toolbar/index.js:273 +#: src/components/link-toolbar/index.js:282 msgid "Submit" msgstr "" @@ -1533,6 +1546,8 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:192 #: src/blocks/balloon/edit.js:310 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:384 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:402 #: inc/vk-blocks/class-vk-blocks-global-settings.php:384 #: inc/vk-blocks/class-vk-blocks-global-settings.php:402 msgid "Border" @@ -1620,7 +1635,7 @@ msgstr "" #: src/blocks/border-box/edit.js:272 #: src/blocks/button/edit.js:760 #: src/blocks/heading/edit.js:335 -#: src/blocks/icon/edit.js:276 +#: src/blocks/icon/edit.js:290 #: src/blocks/pr-content/edit.js:212 #: src/components/scroll-hint/index.js:103 #: src/extensions/common/custom-block-variation/block-variation-list/item/body-area/index.js:142 @@ -1637,7 +1652,7 @@ msgstr "" #: src/blocks/_pro/icon-card-item/edit.js:153 #: src/blocks/button/edit.js:606 #: src/blocks/icon-outer/edit.js:238 -#: src/blocks/icon/edit.js:224 +#: src/blocks/icon/edit.js:226 #: src/blocks/pr-blocks/edit.js:285 msgid "Solid color" msgstr "" @@ -1807,6 +1822,7 @@ msgid "Wave" msgstr "" #: src/blocks/_pro/outer/edit.js:633 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:338 #: inc/vk-blocks/class-vk-blocks-global-settings.php:338 msgid "Triangle" msgstr "" @@ -1856,21 +1872,25 @@ msgstr "" #: src/blocks/_pro/step-item/edit.js:118 #: src/blocks/_pro/timeline-item/edit.js:88 #: src/blocks/pr-content/edit.js:145 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:440 #: inc/vk-blocks/class-vk-blocks-global-settings.php:440 msgid "Solid" msgstr "" #: src/blocks/_pro/outer/edit.js:856 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:448 #: inc/vk-blocks/class-vk-blocks-global-settings.php:448 msgid "Dotted" msgstr "" #: src/blocks/_pro/outer/edit.js:860 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:452 #: inc/vk-blocks/class-vk-blocks-global-settings.php:452 msgid "Dashed" msgstr "" #: src/blocks/_pro/outer/edit.js:864 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:456 #: inc/vk-blocks/class-vk-blocks-global-settings.php:456 msgid "Double" msgstr "" @@ -1897,7 +1917,7 @@ msgstr "" #: src/blocks/_pro/outer/edit.js:904 #: src/blocks/icon-outer/edit.js:212 -#: src/blocks/icon/edit.js:201 +#: src/blocks/icon/edit.js:203 msgid "Border radius" msgstr "" @@ -1906,6 +1926,7 @@ msgid "Container Inner Side Space Setting" msgstr "" #: src/blocks/_pro/post-category-badge/edit.js:108 +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:135 #: inc/vk-blocks/admin/admin.php:135 msgid "Setting" msgstr "" @@ -2049,7 +2070,7 @@ msgstr "" #: src/blocks/_pro/table-of-contents-new/edit.js:119 #: src/blocks/_pro/timeline-item/edit.js:74 #: src/blocks/icon-outer/edit.js:229 -#: src/blocks/icon/edit.js:216 +#: src/blocks/icon/edit.js:218 msgid "Style" msgstr "" @@ -2220,6 +2241,7 @@ msgid "Show hierarchy" msgstr "" #: src/blocks/_pro/taxonomy/edit.js:54 +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: src/blocks/_pro/taxonomy/index.php:246 msgid "Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block." @@ -2254,6 +2276,7 @@ msgstr "" #: src/blocks/alert/variations.js:16 #: src/blocks/button/edit.js:692 #: src/blocks/pr-content/edit.js:171 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:476 #: inc/vk-blocks/class-vk-blocks-global-settings.php:476 msgid "Success" msgstr "" @@ -2261,6 +2284,7 @@ msgstr "" #: src/blocks/alert/edit.js:57 #: src/blocks/button/edit.js:696 #: src/blocks/pr-content/edit.js:175 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:472 #: inc/vk-blocks/class-vk-blocks-global-settings.php:472 msgid "Info" msgstr "" @@ -2269,6 +2293,7 @@ msgstr "" #: src/blocks/alert/variations.js:57 #: src/blocks/button/edit.js:700 #: src/blocks/pr-content/edit.js:179 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:480 #: inc/vk-blocks/class-vk-blocks-global-settings.php:480 msgid "Warning" msgstr "" @@ -2277,6 +2302,7 @@ msgstr "" #: src/blocks/alert/variations.js:76 #: src/blocks/button/edit.js:704 #: src/blocks/pr-content/edit.js:183 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:484 #: inc/vk-blocks/class-vk-blocks-global-settings.php:484 msgid "Danger" msgstr "" @@ -2399,6 +2425,7 @@ msgid "Rounded" msgstr "" #: src/blocks/balloon/edit.js:502 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:398 #: inc/vk-blocks/class-vk-blocks-global-settings.php:398 msgid "Circle" msgstr "" @@ -2514,6 +2541,7 @@ msgstr "" #: src/blocks/button/edit.js:338 #: src/extensions/common/inline-font-size/inline.js:23 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:509 #: inc/vk-blocks/class-vk-blocks-global-settings.php:509 msgid "Small" msgstr "" @@ -2626,7 +2654,7 @@ msgstr "" #: src/blocks/button/edit.js:796 #: src/blocks/icon-outer/edit.js:89 -#: src/blocks/icon/edit.js:82 +#: src/blocks/icon/edit.js:84 msgid "Size" msgstr "" @@ -2744,7 +2772,7 @@ msgid "Heading Settings" msgstr "" #: src/blocks/heading/edit.js:357 -#: src/blocks/icon/edit.js:313 +#: src/blocks/icon/edit.js:327 msgid "Icon Color" msgstr "" @@ -2766,17 +2794,17 @@ msgid "Heading %d" msgstr "" #: src/blocks/icon-outer/edit.js:208 -#: src/blocks/icon/edit.js:197 +#: src/blocks/icon/edit.js:199 msgid "Reset" msgstr "" #: src/blocks/icon-outer/edit.js:246 -#: src/blocks/icon/edit.js:235 +#: src/blocks/icon/edit.js:237 msgid "Icon & Frame" msgstr "" #: src/blocks/icon-outer/edit.js:254 -#: src/blocks/icon/edit.js:246 +#: src/blocks/icon/edit.js:248 msgid "Icon only" msgstr "" @@ -2784,11 +2812,11 @@ msgstr "" msgid "Icon Common Setting" msgstr "" -#: src/blocks/icon/edit.js:273 +#: src/blocks/icon/edit.js:287 msgid "Icon Setting" msgstr "" -#: src/blocks/icon/edit.js:287 +#: src/blocks/icon/edit.js:301 #: src/blocks/pr-content/edit.js:122 msgid "Link URL" msgstr "" @@ -3291,7 +3319,7 @@ msgstr "" msgid "Currently selected" msgstr "" -#: src/components/link-toolbar/index.js:308 +#: src/components/link-toolbar/index.js:317 msgid "Link copied to clipboard." msgstr "" @@ -3508,11 +3536,13 @@ msgid "Apply" msgstr "" #: src/extensions/common/inline-font-size/inline.js:33 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:519 #: inc/vk-blocks/class-vk-blocks-global-settings.php:519 msgid "Big" msgstr "" #: src/extensions/common/inline-font-size/inline.js:38 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:524 #: inc/vk-blocks/class-vk-blocks-global-settings.php:524 msgid "Extra big" msgstr "" @@ -3625,27 +3655,27 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:221 +#: src/extensions/core/table/style.js:226 msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:229 +#: src/extensions/core/table/style.js:234 msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:236 +#: src/extensions/core/table/style.js:241 msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:243 +#: src/extensions/core/table/style.js:248 msgid "Mobile size" msgstr "" -#: src/extensions/core/table/style.js:250 +#: src/extensions/core/table/style.js:255 msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:257 +#: src/extensions/core/table/style.js:262 msgid "PC size" msgstr "" @@ -3783,46 +3813,58 @@ msgstr "" msgid "https://vektor-inc.co.jp" msgstr "" +#: dist/vk-blocks-pro/inc/admin-notices.php:28 #: inc/admin-notices.php:28 msgid "We've released VK Blocks Pro!" msgstr "" #. translators: 1: opening a tag, 2: closing a tag +#: dist/vk-blocks-pro/inc/admin-notices.php:35 #: inc/admin-notices.php:35 msgid "Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details." msgstr "" +#: dist/vk-blocks-pro/inc/admin-notices.php:39 +#: dist/vk-blocks-pro/inc/admin-notices.php:45 #: inc/admin-notices.php:39 #: inc/admin-notices.php:45 msgid "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/" msgstr "" +#: dist/vk-blocks-pro/inc/admin-notices.php:46 #: inc/admin-notices.php:46 msgid "See more" msgstr "" +#: dist/vk-blocks-pro/inc/admin-notices.php:49 #: inc/admin-notices.php:49 msgid "Dismiss this notice" msgstr "" +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:72 #: inc/tgm-plugin-activation/tgm-config.php:72 msgid "Install Required Plugins" msgstr "" +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:73 #: inc/tgm-plugin-activation/tgm-config.php:73 msgid "Install Plugins" msgstr "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:75 #: inc/tgm-plugin-activation/tgm-config.php:75 msgid "Installing Plugin: %s" msgstr "" +#. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:76 #: inc/tgm-plugin-activation/tgm-config.php:76 msgid "Something went wrong with the plugin API." msgstr "" #. translators: +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:78 #: inc/tgm-plugin-activation/tgm-config.php:78 msgid "This plugin requires the following plugin: %1$s." msgid_plural "This plugin requires the following plugins: %1$s." @@ -3830,6 +3872,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:84 #: inc/tgm-plugin-activation/tgm-config.php:84 msgid "This plugin recommends the following plugin: %1$s.<br>Many additional functions are available for free." msgid_plural "This plugin recommends the following plugins: %1$s.<br>Many additional functions are available for free." @@ -3837,6 +3880,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:90 #: inc/tgm-plugin-activation/tgm-config.php:90 msgid "Sorry, but you do not have the correct permissions to install the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to install the %1$s plugins." @@ -3844,6 +3888,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:96 #: inc/tgm-plugin-activation/tgm-config.php:96 msgid "The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s." msgid_plural "The following plugins need to be updated to their latest version to ensure maximum compatibility with this plugin: %1$s." @@ -3851,6 +3896,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:102 #: inc/tgm-plugin-activation/tgm-config.php:102 msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -3858,6 +3904,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:108 #: inc/tgm-plugin-activation/tgm-config.php:108 msgid "Sorry, but you do not have the correct permissions to update the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to update the %1$s plugins." @@ -3865,6 +3912,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:114 #: inc/tgm-plugin-activation/tgm-config.php:114 msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -3872,6 +3920,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:120 #: inc/tgm-plugin-activation/tgm-config.php:120 msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -3879,6 +3928,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:126 #: inc/tgm-plugin-activation/tgm-config.php:126 msgid "Sorry, but you do not have the correct permissions to activate the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to activate the %1$s plugins." @@ -3886,1030 +3936,1225 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:132 #: inc/tgm-plugin-activation/tgm-config.php:132 msgid "Begin installing plugin" msgid_plural "Begin installing plugins" msgstr[0] "" msgstr[1] "" +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:137 #: inc/tgm-plugin-activation/tgm-config.php:137 msgid "Begin updating plugin" msgid_plural "Begin updating plugins" msgstr[0] "" msgstr[1] "" +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:142 #: inc/tgm-plugin-activation/tgm-config.php:142 msgid "Begin activating plugin" msgid_plural "Begin activating plugins" msgstr[0] "" msgstr[1] "" +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:147 #: inc/tgm-plugin-activation/tgm-config.php:147 msgid "Return to Required Plugins Installer" msgstr "" +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:148 #: inc/tgm-plugin-activation/tgm-config.php:148 msgid "Plugin activated successfully." msgstr "" +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:149 #: inc/tgm-plugin-activation/tgm-config.php:149 msgid "The following plugin was activated successfully:" msgstr "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:151 #: inc/tgm-plugin-activation/tgm-config.php:151 msgid "No action taken. Plugin %1$s was already active." msgstr "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:153 #: inc/tgm-plugin-activation/tgm-config.php:153 msgid "Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin." msgstr "" #. translators: %s = plugin name. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:155 #: inc/tgm-plugin-activation/tgm-config.php:155 msgid "All plugins installed and activated successfully. %1$s" msgstr "" #. translators: %s = dashboard link. +#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:157 #: inc/tgm-plugin-activation/tgm-config.php:157 msgid "Please contact the administrator of this site for help." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:14 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:14 msgid "FAQ Setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:83 #: inc/vk-blocks/admin/admin.php:83 msgid "Blocks setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:84 #: inc/vk-blocks/admin/admin.php:84 msgctxt "label in admin menu" msgid "Blocks" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:100 #: inc/vk-blocks/admin/admin.php:100 msgid "Blocks Setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:110 #: inc/vk-blocks/admin/admin.php:110 msgid "Balloon Block Setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:116 #: inc/vk-blocks/admin/admin.php:116 msgid "Load Separete Setting" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:27 +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:67 #: inc/vk-blocks/blocks.php:27 #: inc/vk-blocks/blocks.php:67 msgid "Blocks Layout" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:40 +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:54 #: inc/vk-blocks/blocks.php:40 #: inc/vk-blocks/blocks.php:54 msgid "Blocks" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/blocks.php:81 #: inc/vk-blocks/blocks.php:81 msgid "Deprecated Blocks" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "Dummy Text" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:91 #: src/blocks/ancestor-page-list/index.php:91 msgid "This message only display on the edit screen." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/index.php:123 #: inc/vk-blocks/build/blocks/page-content/index.php:123 #: src/blocks/page-content/index.php:123 msgid "Edit this area" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/index.php:87 #: inc/vk-blocks/build/blocks/_pro/archive-list/index.php:87 #: src/blocks/_pro/archive-list/index.php:87 msgid "Please select year" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/index.php:89 #: inc/vk-blocks/build/blocks/_pro/archive-list/index.php:89 #: src/blocks/_pro/archive-list/index.php:89 msgid "Please select month" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:97 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:97 #: src/blocks/_pro/post-category-badge/index.php:97 msgid "Category Badge" msgstr "" #. translators: %s: taxonomy's label +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:100 #: inc/vk-blocks/build/blocks/_pro/post-category-badge/index.php:100 #: src/blocks/_pro/post-category-badge/index.php:100 msgid "Display a list of assigned terms from the taxonomy: %s" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:95 #: src/blocks/_pro/taxonomy/index.php:95 msgid "Please select taxonomy" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:110 #: src/blocks/_pro/taxonomy/index.php:110 msgid "Categories" msgstr "" #. translators: +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:199 #: src/blocks/_pro/taxonomy/index.php:199 msgid "All of %s" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:243 #: src/blocks/_pro/taxonomy/index.php:243 msgid "VK Taxonomy Block" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:300 #: inc/vk-blocks/class-vk-blocks-global-settings.php:300 msgid "Background fill lightgray" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:304 #: inc/vk-blocks/class-vk-blocks-global-settings.php:304 msgid "Double border top and bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:308 #: inc/vk-blocks/class-vk-blocks-global-settings.php:308 msgid "Double border bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:312 #: inc/vk-blocks/class-vk-blocks-global-settings.php:312 msgid "Solid border top and bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:316 #: inc/vk-blocks/class-vk-blocks-global-settings.php:316 msgid "Solid border bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:320 #: inc/vk-blocks/class-vk-blocks-global-settings.php:320 msgid "Dotted border bottom black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:324 #: inc/vk-blocks/class-vk-blocks-global-settings.php:324 msgid "Both ends" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:328 #: inc/vk-blocks/class-vk-blocks-global-settings.php:328 msgid "Brackets black" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:334 #: inc/vk-blocks/class-vk-blocks-global-settings.php:334 msgid "Arrow" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:342 #: inc/vk-blocks/class-vk-blocks-global-settings.php:342 msgid "Check" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:346 #: inc/vk-blocks/class-vk-blocks-global-settings.php:346 msgid "Check Square" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:350 #: inc/vk-blocks/class-vk-blocks-global-settings.php:350 msgid "Check Circle" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:354 #: inc/vk-blocks/class-vk-blocks-global-settings.php:354 msgid "Handpoint" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:358 #: inc/vk-blocks/class-vk-blocks-global-settings.php:358 msgid "Pencil" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:362 #: inc/vk-blocks/class-vk-blocks-global-settings.php:362 msgid "Smile" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:366 #: inc/vk-blocks/class-vk-blocks-global-settings.php:366 msgid "Frown" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:370 #: inc/vk-blocks/class-vk-blocks-global-settings.php:370 msgid "Numbered Circle" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:374 #: inc/vk-blocks/class-vk-blocks-global-settings.php:374 msgid "Numbered Square" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:380 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:464 #: inc/vk-blocks/class-vk-blocks-global-settings.php:380 #: inc/vk-blocks/class-vk-blocks-global-settings.php:464 msgid "Border Top Bottom" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:388 #: inc/vk-blocks/class-vk-blocks-global-settings.php:388 msgid "Border / Stripes" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:394 #: inc/vk-blocks/class-vk-blocks-global-settings.php:394 msgid "Rounded02" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:406 #: inc/vk-blocks/class-vk-blocks-global-settings.php:406 msgid "Photo frame" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:410 #: inc/vk-blocks/class-vk-blocks-global-settings.php:410 msgid "Photo frame Tilt Right" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:414 #: inc/vk-blocks/class-vk-blocks-global-settings.php:414 msgid "Photo frame Tilt Left" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:418 +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:468 #: inc/vk-blocks/class-vk-blocks-global-settings.php:418 #: inc/vk-blocks/class-vk-blocks-global-settings.php:468 msgid "Shadow" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:422 #: inc/vk-blocks/class-vk-blocks-global-settings.php:422 msgid "Wave01" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:426 #: inc/vk-blocks/class-vk-blocks-global-settings.php:426 msgid "Wave02" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:430 #: inc/vk-blocks/class-vk-blocks-global-settings.php:430 msgid "Wave03" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:434 #: inc/vk-blocks/class-vk-blocks-global-settings.php:434 msgid "Wave04" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:444 #: inc/vk-blocks/class-vk-blocks-global-settings.php:444 msgid "Solid Roundcorner" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:460 #: inc/vk-blocks/class-vk-blocks-global-settings.php:460 msgid "Stitch" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/font-awesome/class-vk-blocks-font-awesome-api.php:73 #: inc/vk-blocks/font-awesome/class-vk-blocks-font-awesome-api.php:73 msgid "Setting saved." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:277 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:277 msgid "Post" msgstr "" #. translators: %s: 投稿タイプ名 +#: dist/vk-blocks-pro/inc/vk-blocks/view/class-vk-blocks-postlist.php:281 #: inc/vk-blocks/view/class-vk-blocks-postlist.php:281 msgid "There are no %ss." msgstr "" +#: dist/vk-blocks-pro/inc/vk-css-optimize/config.php:12 #: inc/vk-css-optimize/config.php:12 msgid "VK Blocks " msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:99 #: vk-blocks.php:99 msgid "Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:299 #: vk-blocks.php:299 msgid "License Key has no registered." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:304 #: vk-blocks.php:304 msgid "The VK Blocks Pro license is invalid." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:328 #: vk-blocks.php:328 msgid "Please enter a valid license key for any of the following products on the settings screen." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:338 #: vk-blocks.php:338 msgid "Enter the license key" msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:341 #: vk-blocks.php:341 msgid "If this display does not disappear even after entering a valid license key, re-acquire the update." msgstr "" +#: dist/vk-blocks-pro/vk-blocks.php:342 #: vk-blocks.php:342 msgid "Re-acquisition of updates" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/alert/block.json #: inc/vk-blocks/build/blocks/alert/block.json #: src/blocks/alert/block.json msgctxt "block title" msgid "Alert" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/alert/block.json #: inc/vk-blocks/build/blocks/alert/block.json #: src/blocks/alert/block.json msgctxt "block description" msgid "A colored box with four statuses, including annotations and alerts." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: src/blocks/ancestor-page-list/block.json msgctxt "block title" msgid "Page list from ancestor" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: inc/vk-blocks/build/blocks/ancestor-page-list/block.json #: src/blocks/ancestor-page-list/block.json msgctxt "block description" msgid "Display Page list from ancestor page" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/balloon/block.json #: inc/vk-blocks/build/blocks/balloon/block.json #: src/blocks/balloon/block.json msgctxt "block title" msgid "Ballon" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/balloon/block.json #: inc/vk-blocks/build/blocks/balloon/block.json #: src/blocks/balloon/block.json msgctxt "block description" msgid "These speech balloons are perfect for recreating conversations." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/border-box/block.json #: inc/vk-blocks/build/blocks/border-box/block.json #: src/blocks/border-box/block.json msgctxt "block title" msgid "Border Box" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/border-box/block.json #: inc/vk-blocks/build/blocks/border-box/block.json #: src/blocks/border-box/block.json msgctxt "block description" msgid "This is a border box where you can place headings to attract attention." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/button/block.json #: inc/vk-blocks/build/blocks/button/block.json #: src/blocks/button/block.json msgctxt "block title" msgid "Button" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/button/block.json #: inc/vk-blocks/build/blocks/button/block.json #: src/blocks/button/block.json msgctxt "block description" msgid "A button link that can display icons before and after." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq/block.json #: inc/vk-blocks/build/blocks/faq/block.json #: src/blocks/faq/block.json msgctxt "block title" msgid "Classic FAQ" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq/block.json #: inc/vk-blocks/build/blocks/faq/block.json #: src/blocks/faq/block.json msgctxt "block description" msgid "Displays a combination of questions and answers." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-a/block.json #: inc/vk-blocks/build/blocks/faq2-a/block.json #: src/blocks/faq2-a/block.json msgctxt "block title" msgid "FAQ Answer" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-a/block.json #: inc/vk-blocks/build/blocks/faq2-a/block.json #: src/blocks/faq2-a/block.json msgctxt "block description" msgid "Answer area where you can add blocks freely." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-q/block.json #: inc/vk-blocks/build/blocks/faq2-q/block.json #: src/blocks/faq2-q/block.json msgctxt "block title" msgid "FAQ Question" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2-q/block.json #: inc/vk-blocks/build/blocks/faq2-q/block.json #: src/blocks/faq2-q/block.json msgctxt "block description" msgid "Question area where you can freely add blocks." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2/block.json #: inc/vk-blocks/build/blocks/faq2/block.json #: src/blocks/faq2/block.json msgctxt "block title" msgid "New FAQ" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/faq2/block.json #: inc/vk-blocks/build/blocks/faq2/block.json #: src/blocks/faq2/block.json msgctxt "block description" msgid "It displays a combination of questions and answers. You can freely add blocks to the question area as well." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/flow/block.json #: inc/vk-blocks/build/blocks/flow/block.json #: src/blocks/flow/block.json msgctxt "block title" msgid "Flow" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/flow/block.json #: inc/vk-blocks/build/blocks/flow/block.json #: src/blocks/flow/block.json msgctxt "block description" msgid "Displays a sequential description in time series." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/heading/block.json #: inc/vk-blocks/build/blocks/heading/block.json #: src/blocks/heading/block.json msgctxt "block title" msgid "Heading(not recommended)" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/heading/block.json #: inc/vk-blocks/build/blocks/heading/block.json #: src/blocks/heading/block.json msgctxt "block description" msgid "This is a heading that allows you to set text size, subtext, icon, and margin." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon-outer/block.json #: inc/vk-blocks/build/blocks/icon-outer/block.json #: src/blocks/icon-outer/block.json msgctxt "block title" msgid "Icon Outer" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon-outer/block.json #: inc/vk-blocks/build/blocks/icon-outer/block.json #: src/blocks/icon-outer/block.json msgctxt "block description" msgid "Display the Font Awesome icons horizontally." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon/block.json #: inc/vk-blocks/build/blocks/icon/block.json #: src/blocks/icon/block.json msgctxt "block title" msgid "Icon" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/icon/block.json #: inc/vk-blocks/build/blocks/icon/block.json #: src/blocks/icon/block.json msgctxt "block description" msgid "Display icons with Font Awesome." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/block.json #: inc/vk-blocks/build/blocks/page-content/block.json #: src/blocks/page-content/block.json msgctxt "block title" msgid "Page Content" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/page-content/block.json #: inc/vk-blocks/build/blocks/page-content/block.json #: src/blocks/page-content/block.json msgctxt "block description" msgid "Displays the body content of the specified parent page." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-blocks/block.json #: inc/vk-blocks/build/blocks/pr-blocks/block.json #: src/blocks/pr-blocks/block.json msgctxt "block title" msgid "PR Blocks (not recommended)" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-blocks/block.json #: inc/vk-blocks/build/blocks/pr-blocks/block.json #: src/blocks/pr-blocks/block.json msgctxt "block description" msgid "This is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-content/block.json #: inc/vk-blocks/build/blocks/pr-content/block.json #: src/blocks/pr-content/block.json msgctxt "block title" msgid "PR Content" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/pr-content/block.json #: inc/vk-blocks/build/blocks/pr-content/block.json #: src/blocks/pr-content/block.json msgctxt "block description" msgid "This is PR content where you can place images, headlines, text, and buttons." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider-item/block.json #: inc/vk-blocks/build/blocks/slider-item/block.json #: src/blocks/slider-item/block.json msgctxt "block title" msgid "Slider Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider-item/block.json #: inc/vk-blocks/build/blocks/slider-item/block.json #: src/blocks/slider-item/block.json msgctxt "block description" msgid "This is one item in the slider." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider/block.json #: inc/vk-blocks/build/blocks/slider/block.json #: src/blocks/slider/block.json msgctxt "block title" msgid "Slider" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/slider/block.json #: inc/vk-blocks/build/blocks/slider/block.json #: src/blocks/slider/block.json msgctxt "block description" msgid "This slider allows you to place various items.Slider is do not move in edit screen." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/spacer/block.json #: inc/vk-blocks/build/blocks/spacer/block.json #: src/blocks/spacer/block.json msgctxt "block title" msgid "Responsive Spacer" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/spacer/block.json #: inc/vk-blocks/build/blocks/spacer/block.json #: src/blocks/spacer/block.json msgctxt "block description" msgid "Use responsive spacers to get the margins right." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/staff/block.json #: inc/vk-blocks/build/blocks/staff/block.json #: src/blocks/staff/block.json msgctxt "block title" msgid "Staff" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/staff/block.json #: inc/vk-blocks/build/blocks/staff/block.json #: src/blocks/staff/block.json msgctxt "block description" msgid "Used for staff introduction, company introduction, school introduction, menu, etc." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: src/blocks/_pro/accordion-target/block.json msgctxt "block title" msgid "Accordion Target" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-target/block.json #: src/blocks/_pro/accordion-target/block.json msgctxt "block description" msgid "This is the content area where you can add blocks freely." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: src/blocks/_pro/accordion-trigger/block.json msgctxt "block title" msgid "Accordion Trigger" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: inc/vk-blocks/build/blocks/_pro/accordion-trigger/block.json #: src/blocks/_pro/accordion-trigger/block.json msgctxt "block description" msgid "This is the title area where you can freely add blocks." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion/block.json #: inc/vk-blocks/build/blocks/_pro/accordion/block.json #: src/blocks/_pro/accordion/block.json msgctxt "block title" msgid "Accordion" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/accordion/block.json #: inc/vk-blocks/build/blocks/_pro/accordion/block.json #: src/blocks/_pro/accordion/block.json msgctxt "block description" msgid "Collapses and hides content when the content is long." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/animation/block.json #: inc/vk-blocks/build/blocks/_pro/animation/block.json #: src/blocks/_pro/animation/block.json msgctxt "block title" msgid "Animation" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/animation/block.json #: inc/vk-blocks/build/blocks/_pro/animation/block.json #: src/blocks/_pro/animation/block.json msgctxt "block description" msgid "Add animation to elements when scrolling the page." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: src/blocks/_pro/archive-list/block.json msgctxt "block title" msgid "Archive list" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: inc/vk-blocks/build/blocks/_pro/archive-list/block.json #: src/blocks/_pro/archive-list/block.json msgctxt "block description" msgid "Displays a list of archives" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block title" msgid "Blog Card Excerpt" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-excerpt/block.json #: src/blocks/_pro/blog-card-excerpt/block.json msgctxt "block description" msgid "Shows an excerpt retrieved from a URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block title" msgid "Blog Card Featured Image" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-featured-image/block.json #: src/blocks/_pro/blog-card-featured-image/block.json msgctxt "block description" msgid "Displays the featured image obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block title" msgid "Blog Card Site Logo" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-logo/block.json #: src/blocks/_pro/blog-card-site-logo/block.json msgctxt "block description" msgid "Displays the site logo image obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block title" msgid "Blog Card Site Title" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-site-title/block.json #: src/blocks/_pro/blog-card-site-title/block.json msgctxt "block description" msgid "Displays the site title obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block title" msgid "Blog Card Title" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card-title/block.json #: src/blocks/_pro/blog-card-title/block.json msgctxt "block description" msgid "Displays the title obtained from the URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block title" msgid "Blog Card" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: inc/vk-blocks/build/blocks/_pro/blog-card/block.json #: src/blocks/_pro/blog-card/block.json msgctxt "block description" msgid "Add a block that fetches and displays content from a URL." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: src/blocks/_pro/breadcrumb/block.json msgctxt "block title" msgid "Breadcrumb" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: inc/vk-blocks/build/blocks/_pro/breadcrumb/block.json #: src/blocks/_pro/breadcrumb/block.json msgctxt "block description" msgid "Displays breadcrumbs of a page's hierarchy, or a post's categories.This block is not displayed on the front page." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: src/blocks/_pro/button-outer/block.json msgctxt "block title" msgid "Button Outer" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: inc/vk-blocks/build/blocks/_pro/button-outer/block.json #: src/blocks/_pro/button-outer/block.json msgctxt "block description" msgid "Display the VK Button block horizontally." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card-item/block.json #: inc/vk-blocks/build/blocks/_pro/card-item/block.json #: src/blocks/_pro/card-item/block.json msgctxt "block title" msgid "Card Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card-item/block.json #: inc/vk-blocks/build/blocks/_pro/card-item/block.json #: src/blocks/_pro/card-item/block.json msgctxt "block description" msgid "A single item in a card block." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card/block.json #: inc/vk-blocks/build/blocks/_pro/card/block.json #: src/blocks/_pro/card/block.json msgctxt "block title" msgid "Card" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/card/block.json #: inc/vk-blocks/build/blocks/_pro/card/block.json #: src/blocks/_pro/card/block.json msgctxt "block description" msgid "A card where you can place images, headings, text, and links." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/child-page/block.json #: inc/vk-blocks/build/blocks/_pro/child-page/block.json #: src/blocks/_pro/child-page/block.json msgctxt "block title" msgid "Child page list" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/child-page/block.json #: inc/vk-blocks/build/blocks/_pro/child-page/block.json #: src/blocks/_pro/child-page/block.json msgctxt "block description" msgid "When a parent page is specified, a list of its child pages will be displayed." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: src/blocks/_pro/dynamic-text/block.json msgctxt "block title" msgid "Dynamic Text" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: inc/vk-blocks/build/blocks/_pro/dynamic-text/block.json #: src/blocks/_pro/dynamic-text/block.json msgctxt "block description" msgid "Display dynamic text" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block title" msgid "Fixed display" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: inc/vk-blocks/build/blocks/_pro/fixed-display/block.json #: src/blocks/_pro/fixed-display/block.json msgctxt "block description" msgid "Remains fixed on the screen at all times." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: src/blocks/_pro/grid-column-item/block.json msgctxt "block title" msgid "Grid Column Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column-item/block.json #: src/blocks/_pro/grid-column-item/block.json msgctxt "block description" msgid "One item in a grid column block." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: src/blocks/_pro/grid-column/block.json msgctxt "block title" msgid "Grid Column" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: inc/vk-blocks/build/blocks/_pro/grid-column/block.json #: src/blocks/_pro/grid-column/block.json msgctxt "block description" msgid "Set the number of columns to be displayed for each screen size." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: src/blocks/_pro/gridcolcard-item-body/block.json msgctxt "block title" msgid "Grid Column Card Item Body" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-body/block.json #: src/blocks/_pro/gridcolcard-item-body/block.json msgctxt "block description" msgid "Body of Grid Column Card Block Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: src/blocks/_pro/gridcolcard-item-footer/block.json msgctxt "block title" msgid "Grid Column Card Item Footer" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-footer/block.json #: src/blocks/_pro/gridcolcard-item-footer/block.json msgctxt "block description" msgid "Footer button area of Grid Column Card Block Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: src/blocks/_pro/gridcolcard-item-header/block.json msgctxt "block title" msgid "Grid Column Card Item header" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item-header/block.json #: src/blocks/_pro/gridcolcard-item-header/block.json msgctxt "block description" msgid "Header image area of Grid Column Card Block Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: src/blocks/_pro/gridcolcard-item/block.json msgctxt "block title" msgid "Grid Column Card Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard-item/block.json #: src/blocks/_pro/gridcolcard-item/block.json msgctxt "block description" msgid "It is a block of single column of Grid Column Card." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: src/blocks/_pro/gridcolcard/block.json msgctxt "block title" msgid "Grid Column Card" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: inc/vk-blocks/build/blocks/_pro/gridcolcard/block.json #: src/blocks/_pro/gridcolcard/block.json msgctxt "block description" msgid "This block can flexible column layout" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: src/blocks/_pro/icon-card-item/block.json msgctxt "block title" msgid "Icon Card Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card-item/block.json #: src/blocks/_pro/icon-card-item/block.json msgctxt "block description" msgid "This is one item in an icon card." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: src/blocks/_pro/icon-card/block.json msgctxt "block title" msgid "Icon Card" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: inc/vk-blocks/build/blocks/_pro/icon-card/block.json #: src/blocks/_pro/icon-card/block.json msgctxt "block description" msgid "Display card with icons, headings, text, and links." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/outer/block.json #: inc/vk-blocks/build/blocks/_pro/outer/block.json #: src/blocks/_pro/outer/block.json msgctxt "block title" msgid "Outer" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/outer/block.json #: inc/vk-blocks/build/blocks/_pro/outer/block.json #: src/blocks/_pro/outer/block.json msgctxt "block description" msgid "Set the background image, color, and border to show the layout and divisions." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block title" msgid "Category Badge" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-category-badge/block.json #: src/blocks/_pro/post-category-badge/block.json msgctxt "block description" msgid "Displays a single category or custom taxonomy associated with the post. It allows for the specification of taxonomy and design." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list/block.json msgctxt "block title" msgid "Post list" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-list/block.json #: inc/vk-blocks/build/blocks/_pro/post-list/block.json #: src/blocks/_pro/post-list/block.json msgctxt "block description" msgid "Displays the list of posts by setting the post type, classification, and number of posts to display." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block title" msgid "New Badge" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: inc/vk-blocks/build/blocks/_pro/post-new-badge/block.json #: src/blocks/_pro/post-new-badge/block.json msgctxt "block description" msgid "Easily highlight your latest post." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: src/blocks/_pro/select-post-list-item/block.json msgctxt "block title" msgid "Selected Post List Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list-item/block.json #: src/blocks/_pro/select-post-list-item/block.json msgctxt "block description" msgid "A single item in the select post list." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: src/blocks/_pro/select-post-list/block.json msgctxt "block title" msgid "Selected Post List" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: inc/vk-blocks/build/blocks/_pro/select-post-list/block.json #: src/blocks/_pro/select-post-list/block.json msgctxt "block description" msgid "Displays an arbitrarily specified page with the layout of the posting list." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step-item/block.json #: inc/vk-blocks/build/blocks/_pro/step-item/block.json #: src/blocks/_pro/step-item/block.json msgctxt "block title" msgid "Step Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step-item/block.json #: inc/vk-blocks/build/blocks/_pro/step-item/block.json #: src/blocks/_pro/step-item/block.json msgctxt "block description" msgid "This element sets the icon, color, and style of the step mark." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step/block.json #: inc/vk-blocks/build/blocks/_pro/step/block.json #: src/blocks/_pro/step/block.json msgctxt "block title" msgid "Step" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/step/block.json #: inc/vk-blocks/build/blocks/_pro/step/block.json #: src/blocks/_pro/step/block.json msgctxt "block description" msgid "Set and display step marks, which are useful when explaining the order." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: src/blocks/_pro/table-of-contents-new/block.json msgctxt "block title" msgid "Table of Contents" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: inc/vk-blocks/build/blocks/_pro/table-of-contents-new/block.json #: src/blocks/_pro/table-of-contents-new/block.json msgctxt "block description" msgid "This is a table of contents that is automatically generated according to the headings when added." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: src/blocks/_pro/taxonomy/block.json msgctxt "block title" msgid "Taxonomy" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: inc/vk-blocks/build/blocks/_pro/taxonomy/block.json #: src/blocks/_pro/taxonomy/block.json msgctxt "block description" msgid "Display Taxnomy List Pulldown" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: src/blocks/_pro/timeline-item/block.json msgctxt "block title" msgid "Timeline Item" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: inc/vk-blocks/build/blocks/_pro/timeline-item/block.json #: src/blocks/_pro/timeline-item/block.json msgctxt "block description" msgid "This element sets the label, color, and style of the timeline." msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline/block.json #: inc/vk-blocks/build/blocks/_pro/timeline/block.json #: src/blocks/_pro/timeline/block.json msgctxt "block title" msgid "Timeline" msgstr "" +#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/timeline/block.json #: inc/vk-blocks/build/blocks/_pro/timeline/block.json #: src/blocks/_pro/timeline/block.json msgctxt "block description" diff --git a/readme.txt b/readme.txt index b9b5fbcaa..ccf2ac87b 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: Tags: Gutenberg,FAQ,alert Requires at least: 6.3 Tested up to: 6.6 -Stable tag: 1.85.1.1 +Stable tag: 1.86.1.0 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -105,11 +105,16 @@ e.g. 1. VK Blocks examples. == Changelog == -[ Bug fix ][ Slider ] Adjusting the timing of loading swiper to prevent the slider from collapsing. -[ Bug fix ][ Grid Column Card (Pro) ] Add translation. -[ Bug fix ][ Category Badge (Pro) ] Added Pro label to the inserter. + += 1.87.0 = [ Add function ][ Link Toolbar ] Added to skip retrieving metadata (title and favicon) for external links in link toolbar to prevent CORS errors. [ Add function ][ icon ] Add toolbar link for components. +[ Bug fix ][ Slider ] Adjusting the timing of loading swiper to prevent the slider from collapsing. +[ Bug fix ][ Grid Column Card (Pro) ] Add translation. +[ Bug fix ][ Category Badge (Pro) ] Added Pro label to the inserter. + += 1.86.1 = +[ Bug fix ] Roll back 1.85.1 = 1.86.0 = [ Add function ] [ Fixed Display (Pro) ] Added an option for "Fixed display from the bottom." diff --git a/vk-blocks.php b/vk-blocks.php index f14a48deb..a26f93bf7 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,8 +3,8 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.86.0.0 - * Stable tag: 1.85.1.1 + * Version: 1.87.0.0 + * Stable tag: 1.86.1.0 * Requires at least: 6.3 * Author: Vektor,Inc. * Author URI: https://vektor-inc.co.jp