From 3cdbee6724ab8820e292f1bae25d86ede1755239 Mon Sep 17 00:00:00 2001 From: drill-lancer Date: Wed, 25 Sep 2024 09:33:34 +0900 Subject: [PATCH 1/4] fix: table scroll hint --- .../class-vk-blocks-scrollhintrenderer.php | 111 +++++ inc/vk-blocks/vk-blocks-functions.php | 2 + languages/vk-blocks-pro-ja.l10n.php | 2 +- languages/vk-blocks-pro-js.pot | 129 +++--- languages/vk-blocks-pro.l10n.php | 7 +- languages/vk-blocks-pro.pot | 379 ++++-------------- src/components/scroll-hint/index.js | 158 ++++++++ src/extensions/core/table/style.js | 282 ++++++++----- src/extensions/core/table/style.scss | 2 +- src/utils/common.scss | 62 +++ 10 files changed, 672 insertions(+), 462 deletions(-) create mode 100644 inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php create mode 100644 src/components/scroll-hint/index.js diff --git a/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php b/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php new file mode 100644 index 000000000..8cecd0f7d --- /dev/null +++ b/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php @@ -0,0 +1,111 @@ +next_tag() && preg_match( '/is-style-vk-[a-zA-Z0-9_-]+-scrollable/', $processor->get_attribute( 'class' ) ) ) { + $scroll_hint = self::generate_scroll_hint( $block ); + + // マッチしたタグの前にスクロールヒントを挿入 + $block_content = preg_replace( '/(<[^>]*class="[^"]*is-style-vk-[a-zA-Z0-9_-]+-scrollable[^"]*"[^>]*>)/i', $scroll_hint . '$1', $block_content ); + } + + return $block_content; + } + + /** + * Generate the scroll hint HTML. + * + * @param array $block The block data. + * @return string The scroll hint HTML. + */ + public static function generate_scroll_hint( $block ) { + + // デフォルトの設定を一括で処理 + $default_attrs = array( + 'scrollMessageText' => __( 'You can scroll', 'vk-blocks-pro' ), + 'iconOutputLeft' => true, + 'iconOutputRight' => true, + 'scrollIconLeft' => 'fa-solid fa-caret-left', + 'scrollIconRight' => 'fa-solid fa-caret-right', + 'scrollBreakpoint' => apply_filters( 'vk_blocks_default_scroll_breakpoint', 'table-scrollable-mobile', $block ), + 'showScrollMessage' => false, + ); + + // ブロックの属性をデフォルト設定で上書き + $attrs = wp_parse_args( $block['attrs'], $default_attrs ); + + // アイコンHTMLを生成 + $left_icon_html = $attrs['iconOutputLeft'] ? '' : ''; + $right_icon_html = $attrs['iconOutputRight'] ? '' : ''; + + // スクロールブレイクポイントをスペースで連結 + $scroll_breakpoint_attr = implode( ' ', (array) $attrs['scrollBreakpoint'] ); + + // データ属性を組み立て + $attributes = sprintf( 'data-scroll-breakpoint="%s"', esc_attr( $scroll_breakpoint_attr ) ); + $attributes .= sprintf( ' data-output-scroll-message="%s"', $attrs['showScrollMessage'] ? 'true' : 'false' ); + $attributes .= sprintf( ' data-icon-output-left="%s"', $attrs['iconOutputLeft'] ? 'true' : 'false' ); + $attributes .= sprintf( ' data-icon-output-right="%s"', $attrs['iconOutputRight'] ? 'true' : 'false' ); + + // アイコンがある場合、data-hint-icon 属性を追加 + if ( $attrs['iconOutputLeft'] && ! empty( $attrs['scrollIconLeft'] ) ) { + $attributes .= sprintf( ' data-hint-icon-left="%s"', esc_attr( $attrs['scrollIconLeft'] ) ); + } + if ( $attrs['iconOutputRight'] && ! empty( $attrs['scrollIconRight'] ) ) { + $attributes .= sprintf( ' data-hint-icon-right="%s"', esc_attr( $attrs['scrollIconRight'] ) ); + } + + // スクロールヒントのHTMLを生成して返す + return sprintf( + '
+ %s + %s + %s +
', + $attributes, + $left_icon_html, + esc_html( $attrs['scrollMessageText'] ), + $right_icon_html + ); + } +} \ No newline at end of file diff --git a/inc/vk-blocks/vk-blocks-functions.php b/inc/vk-blocks/vk-blocks-functions.php index 49ec290c8..0af5c2970 100644 --- a/inc/vk-blocks/vk-blocks-functions.php +++ b/inc/vk-blocks/vk-blocks-functions.php @@ -18,6 +18,8 @@ require_once __DIR__ . '/extensions/core/list.php'; require_once __DIR__ . '/view/responsive-br.php'; require_once __DIR__ . '/view/class-vk-blocks-postlist.php'; +require_once __DIR__ . '/view/class-vk-blocks-scrollhintrenderer.php'; +VK_Blocks_ScrollHintRenderer::init(); require_once __DIR__ . '/class-vk-blocks-print-css-variables.php'; diff --git a/languages/vk-blocks-pro-ja.l10n.php b/languages/vk-blocks-pro-ja.l10n.php index 030666e79..4e3e2a641 100644 --- a/languages/vk-blocks-pro-ja.l10n.php +++ b/languages/vk-blocks-pro-ja.l10n.php @@ -1,2 +1,2 @@ NULL,'plural-forms'=>'nplurals=1; plural=0;','messages'=>['Added balloon image setting'=>'吹き出し画像設定を追加','Balloon Image Setting'=>'吹き出し画像設定','Would you like to delete %s?'=>'%sを削除しますか?','Cancel'=>'キャンセル','Delete'=>'削除','Select'=>'選択','Balloon Image Name'=>'吹き出し画像の名前','Balloon Setting'=>'吹き出しブロック設定','Balloon Border Width Setting'=>'吹き出しの線幅の設定','1px'=>'1px','2px'=>'2px','3px'=>'3px','4px'=>'4px','You can register frequently used icon images for speech bubble blocks.'=>'よく使う吹き出し用のアイコン画像を登録する事ができます。','image'=>'画像','Block Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','Block Style Label (Changeable)'=>'ブロックスタイル ラベル(変更可能)','Add'=>'追加','Add Custom Block Style'=>'ブロックスタイルを追加','Target Block (Required/Unchangeable)'=>'対象のブロック (必須/変更不可)','Set the target block.'=>'対象のブロックを設定してください。','Search for a block'=>'ブロックの検索','Please enter a string'=>'文字列を入力してください','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です','Class name is required'=>'クラス名は必須項目です','Already registered'=>'すでに登録されています','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)','This will be the CSS class name following is-style-.'=>'is-style-に続くCSSクラス名になります。','(e.g.) %s-block-style'=>'(例) %s-block-style','Custom Block Style Setting'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','Target block'=>'対象のブロック','CSS class'=>'CSSクラス','If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.'=>'selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。','Block Style Labels'=>'ブロックスタイル ラベル','※ Required If no title is entered, it will not appear on the toolbar.'=>'※ タイトルが入力されていない場合、ツールバーには表示されません。','If this Block Style is used for saved content, the style may change.'=>'保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。','Edit'=>'編集','Custom CSS Setting'=>'カスタムCSS設定','Show Custom CSS flag in editor'=>'エディタにカスタムCSS識別表示を表示する','Add Custom Format'=>'書式設定を追加','CSS class/unique ID (Required/Unchangeable)'=>'CSSクラス/固有ID (必須/変更不可)','(e.g.) vk-format-1'=>'(例) vk-format-1','Toolbar title (Changeable)'=>'ツールバー タイトル(変更可能)','Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.'=>'英字から始まり、英数字,ハイフン-のみ使用可能です','Custom Format'=>'書式設定','If the saved content has this format, the style will be unstyled.'=>'保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。','Format Setting'=>'フォーマット設定','Bold'=>'太字','Italic'=>'イタリック','Strikethrough'=>'打ち消し線','Nowrap'=>'改行しない','Color'=>'色','Text Color'=>'文字の色','Background Color'=>'背景色','Highlighter Color'=>'蛍光マーカー','Activate Highlighter'=>'蛍光マーカーを有効化','Custom CSS'=>'カスタムCSS','If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','Example:'=>'例:','Custom Format Setting'=>'カスタム書式設定','You can apply commonly used formatting on the block toolbar.'=>'ブロックツールバーのよく使う書式設定を登録することができます。','Toolbar title'=>'ツールバー タイトル','Preview Text'=>'プレビューテキスト','Export %s'=>'%s をエクスポート','It seems that the changed settings are not saved. Please save your changes.'=>'設定の変更が保存されていないようです。変更を保存してください。','Export'=>'エクスポート','Toggle all'=>'すべて切り替える','Invalid JSON file'=>'無効なJSONファイルです','Unknown error'=>'不明なエラーです','Import data confirmation'=>'データのインポート確認','No import data'=>'インポートするデータがありません','Import %s'=>'%s をインポート','Import method'=>'インポート方法','Override'=>'上書き','The following data will not be imported because the identifiers are covered.'=>'次のデータは識別子が重複しているため、インポートされません。','Import'=>'インポート','Import Success'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','Margin Setting'=>'余白設定','Load Separate Setting'=>'分割読み込み設定','FAQ Block Setting'=>'FAQ Blocks 設定','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。','License key'=>'ライセンスキー','Note that the order in which CSS/JS are loaded will change.'=>'CSS / JSの読み込み順序が変わることに注意してください。','Load Separate Option on'=>'分割読み込みを有効にする','Custom Value'=>'カスタム値','If you enter a custom value, the values you entered will be used as a priority.'=>'カスタム値を入力すると、入力した値が優先されます。','This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.'=>'この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。','ex)'=>'例)','Margin'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','PC'=>'PC','Tablet'=>'タブレット','Mobile'=>'モバイル','Common Margin Setting'=>'共通余白設定','Please specify the size of the common margin used for responsive spacers, etc.'=>'レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。','Unit'=>'単位','Please specify a common accordion setting to be used in the FAQ block.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','Slow'=>'遅い','Fast'=>'速い','Very Fast'=>'非常に速い','Animation range'=>'アニメーションの距離','Short'=>'短い','Normal'=>'標準','Long'=>'長い','Animation only the first view'=>'初回表示のみアニメーション','Animation Settings'=>'アニメーション設定','Animation effect'=>'アニメーションの効果','Fade In'=>'フェードイン','Slide Up'=>'スライドアップ','Slide Left'=>'スライド左','Slide Right'=>'スライド右','Left Right'=>'左右','Up Down'=>'上下','Trembling Y'=>'ぶるぶる(Y方向)','Trembling X'=>'ぶるぶる(X方向)','Pounding'=>'どきどき','Shaking'=>'ゆらゆら','Animation speed'=>'アニメーションの速度','Very Slow'=>'非常に遅い','Archive List Setting'=>'アーカイブリスト設定','Post type'=>'投稿タイプ','Archive type'=>'アーカイブタイプ','Monthly'=>'月別','Yearly'=>'年別','Display as dropdown'=>'ドロップダウン','Show post counts'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'表示件数','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','16:9'=>'','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','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','Alert Success'=>'アラート Success','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'=>'リンクをコピー','Create'=>'作成','Registered'=>'登録済み','Continue'=>'続ける','There are unsaved changes. Do you want to continue ?'=>'変更は保存されていません。続けますか?','scope is required'=>'クラス名は必須項目です','Category'=>'カテゴリー','For the icon name, please enter alphanumeric characters without "dashicons-". Example: embed-generic'=>'アイコン名は「dashicons-」を除いた英数字を入力してください。例:embed-generic','Dashicons list'=>'ダッシュアイコンリスト','Keyword'=>'キーワード','Add keyword'=>'キーワードを追加','Title (required)'=>'タイトル(必須)','My variations'=>'マイバリエーション','title is required'=>'タイトルは必須です','Description'=>'説明','Scope (required)'=>'対象(必須)','You can set where registered variations are displayed. You can call it from the displayed location.'=>'登録されたバリエーションが表示される対象を設定できます。対象のブロックから呼び出すことができます。','Are you sure you want to delete this variation?'=>'本当にこのバリエーションを削除しますか?','name is required'=>'名前は必須です','Name/Unique ID (required)'=>'名前/識別ID(必須)','my-variation'=>'','Inserter'=>'インサーター','Displayed on the inserter. Learn more about inserters.'=>'','https://wordpress.org/documentation/article/adding-a-new-block/#what-is-the-inserter'=>'','It will appear in the variation picker.'=>'バリエーションピッカーに表示されます。','Transform'=>'変換','Displayed in block variation transformation.'=>'ブロックバリエーション変換で表示されます。','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'selector を指定した場合ブロック固有の CSS クラスに置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'編集画面をできるだけ公開画面に近づけたい場合や、自作のCSSが識別表示用のCSSと干渉して編集画面で意図した通りに表示されない場合は、非表示にすることをお勧めします。','Hidden Settings'=>'非表示設定','Hidden at screen size'=>'非表示にする画面サイズ','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。','Hidden ( Screen size : all )'=>'非表示 ( 画面サイズ : all )','Hidden ( Screen size : xs )'=>'非表示 ( 画面サイズ : xs )','Hidden ( Screen size : sm )'=>'非表示 ( 画面サイズ : sm )','Hidden ( Screen size : md )'=>'非表示 ( 画面サイズ : md )','Hidden ( Screen size : lg )'=>'非表示 ( 画面サイズ : lg )','Hidden ( Screen size : xl )'=>'非表示 ( 画面サイズ : xl )','Hidden ( Screen size : xxl )'=>'非表示 ( 画面サイズ : xxl )','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。','Highlighter'=>'蛍光マーカー','Inline Font Size'=>'インライン文字サイズ','Inline font size'=>'インライン文字サイズ','Apply'=>'適用','Big'=>'大','Extra big'=>'特大','Bottom XXL'=>'下 XXL','Top XXL'=>'上 XXL','Margin the block'=>'ブロックの余白','Top XL'=>'上 XL','Top L'=>'上 L','Top M'=>'上 M','Top S'=>'上 S','Top XS'=>'上 XS','Top XXS'=>'上 XXS','Top 0'=>'上 0','Bottom 0'=>'下 0','Bottom XXS'=>'下 XXS','Bottom XS'=>'下 XS','Bottom S'=>'下 S','Bottom M'=>'下 M','Bottom L'=>'下 L','Bottom XL'=>'下 XL','No wrap'=>'No wrap','Responsive BR'=>'画面サイズ毎の改行 ','Responsive BR '=>'画面サイズ毎の改行 ','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'=>'リストアイコンの色','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','Table cells are no longer fixed width when horizontal scroll breakpoint is reached.'=>'水平スクロールのブレークポイントに達すると、テーブルセルの幅が固定されなくなります。','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','VK Blocks Pro'=>'VK Blocks Pro','https://github.com/vektor-inc/vk-blocks'=>'https://github.com/vektor-inc/vk-blocks','This is a plugin that extends Block Editor.'=>'ブロックエディタを拡張するプラグインです。','Vektor,Inc.'=>'Vektor,Inc.','https://vektor-inc.co.jp'=>'https://vektor-inc.co.jp','We\'ve released VK Blocks Pro!'=>'VK Blocks Pro を公開しました!','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/','See more'=>'続きを見る','Dismiss this notice'=>'通知を無視','Install Required Plugins'=>'必須プラグインのインストール','Install Plugins'=>'プラグインのインストール','Installing Plugin: %s'=>'プラグイン %s をインストール中','Something went wrong with the plugin API.'=>'プラグイン API で問題が発生しました。','This plugin requires the following plugin: %1$s.'=>'このプラグインは下記プラグインを必要としています:%1$s。','This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','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.4.4']; \ 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-08-27T06:31:02+00:00','po-revision-date'=>'','x-generator'=>'Poedit 3.4.4','messages'=>['Added balloon image setting'=>'吹き出し画像設定を追加','Balloon Image Setting'=>'吹き出し画像設定','Would you like to delete %s?'=>'%sを削除しますか?','Cancel'=>'キャンセル','Delete'=>'削除','Select'=>'選択','Balloon Image Name'=>'吹き出し画像の名前','Balloon Setting'=>'吹き出しブロック設定','Balloon Border Width Setting'=>'吹き出しの線幅の設定','1px'=>'1px','2px'=>'2px','3px'=>'3px','4px'=>'4px','You can register frequently used icon images for speech bubble blocks.'=>'よく使う吹き出し用のアイコン画像を登録する事ができます。','image'=>'画像','Block Category Position Setting'=>'ブロックカテゴリー位置設定','Above the WordPress default blocks'=>'WordPress標準ブロックの上','Under the WordPress default blocks'=>'WordPress標準ブロックの下','Block Manager Setting'=>'ブロックマネージャー設定','Block Style Manager Setting'=>'ブロックスタイルマネージャー設定','Breadcrumb Setting'=>'パンくずリスト設定','Separator Setting'=>'セパレーター設定','Please input the text you want to use as the separator.'=>'使用したいセパレーターの文字を入力してください。','Ex: / , > , ≫'=>'例: / , > , ≫','HOME'=>'HOME','Parent page'=>'親ページ','Child page'=>'子ページ','Block Style Label (Changeable)'=>'ブロックスタイル ラベル(変更可能)','Add'=>'追加','Add Custom Block Style'=>'ブロックスタイルを追加','Target Block (Required/Unchangeable)'=>'対象のブロック (必須/変更不可)','Set the target block.'=>'対象のブロックを設定してください。','Search for a block'=>'ブロックの検索','Please enter a string'=>'文字列を入力してください','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'英字から始まり,英数字,ハイフン,アンダーバーのみ使用可能です','Class name is required'=>'クラス名は必須項目です','Already registered'=>'すでに登録されています','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'CSSクラスの算出に使用されるスタイルの識別子 (必須/変更不可)','This will be the CSS class name following is-style-.'=>'is-style-に続くCSSクラス名になります。','(e.g.) %s-block-style'=>'(例) %s-block-style','Custom Block Style Setting'=>'カスタムブロックスタイル設定','You can register block styles.'=>'ブロックスタイルを登録できます。','Target block'=>'対象のブロック','CSS class'=>'CSSクラス','If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.'=>'selector を指定した場合、CSS クラス(.is-style-%1$s)に置き換わります。selector,.is-style-%2$s以外のCSSセレクターは、ページ全体に影響する可能性があります。','Block Style Labels'=>'ブロックスタイル ラベル','※ Required If no title is entered, it will not appear on the toolbar.'=>'※ タイトルが入力されていない場合、ツールバーには表示されません。','If this Block Style is used for saved content, the style may change.'=>'保存したコンテンツにこのブロックスタイルがある場合、スタイルが解除されます。','Edit'=>'編集','Custom CSS Setting'=>'カスタムCSS設定','Show Custom CSS flag in editor'=>'エディタにカスタムCSS識別表示を表示する','Add Custom Format'=>'書式設定を追加','CSS class/unique ID (Required/Unchangeable)'=>'CSSクラス/固有ID (必須/変更不可)','(e.g.) vk-format-1'=>'(例) vk-format-1','Toolbar title (Changeable)'=>'ツールバー タイトル(変更可能)','Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.'=>'英字から始まり、英数字,ハイフン-のみ使用可能です','Custom Format'=>'書式設定','If the saved content has this format, the style will be unstyled.'=>'保存したコンテンツにこのフォーマットがある場合、スタイルが解除されます。','Format Setting'=>'フォーマット設定','Bold'=>'太字','Italic'=>'イタリック','Strikethrough'=>'打ち消し線','Nowrap'=>'改行しない','Color'=>'色','Text Color'=>'文字の色','Background Color'=>'背景色','Highlighter Color'=>'蛍光マーカー','Activate Highlighter'=>'蛍光マーカーを有効化','Custom CSS'=>'カスタムCSS','If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.'=>'selector を指定した場合、固有の CSS クラス(.%s)に置き換わります。selector以外のCSSセレクターは、ページ全体に影響する可能性があります。','Example:'=>'例:','Custom Format Setting'=>'カスタム書式設定','You can apply commonly used formatting on the block toolbar.'=>'ブロックツールバーのよく使う書式設定を登録することができます。','Toolbar title'=>'ツールバー タイトル','Preview Text'=>'プレビューテキスト','Export %s'=>'%s をエクスポート','It seems that the changed settings are not saved. Please save your changes.'=>'設定の変更が保存されていないようです。変更を保存してください。','Export'=>'エクスポート','Toggle all'=>'すべて切り替える','Invalid JSON file'=>'無効なJSONファイルです','Unknown error'=>'不明なエラーです','Import data confirmation'=>'データのインポート確認','No import data'=>'インポートするデータがありません','Import %s'=>'%s をインポート','Import method'=>'インポート方法','Override'=>'上書き','The following data will not be imported because the identifiers are covered.'=>'次のデータは識別子が重複しているため、インポートされません。','Import'=>'インポート','Import Success'=>'インポート成功','Font Awesome Custom Lists Setting'=>'Font Awesome カスタムリスト設定','Custom Block Variation Setting'=>'カスタムブロックバリエーション設定','Breadcrumb Separator Setting'=>'パンくずリストセパレーター設定','License Key'=>'ライセンスキー','Import Export Tool'=>'インポート・エクスポートツール','Margin Setting'=>'余白設定','Load Separate Setting'=>'分割読み込み設定','FAQ Block Setting'=>'FAQ Blocks 設定','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'有効な Vektor Passport (または Lightning G3 Pro Pack または Lightning Pro ) のライセンス キーを入力してください。','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'有効なライセンスキーを入力すると、管理画面からワンクリックでアップデートが可能になります。','License key'=>'ライセンスキー','Note that the order in which CSS/JS are loaded will change.'=>'CSS / JSの読み込み順序が変わることに注意してください。','Load Separate Option on'=>'分割読み込みを有効にする','Custom Value'=>'カスタム値','If you enter a custom value, the values you entered will be used as a priority.'=>'カスタム値を入力すると、入力した値が優先されます。','This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.'=>'この項目は主に、テーマで指定された余白のCSS変数を入力することを想定しており、それによって VK Blocks に同じ余白サイズを適用する事ができます。','ex)'=>'例)','Margin'=>'余白','XXS'=>'XXS','XS'=>'XS','S'=>'S','M'=>'M','L'=>'L','XL'=>'XL','XXL'=>'XXL','PC'=>'PC','Tablet'=>'タブレット','Mobile'=>'モバイル','Common Margin Setting'=>'共通余白設定','Please specify the size of the common margin used for responsive spacers, etc.'=>'レスポンシブスペーサーなどで使用する共通余白のサイズを指定してください。','Unit'=>'単位','Please specify a common accordion setting to be used in the FAQ block.'=>'FAQブロックで使用する共通のアコーディオン設定を指定してください。','Disable accordion'=>'アコーディオン無効','Enable accordion and default open'=>'アコーディオン有効 / 初期状態で開く','Enable accordion and default close'=>'アコーディオン有効 / 初期状態で閉じる','Save setting'=>'変更を保存','Save Success'=>'保存しました','Default Initial State'=>'初期表示状態','Close'=>'閉じる','Open'=>'開く','Accordion Setting'=>'アコーディオン設定','Set initial state per device'=>'デバイスごとに初期状態を設定','No background color'=>'背景なし','No background color / Border'=>'背景なし / 枠線','Background color'=>'背景あり','Background color / Border'=>'背景あり / 枠線','Background color / Rounded '=>'背景あり / 角丸','Background color / Rounded / Border'=>' 背景あり / 角丸 / 枠線 ','Plain'=>'装飾無し','Slow'=>'遅い','Fast'=>'速い','Very Fast'=>'非常に速い','Animation range'=>'アニメーションの距離','Short'=>'短い','Normal'=>'標準','Long'=>'長い','Animation only the first view'=>'初回表示のみアニメーション','Animation Settings'=>'アニメーション設定','Animation effect'=>'アニメーションの効果','Fade In'=>'フェードイン','Slide Up'=>'スライドアップ','Slide Left'=>'スライド左','Slide Right'=>'スライド右','Left Right'=>'左右','Up Down'=>'上下','Trembling Y'=>'ぶるぶる(Y方向)','Trembling X'=>'ぶるぶる(X方向)','Pounding'=>'どきどき','Shaking'=>'ゆらゆら','Animation speed'=>'アニメーションの速度','Very Slow'=>'非常に遅い','Archive List Setting'=>'アーカイブリスト設定','Post type'=>'投稿タイプ','Archive type'=>'アーカイブタイプ','Monthly'=>'月別','Yearly'=>'年別','Display as dropdown'=>'ドロップダウン','Show post counts'=>'投稿件数を表示','Settings'=>'設定','Max number of words'=>'表示件数','Aspect ratio'=>'縦横比','Original'=>'オリジナル','Square'=>'四角','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'=>'単位','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','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','Alert Success'=>'アラート Success','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'=>'リンクをコピー','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 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'=>'リストアイコンの色','Horizontal Scroll Breakpoint'=>'水平スクロールのブレイクポイント','Mobile size'=>'モバイル','Tablet size'=>'タブレット','PC size'=>'PC','Table cells are no longer fixed width when horizontal scroll breakpoint is reached.'=>'水平スクロールのブレークポイントに達すると、テーブルセルの幅が固定されなくなります。','Table Horizontal Scroll'=>'テーブルの水平方向スクロール','Scrollable'=>'スクロール','Theoretical Physicist'=>'理論物理学者','Profile'=>'プロフィール','Albert Einstein'=>'アルバート・アインシュタイン','14 March 1879 – 18 April 1955'=>'1879年3月14日 - 1955年4月18日','Lorem ipsum dolor'=>'闇の中で','Lorem ipsum'=>'ロレム・アプサム','Custom list'=>'カスタムリスト','Preset'=>'プリセット','Font Awesome icon list'=>'Font Awesome アイコンリスト','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'他のアイコンを使いたい場合は Font Awesome のアイコンリストから選んでタグを入力してください。','Ex) '=>'例) ','Add selected icon to custom list'=>'選択中のアイコンをカスタムリストに追加','Delete/Sort mode'=>'削除/並び替えモード','When you click save button, the window will be reloaded and this setting will be applied.'=>'保存ボタンをクリックすると、ウィンドウが再読み込みされて、変更が適用されます。','Save'=>'保存','Select Icon'=>'アイコンを選択','Word count type. Do not translate!words'=>'words','Scale option for Image dimension controlCover'=>'カバー','Scale option for Image dimension controlContain'=>'含める','Scale option for Image dimension controlFill'=>'埋める','Image scaling optionsScale'=>'縮尺','button labelEmbed'=>'埋め込み','button labelTry again'=>'再試行','button labelConvert to link'=>'リンクに変換','VK Blocks Pro'=>'VK Blocks Pro','https://github.com/vektor-inc/vk-blocks'=>'https://github.com/vektor-inc/vk-blocks','This is a plugin that extends Block Editor.'=>'ブロックエディタを拡張するプラグインです。','Vektor,Inc.'=>'Vektor,Inc.','https://vektor-inc.co.jp'=>'https://vektor-inc.co.jp','We\'ve released VK Blocks Pro!'=>'VK Blocks Pro を公開しました!','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'いつもVK Blocksをご利用いただきありがとうございます。この度、VK Blocks Proをリリースしました。より簡単にWebサイトを構築するためのカスタムブロックが追加されています。VK Blocks Proに興味がある方は、詳しくは%1$sこの記事%2$sを読んでみてください。','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/','See more'=>'続きを見る','Dismiss this notice'=>'通知を無視','Install Required Plugins'=>'必須プラグインのインストール','Install Plugins'=>'プラグインのインストール','Installing Plugin: %s'=>'プラグイン %s をインストール中','Something went wrong with the plugin API.'=>'プラグイン API で問題が発生しました。','This plugin requires the following plugin: %1$s.'=>'このプラグインは下記プラグインを必要としています:%1$s。','This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.'=>'このプラグインは次のプラグインと一緒に利用するのがオススメです:%1$s。
これらのプラグインは無償で利用可能です。','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'%1$sプラグインをインストールするための適切な権限がありません。','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'このプラグインとの最大の互換性を確保するには、次のプラグインを最新バージョンに更新する必要があります: %1$s。','There is an update available for: %1$s.'=>'次のプラグインの更新が利用可能です:%1$s。','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'%1$sプラグインを更新するための適切な権限がありません。','The following required plugin is currently inactive: %1$s.'=>'必須プラグインが現在有効化されていません: %1$s。','The following recommended plugin is currently inactive: %1$s.'=>'推奨プラグインが現在有効化されていません: %1$s。','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'%1$sプラグインを有効化するための適切な権限がありません。','Begin installing plugin'=>'プラグインのインストールを開始','Begin updating plugin'=>'プラグインの更新を開始する','Begin activating plugin'=>'プラグインの有効化を開始','Return to Required Plugins Installer'=>'必須プラグインのインストール画面に戻る','Plugin activated successfully.'=>'プラグインを有効化しました。','The following plugin was activated successfully:'=>'次のプラグインを有効化しました:','No action taken. Plugin %1$s was already active.'=>'操作を実行しませんでした。プラグイン %1$s はすでに有効化されています。','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'プラグインを有効化できませんでした。このテーマはプラグイン %s の現在のバージョンをサポートしていません。プラグインを更新してください。','All plugins installed and activated successfully. %1$s'=>'すべてのプラグインを正常にインストールし、有効化しました。 %1$s','Please contact the administrator of this site for help.'=>'ヘルプが必要な場合はこのサイトの管理者にお問い合わせください。','FAQ Setting'=>'FAQ ブロックの設定','Blocks setting'=>'Blocks 設定','label in admin menuBlocks'=>'Blocks','Blocks Setting'=>'Blocks 設定','Balloon Block Setting'=>'吹き出しブロック設定','Load Separete Setting'=>'分割読み込み設定','Blocks Layout'=>'ブロックレイアウト','Blocks'=>'Blocks','Deprecated Blocks'=>'非推奨ブロック','Dummy Text'=>'ダミーテキスト','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'サイトエディタには子ページがないため、先祖階層からのページ一覧は表示されません。 先祖階層からのページリストの代わりにダミーテキストのリストを表示しています。','This message only display on the edit screen.'=>'このメッセージは編集画面でのみ表示されます。','Edit this area'=>'このエリアを編集','Please select year'=>'選択してください','Please select month'=>'選択してください','Category Badge'=>'カテゴリーバッジ','Please select taxonomy'=>'タクソノミーを選択してください。','Categories'=>'カテゴリー','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-js.pot b/languages/vk-blocks-pro-js.pot index 75895effd..37ce19297 100644 --- a/languages/vk-blocks-pro-js.pot +++ b/languages/vk-blocks-pro-js.pot @@ -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 "" @@ -1615,6 +1615,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 @@ -1917,93 +1918,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 "" @@ -2247,7 +2248,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" @@ -2260,52 +2261,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 "" @@ -2609,12 +2610,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 "" @@ -3319,6 +3322,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 "" @@ -3638,34 +3657,32 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:106 -msgid "Horizontal Scroll Breakpoint" +#: src/extensions/core/table/style.js:201 +msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:113 -msgid "Mobile size" +#: src/extensions/core/table/style.js:209 +msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:120 -msgid "Tablet size" +#: src/extensions/core/table/style.js:216 +msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:127 -msgid "PC size" +#: src/extensions/core/table/style.js:223 +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:230 +msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:91 -msgid "Table Horizontal Scroll" +#: src/extensions/core/table/style.js:237 +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 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 @@ 'vk-blocks-pro','plural-forms'=>NULL,'messages'=>['Added balloon image setting'=>'','Balloon Image Setting'=>'','Would you like to delete %s?'=>'','Cancel'=>'','Delete'=>'','Select'=>'','Balloon Image Name'=>'','Balloon Setting'=>'','Balloon Border Width Setting'=>'','1px'=>'','2px'=>'','3px'=>'','4px'=>'','You can register frequently used icon images for speech bubble blocks.'=>'','image'=>'','Block Manager Setting'=>'','Block Style Manager Setting'=>'','Block Style Label (Changeable)'=>'','Add'=>'','Add Custom Block Style'=>'','Target Block (Required/Unchangeable)'=>'','Set the target block.'=>'','Search for a block'=>'','Please enter a string'=>'','Only alphanumeric characters, hyphens, and underscores are allowed.'=>'','Class name is required'=>'','Already registered'=>'','The identifier of the style used to compute a CSS class. (Required/Unchangeable)'=>'','This will be the CSS class name following is-style-.'=>'','(e.g.) %s-block-style'=>'','Custom Block Style Setting'=>'','Block style settings can be registered.'=>'','Target block'=>'','CSS class'=>'','If selector is specified, it will be replaced with CSS class (.is-style-%1$s). CSS selectors other than selector,.is-style-%2$s may affect the entire page.'=>'','Block Style Labels'=>'','※ Required If no title is entered, it will not appear on the toolbar.'=>'','If this Block Style is used for saved content, the style may change.'=>'','Edit'=>'','Custom CSS Setting'=>'','Show Custom CSS flag in editor'=>'','Add Custom Format'=>'','CSS class/unique ID (Required/Unchangeable)'=>'','(e.g.) vk-format-1'=>'','Toolbar title (Changeable)'=>'','Must begin with an alphabetic character and only alphanumeric characters and hyphens may be used.'=>'','Custom Format'=>'','If the saved content has this format, the style will be unstyled.'=>'','Format Setting'=>'','Bold'=>'','Italic'=>'','Strikethrough'=>'','Nowrap'=>'','Color'=>'','Text Color'=>'','Background Color'=>'','Highlighter Color'=>'','Activate Highlighter'=>'','Custom CSS'=>'','If selector is specified, it will be replaced by a unique CSS class (.%s); CSS selectors other than selector may affect the entire page.'=>'','Example:'=>'','Custom Format Setting'=>'','You can apply commonly used formatting on the block toolbar.'=>'','Toolbar title'=>'','Preview Text'=>'','Please enter a license key of valid Vektor Passport ( or Lightning G3 Pro Pack or Lightning Pro ).'=>'','Once you enter the license key you will be able to do a one click update from the administration screen.'=>'','License key'=>'','Load Separate Setting'=>'','Note that the order in which CSS/JS are loaded will change.'=>'','Load Separate Option on'=>'','Custom Value'=>'','If you enter a custom value, the values you entered will be used as a priority.'=>'','This item is mainly intended for inputting CSS variables for the margins specified by the theme. Thereby you can apply to the same margin size to the VK Blocks.'=>'','ex)'=>'','Margin'=>'','XS'=>'','S'=>'','M'=>'','L'=>'','XL'=>'','PC'=>'','Tablet'=>'','Mobile'=>'','Common Margin Setting'=>'','Please specify the size of the common margin used for responsive spacers, etc.'=>'','Unit'=>'','FAQ Block Setting'=>'','Disable accordion'=>'','Enable accordion and default open'=>'','Enable accordion and default close'=>'','Save setting'=>'','Save Success'=>' -develop:languages/vk-blocks-pro.po','No background color'=>'','No background color / Border'=>'','Background color'=>'','Background color / Border'=>'','Background color / Rounded '=>'','Background color / Rounded / Border'=>'','Slow'=>'','Fast'=>'','Very Fast'=>'','Animation range'=>'','Short'=>'','Normal'=>'','Long'=>'','Animation only the first view'=>'','Animation Settings'=>'','Animation effect'=>'','Fade In'=>'','Slide Up'=>'','Slide Left'=>'','Slide Right'=>'','Left Right'=>'','Up Down'=>'','Trembling Y'=>'','Trembling X'=>'','Pounding'=>'','Shaking'=>'','Animation speed'=>'','Very Slow'=>'','Archive List Setting'=>'','Post type'=>'','Archive type'=>'','Monthly'=>'','Yearly'=>'','Display as dropdown'=>'','Show post counts'=>'','Button Common Setting'=>'','Button gap size'=>'','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. '=>'','Title'=>'','Select image'=>'','Delete Image'=>'','URL'=>'','https://example.com'=>'','Display item'=>'','Excerpt Text'=>'','Warning! When you hidden this item, you will lose the content.'=>'','Image'=>'','Button'=>'','Button option'=>'','Click each card block to set the target url. You can find the url form at it\'s sidebar.'=>'','Button text'=>'','Image Height'=>'','Slide Height for each device.'=>'','There are no Page.'=>'','Display conditions'=>'','Parent'=>'','Ignore this post'=>'','Current page'=>'','Please select display element from the Setting sidebar.'=>'','Post Type Name'=>'','Ancestor Page Title'=>'','Display element settings'=>'','Display element'=>'','Please Select'=>'','Post type name of the page being viewed'=>'','Page name in the ancestor hierarchy of the displayed page'=>'','Hide on Ancestor Hierarchy Pages'=>'','This block will not display on pages other than pages that have a parent hierarchy.'=>'','HTML element'=>'','div (default)'=>'','h1'=>'','h2'=>'','h3'=>'','h4'=>'','h5'=>'','h6'=>'','p'=>'','span'=>'','Color Settings'=>'','Margin setting inside the item'=>'','Padding (Top)'=>'','Padding (Left and Right)'=>'','Padding (Bottom)'=>'','px'=>'','em'=>'','rem'=>'','vw'=>'','Layout Columns'=>'','Column Margin Bottom Setting'=>'','Margin Bottom'=>'','You can create a variety of layouts with grid column card blocks.'=>'','Unlink'=>'','Input Link URL'=>'','Submit'=>'','Edit mode'=>'','All columns'=>'','This column only'=>'','Edit Lock'=>'','Lock edits this block from the parent and other Grid Column Item block'=>'','Column Setting'=>'','Link URL:'=>'','Open link new tab.'=>'','If you set a link URL, do not place the link element (text or button) in the Grid Column Card Item. It may not be displayed correctly.'=>'','Make sure that no link is specified for the image block, etc.'=>'','Image fit to column'=>'','Column footer button area'=>'','Display'=>'','Hide'=>'','Column Radius'=>'','Border'=>'','Border Color'=>'','Column padding'=>'','Column header media area'=>'','Column Width Setting'=>'','If you specify the minimum column size on a tablet or PC with %, it will be easier to align the number of columns in the upper and lower rows according to the screen size.'=>'','Column min width (Mobile)'=>'','Column min width (Tablet / Optional)'=>'','Column min width (PC / Optional)'=>'','Column Gap Setting'=>'','Column gap size'=>'','Column row-gap size (optional)'=>'','Specify all columns at once'=>'','Input Title'=>'','Input Content'=>'','Icon Card Setting'=>'','Icon'=>'','Icon Background:'=>'','Solid color'=>'','No background'=>'','Columns'=>'','Align'=>'','Text'=>'','Background Setting'=>'','Color Setting'=>'','Color will overcome background image. If you want to display image, set opacity 0.'=>'','Opacity Setting'=>'','Background Image PC'=>'','Background Image Tablet'=>'','Background Image Mobile'=>'','Background image Position'=>'','Repeat'=>'','Cover'=>'','Cover fixed (Not fixed on iPhone)'=>'','Parallax (Non-guaranteed)'=>'','Layout Setting'=>'','Width'=>'','Fit to the Content area'=>'','Add padding to the Outer area'=>'','Remove padding from the Outer area'=>'','Padding (Top and Bottom)'=>'','Use default padding'=>'','Do not use default padding'=>'','* If you select "Do not use" that, please set yourself it such as a spacer block.'=>'','Divider Setting'=>'','Type'=>'','Tilt'=>'','Curve'=>'','Wave'=>'','Triangle'=>'','Upper Divider Level'=>'','Lower Divider Level'=>'','Border Setting'=>'','Border will disappear when divider effect is applied.'=>'','Border type'=>'','None'=>'','Solid'=>'','Dotted'=>'','Dashed'=>'','Double'=>'','Groove'=>'','Ridge'=>'','Inset'=>'','Outset'=>'','Border width'=>'','Border radius'=>'','Container Inner Side Space Setting'=>'','Unit Type'=>'','Filter by %s'=>'','Filter by PostTypes'=>'','Taxonomy filter condition'=>'','OR ( Whichever apply )'=>'','AND ( All apply )'=>'','Number of Posts'=>'','Filter by Date'=>'','Period of Time'=>'','Whole Period'=>'','From Today'=>'','From Now'=>'','From Tomorrow'=>'','* If you choose a future period, you will need to customize it so that future posts will be published immediately.'=>'','Order'=>'','ASC'=>'','DESC'=>'','Order by'=>'','Published Date'=>'','Modefied Date'=>'','Random'=>'','offset'=>'','Because no post is selected, The block Will not render'=>'','Input Internal Post URL'=>'','Ex,6:00AM'=>'','Style -develop:languages/vk-blocks-pro.po'=>'','Outlined'=>'','Default'=>'','Step Mark'=>'','If Font Awesome tags entered, it will overrides the number.'=>'','First Dot Number'=>'','Tab Color Setting'=>'','Tab Color'=>'','Body Layout Setting'=>'','Padding of Tab Body'=>'','Tab Item'=>'','Tab Label [ %s ]'=>'','Tab size Setting'=>'','Tab Size ( Smart Phone )'=>'','Tab Size ( Tablet )'=>'','Tab Size ( PC )'=>'','Fit to the text'=>'','Monospaced'=>'','Padding Setting Mode'=>'','Separate'=>'','Tab 01'=>'','Bundle'=>'','Tab 02'=>'','Tab'=>'','Normal No Frame'=>'','Line'=>'','Line No Frame'=>'','Table of Contents'=>'','Note on duplicating headings'=>'','If you duplicate a heading, the table of contents block will not work properly, please reassign the ID.'=>'','Display type'=>'','No frame'=>'','Default Display Status'=>'','OPEN'=>'','CLOSE'=>'','Show only top level categories'=>'','Hide if term has no posts'=>'','Show hierarchy'=>'','This block will not be displayed because no taxonomy is selected.'=>'','This block will not be displayed because this taxonomy has no term.'=>'','Taxonomy Block Option'=>'','Taxonomy'=>'','label'=>'','Style Settings'=>'','Success'=>'','Info'=>'','Warning'=>'','Danger'=>'','Don\'t display inactive grand child pages'=>'','Ancestor Page List Setting'=>'','Display Ancestor Page Title'=>'','Archive title tag'=>'','Ancestor page title class name'=>'','Add link to ancestor page title'=>'','If there is no child page, the block itself is not displayed'=>'',' Image Border'=>'','Add border to image'=>'','* You can change border width on Setting > VK Blocks'=>'','Border color of speech balloon'=>'','Add border to balloon'=>'','Balloon setting'=>'','Position'=>'','Please specify the layout of the balloon.'=>'','Left'=>'','Right'=>'','Please select the type of balloon.'=>'','Speech'=>'','Thinking'=>'','Image Style'=>'','Rounded'=>'','Circle'=>'','100%'=>'','Background color of speech balloon'=>'','Default Icon Setting'=>'','You can register default icons from Settings > VK Blocks in Admin.'=>'','Animation setting'=>'','Please select the type of animation.'=>'','Trembling'=>'','Upload image'=>'','Icon Name'=>'','Please enter a title.'=>'','The margin-top of the first element and the margin-bottom of the last element in the border block will be automatically set to 0.If you want to add margins at the beginning and end, use a spacer block to specify height instead of margin.'=>'','Transparent'=>'','White'=>'','Solid Angle Tab'=>'','Solid Round Tab'=>'','Solid Angle Banner'=>'','Solid Angle Onborder'=>'','Solid Angle Inner'=>'','Solid Angle iconFeature'=>'','Button setting'=>'','Sub Caption'=>'','Button Size:'=>'','Large'=>'','Small'=>'','Button Position:'=>'','Center'=>'','Wide'=>'','Block'=>'','Button Width:'=>'','25%'=>'','50%'=>'','75%'=>'','Button Style:'=>'','Text only'=>'','If you select "No background", that you need to select a Custom Color.'=>'','Button Effect:'=>'','Shine'=>'','Default Color (Bootstrap)'=>'','Primary'=>'','Secondary'=>'','Light'=>'','Dark'=>'','Custom Color'=>'','Button Color'=>'','This color palette overrides the default color. If you want to use the default color, click the clear button.'=>'','Before text'=>'','After text'=>'','Size'=>'','Input text'=>'','If you want to be collapsing this block, you can set it at Setting > VK Blocks'=>'','You can be collapsing this block at VK Blocks Pro'=>'','Accordion Setting'=>'','Please enter a question.'=>'','Bgfill Circle'=>'','Bgfill Square'=>'','Bgfill Rounded'=>'','Border Circle'=>'','Border Square'=>'','Border Rounded'=>'','Display of arrow'=>'','Arrow display'=>'','Arrow hidden'=>'','Input title'=>'','Input content'=>'','Input sub text…'=>'','Input title…'=>'','Heading style'=>'','Plain'=>'','Margin Setting'=>'','Margin between Heading and sub text (rem)'=>'','Margin bottom size of after this block (rem)'=>'','Heading Settings'=>'','Icon Color'=>'','Sub Text Settings'=>'','Text size (rem)'=>'','Change heading level'=>'','Heading %d'=>'','Reset'=>'','Icon & Frame'=>'','Icon only'=>'','Icon Common Setting'=>'','Icon Setting'=>'','Link URL'=>'','Unspecified'=>'','Page Setting'=>'','Select Page'=>'','This block can display private content. Please note that this content will be public even if you set the original page to private.'=>'','PR Block1 Setting'=>'','Icon 1'=>'','When you have an image. Image is displayed with priority'=>'','PR Image 1'=>'','PR Block2 Setting'=>'','Icon 2'=>'','PR Image 2'=>'','PR Block3 Setting'=>'','Icon 3'=>'','When you have an image. Image is displayed with priority.'=>'','PR Image 3'=>'','Input title.'=>'','Input content.'=>'','Select Image'=>'','Button Setting'=>'','Button Text'=>'','Button Type'=>'','Ghost'=>'','Default Color:'=>'','Layout Type'=>'','Title Color'=>'','Content Color'=>'','Image Border Color'=>'','Fit to the Container area'=>'','Add padding to the Slider area'=>'','Remove padding from the Slider area'=>'','Vertical align'=>'','Background Image Size'=>'','cover'=>'','repeat'=>'','If you specifying a numbers with decimals such as 1.5, Please set "Centering the active slide"'=>'','The decimal point can be set for the display number only when the display is switched one by one.'=>'','Enter integer divisors for the number of placed slide items for each display size.'=>'','If you want to loop slides, the number of placed slide items must be at least twice as large as the number of items to display per view.'=>'','Multi-item Display Setting'=>'','Number of Items to display per view'=>'','Enter divisors for the number of placed slide items for each display size.'=>'','If the number is not divisible, the sliding behaviour will be unnatural'=>'','Number of items to change in a transition'=>'','One by One'=>'','Same as the number of items to display'=>'','Centering the active slide'=>'','If you specify the center, you can display items that are cut off on the left and right.'=>'','Full Wide'=>'','Height'=>'','Slider Settings'=>'','Effect '=>'','Slide'=>'','Fade'=>'','Loop '=>'','AutoPlay'=>'','Stop AutoPlay when swipe'=>'','Display Time'=>'','Change Speed'=>'','Pagination Type'=>'','Number of slides'=>'','Navigation Position'=>'','Bottom on Mobile device'=>'','height'=>'','margin-top'=>'','margin-bottom'=>'','Space Type'=>'','Custom'=>'','You can change each common margin size from Setting > VK Blocks'=>'','Height for each device.'=>'','Spacer Settings'=>'','Medium'=>'','Your Name'=>'','Caption'=>'','Role position'=>'','Profile title'=>'','Profile text'=>'','Layout'=>'','Image left'=>'','Image border'=>'','Alt text'=>'','Set the alt text for profile image'=>'','Staff name'=>'','Name caption'=>'','Heading Font'=>'','Font'=>'','minchoBody'=>'','Note : Contains double-byte spaces; CSS may not work.'=>'','There is an error with your CSS structure.'=>'','Card (Image Round)'=>'','Card'=>'','Card (No border)'=>'','Card (Intext)'=>'','Card (Horizontal)'=>'','Media'=>'','Text 1 Column'=>'','Display type and columns'=>'','Column ( Screen size : Extra large )'=>'','Column ( Screen size : XX large )'=>'','Column ( Screen size : Extra small )'=>'','Column ( Screen size : Small )'=>'','Column ( Screen size : Medium )'=>'','Column ( Screen size : Large )'=>'','Button align'=>'','Term\'s name on Image'=>'','Excerpt'=>'','Author'=>'','Date'=>'','New mark'=>'','Taxonomies (all)'=>'','New mark option'=>'','Number of days to display the new post mark'=>'','New post mark'=>'','Link target'=>'','Open in new tab'=>'','Link rel'=>'','If selector is specified, it is replaced by a block-specific CSS class. If selector is set to "selector", it will be replaced with a block-specific CSS class. CSS selectors other than "selector" may affect the entire page.'=>'','If you want the edit screen to be as close to the public screen as possible, or if your own CSS interferes with the CSS for the identification display and does not display as intended on the edit screen, please hide it.'=>'','Hidden Settings'=>'','Hidden at screen size'=>'','Note : This function is display hidden only. Actually Block is output to HTML. Please don\'t use you must not visible item. Don\'t use it for blocks you really don\'t want to display.'=>'','Hidden ( Screen size : all )'=>'','Hidden ( Screen size : xs )'=>'','Hidden ( Screen size : sm )'=>'','Hidden ( Screen size : md )'=>'','Hidden ( Screen size : lg )'=>'','Hidden ( Screen size : xl )'=>'','Hidden ( Screen size : xxl )'=>'','If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.'=>'','Highlighter'=>'','Inline Font Size'=>'','Inline font size'=>'','Apply'=>'','Big'=>'','Extra big'=>'','Top XL'=>'','Margin the block'=>'','Top L'=>'','Top M'=>'','Top S'=>'','Top XS'=>'','Top 0'=>'','Bottom 0'=>'','Bottom XS'=>'','Bottom S'=>'','Bottom M'=>'','Bottom L'=>'','Bottom XL'=>'','No wrap'=>'','Responsive BR'=>'','Responsive BR '=>'','Because of the theme that enabled theme.json become can specify the color from border panel that, specification from here is deprecated.'=>'','List Icon Color'=>'','Theoretical Physicist'=>'','Profile'=>'','Albert Einstein'=>'','14 March 1879 – 18 April 1955'=>'','Lorem ipsum dolor'=>'','Lorem ipsum'=>'','Font Awesome icon list'=>'','If you want to use an icon other than the ones listed above, you can use any of the icons from Font Awesome\'s icon list Please select a tag and enter it.'=>'','Ex) '=>'','When you click save button, the window will be reloaded and this setting will be applied.'=>'','Save'=>'','Select Icon'=>'','vh'=>'','svh'=>'','lvh'=>'','dvh'=>'','VK Blocks Pro'=>'','https://github.com/vektor-inc/vk-blocks'=>'','This is a plugin that extends Block Editor.'=>'','Vektor,Inc.'=>'','https://vektor-inc.co.jp'=>'','We\'ve released VK Blocks Pro!'=>'','Thank you for using VK Blocks. We\'ve released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details.'=>'','https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/'=>'','See more'=>'','Dismiss this notice'=>'','Setting saved.'=>'','Install Required Plugins'=>'','Install Plugins'=>'','Installing Plugin: %s'=>'','Something went wrong with the plugin API.'=>'','This plugin requires the following plugin: %1$s.'=>'' . "\0" . '','This plugin recommends the following plugin: %1$s.
Many additional functions are available for free.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to install the %1$s plugin.'=>'' . "\0" . '','The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s.'=>'' . "\0" . '','There is an update available for: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to update the %1$s plugin.'=>'' . "\0" . '','The following required plugin is currently inactive: %1$s.'=>'' . "\0" . '','The following recommended plugin is currently inactive: %1$s.'=>'' . "\0" . '','Sorry, but you do not have the correct permissions to activate the %1$s plugin.'=>'' . "\0" . '','Begin installing plugin'=>'' . "\0" . '','Begin updating plugin'=>'' . "\0" . '','Begin activating plugin'=>'' . "\0" . '','Return to Required Plugins Installer'=>'','Plugin activated successfully.'=>'','The following plugin was activated successfully:'=>'','No action taken. Plugin %1$s was already active.'=>'','Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.'=>'','All plugins installed and activated successfully. %1$s'=>'','Please contact the administrator of this site for help.'=>'','Sorry, there is no post'=>'','Vektor WordPress Information'=>'','Enable accordion and default open '=>'','Enable accordion and default close '=>'','FAQ Setting'=>'','If you change image or name that please click Save Changes button.'=>'','Enter a valid Lightning G3 Pro Pack or Lightning Pro license key.'=>'','Load Separete Setting'=>'','Load Separete Option on'=>'','Blocks setting'=>'','label in admin menuBlocks'=>'','Blocks Setting'=>'','License Key'=>'','Balloon Block Setting'=>'','Setting'=>'','Edit this area'=>'','Blocks'=>'','Blocks Layout'=>'','Deprecated Blocks'=>'','Dummy Text'=>'','Because of the site editor have not child page that, the page list from ancestor is not displayed. Now displaying the dummy text list instead of the page list from ancestor.'=>'','This message only display on the edit screen.'=>'','Please select year'=>'','Please select month'=>'','Please select taxonomy'=>'','Categories'=>'','All of %s'=>'','Background fill lightgray'=>'','Double border top and bottom black'=>'','Double border bottom black'=>'','Solid border top and bottom black'=>'','Solid border bottom black'=>'','Dotted border bottom black'=>'','Both ends'=>'','Brackets black'=>'','Arrow'=>'','Check'=>'','Check Square'=>'','Check Circle'=>'','Handpoint'=>'','Pencil'=>'','Smile'=>'','Frown'=>'','Numbered Circle'=>'','Numbered Square'=>'','Border Top Bottom'=>'','Border / Stripes'=>'','Rounded02'=>'','Photo frame'=>'','Photo frame Tilt Right'=>'','Photo frame Tilt Left'=>'','Shadow'=>'','Wave01'=>'','Wave02'=>'','Wave03'=>'','Wave04'=>'','Solid Roundcorner'=>'','Stitch'=>'','Post'=>'','There are no %ss.'=>'','Read more'=>'','New!!'=>'','More'=>'','Posts navigation'=>'','Posts'=>'','Page'=>'','Card Noborder'=>'','Card Intext'=>'','Card Horizontal'=>'','post list typeText 1 Column'=>'','CSS Optimize ( Speed up ) Settings'=>'','Tree shaking'=>'','Tree shaking activation settings'=>'','Output only the main CSS of the page inline'=>'','Nothing to do'=>'','Active Tree shaking (Recomend)'=>'','Exclude class of Tree shaking'=>'','If you choose "Active Tree shaking" that delete the useless css.If you using active css class that please fill in class name. Ex) btn-active,slide-active,scrolled'=>'','Preload CSS'=>'','Preload CSS activation settings'=>'','Preload css except for critical css'=>'','Active Preload CSS (Recomend)'=>'','Exclude class of Preload CSS'=>'','If you choose "Active Preload CSS" that css load timing was changed.If you have any do not want to preload css file that please fill in handle(id) name. Ex) pluginname_a-style,pluginname_b-css'=>'','Disabled Blocks module on VK All in One Expansion Unit. Because VK-Blocks Plugin running.'=>'','License Key has no registered.'=>'','The VK Blocks Pro license is invalid.'=>'','Enter a valid license key for any of the following products on the settings screen.'=>'','Enter the license key'=>'','If this display does not disappear even after entering a valid license key, re-acquire the update.'=>'','Re-acquisition of updates'=>'','VK Blocks '=>'','Please enter a valid license key for any of the following products on the settings screen.'=>'','block titleAlert'=>'','block descriptionA colored box with four statuses, including annotations and alerts.'=>'','block titlePage list from ancestor'=>'','block descriptionDisplay Page list from ancestor page'=>'','block titleBallon'=>'','block descriptionThese speech balloons are perfect for recreating conversations.'=>'','block titleBorder Box'=>'','block descriptionThis is a border box where you can place headings to attract attention.'=>'','block titleButton'=>'','block descriptionA button link that can display icons before and after.'=>'','block titleClassic FAQ'=>'','block descriptionDisplays a combination of questions and answers.'=>'','block titleFAQ Answer'=>'','block descriptionAnswer area where you can add blocks freely.'=>'','block titleFAQ Question'=>'','block descriptionQuestion area where you can freely add blocks.'=>'','block titleNew FAQ'=>'','block descriptionIt displays a combination of questions and answers. You can freely add blocks to the question area as well.'=>'','block titleFlow'=>'','block descriptionDisplays a sequential description in time series.'=>'','block titleHeading'=>'','block descriptionThis is a heading that allows you to set text size, subtext, icon, and margin.'=>'','block titleIcon Outer'=>'','block descriptionDisplay the Font Awesome icons horizontally.'=>'','block titleIcon'=>'','block descriptionDisplay icons with Font Awesome.'=>'','block titlePage Content'=>'','block descriptionDisplays the body content of the specified parent page.'=>'','block titlePR Blocks (not recommended)'=>'','block descriptionThis is a PR block where you can place images and icon. But currently, it is possible to create the same layout by combining Column Block and Icon Block, so this block is not recommended. Please check Columns category of Block Patterns.'=>'','block titlePR Content'=>'','block descriptionThis is PR content where you can place images, headlines, text, and buttons.'=>'','block titleSlider Item'=>'','block descriptionThis is one item in the slider.'=>'','block titleSlider'=>'','block descriptionThis slider allows you to place various items.Slider is do not move in edit screen.'=>'','block titleResponsive Spacer'=>'','block descriptionUse responsive spacers to get the margins right.'=>'','block titleStaff'=>'','block descriptionUsed for staff introduction, company introduction, school introduction, menu, etc.'=>'','block titleAccordion Target'=>'','block descriptionThis is the content area where you can add blocks freely.'=>'','block titleAccordion Trigger'=>'','block descriptionThis is the title area where you can freely add blocks.'=>'','block titleAccordion'=>'','block descriptionCollapses and hides content when the content is long.'=>'','block titleAnimation'=>'','block descriptionAdd animation to elements when scrolling the page.'=>'','block titleArchive list'=>'','block descriptionDisplays a list of archives'=>'','block titleBreadcrumb'=>'','block descriptionDisplays breadcrumbs of a page\'s hierarchy, or a post\'s categories.This block is not displayed on the front page.'=>'','block titleButton Outer'=>'','block descriptionDisplay the VK Button block horizontally.'=>'','block titleCard Item'=>'','block descriptionA single item in a card block.'=>'','block titleCard'=>'','block descriptionA card where you can place images, headings, text, and links.'=>'','block titleChild page list'=>'','block descriptionWhen a parent page is specified, a list of its child pages will be displayed.'=>'','block titleDynamic Text'=>'','block descriptionDisplay dynamic text'=>'','block titleGrid Column Item'=>'','block descriptionOne item in a grit column block.'=>'','block titleGrid Column'=>'','block descriptionSet the number of columns to be displayed for each screen size.'=>'','block titleGrid Column Card Item Body'=>'','block descriptionBody of Grid Column Card Block Item'=>'','block titleGrid Column Card Item Footer'=>'','block descriptionFooter button area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item header'=>'','block descriptionHeader image area of Grid Column Card Block Item'=>'','block titleGrid Column Card Item'=>'','block descriptionIt is a block of single column of Grid Column Card.'=>'','block titleGrid Column Card'=>'','block descriptionThis block can flexible column layout'=>'','block titleIcon Card Item'=>'','block descriptionThis is one item in an icon card.'=>'','block titleIcon Card'=>'','block descriptionDisplay card with icons, headings, text, and links.'=>'','block titleOuter'=>'','block descriptionSet the background image, color, and border to show the layout and divisions.'=>'','block titlePost list'=>'','block descriptionDisplays the list of posts by setting the post type, classification, and number of posts to display.'=>'','block titleSelected Post List Item'=>'','block descriptionA single item in the select post list.'=>'','block titleSelected Post List'=>'','block description -HEAD:inc/vk-blocks/languages/vk-blocks.potDisplays an arbitrarily specified page with the layout of the posting list.'=>'','block descriptionDisplays an arbitrarily specified page with the layout of the posting list. -develop:languages/vk-blocks-pro.po'=>'','block titleStep Item'=>'','block descriptionThis element sets the icon, color, and style of the step mark.'=>'','block titleStep'=>'','block descriptionSet and display step marks, which are useful when explaining the order.'=>'','block titleTable of Contents'=>'','block descriptionThis is a table of contents that is automatically generated according to the headings when added.'=>'','block titleTaxonomy'=>'','block descriptionDisplay Taxnomy List Pulldown'=>'','block titleTimeline Item'=>'','block descriptionThis element sets the label, color, and style of the timeline.'=>'','block titleTimeline'=>'','block descriptionDisplays a simple schedule and other information that is useful for explaining the order.'=>''],'language'=>'','x-generator'=>'Poedit 3.3.1']; \ No newline at end of file +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 0fdcbd56a..53101a9e6 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.83.0.2\n" +"Project-Id-Version: VK Blocks Pro 1.85.0.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-09-11T08:08:51+00:00\n" +"POT-Creation-Date: 2024-09-25T00:02:45+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 @@ -92,7 +92,6 @@ msgid "image" msgstr "" #: src/admin/block-category-position.js:20 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:109 #: inc/vk-blocks/admin/admin.php:109 msgid "Block Category Position Setting" msgstr "" @@ -107,20 +106,17 @@ msgstr "" #: src/admin/block-manager/index.js:51 #: src/admin/import-export/index.js:106 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:118 #: inc/vk-blocks/admin/admin.php:118 msgid "Block Manager Setting" msgstr "" #: src/admin/block-style-manager/index.js:27 #: src/admin/import-export/index.js:115 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:119 #: inc/vk-blocks/admin/admin.php:119 msgid "Block Style Manager Setting" msgstr "" #: src/admin/breadcrumb.js:24 -#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:15 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:15 msgid "Breadcrumb Setting" msgstr "" @@ -213,7 +209,6 @@ msgstr "" #: src/admin/custom-block-style/index.js:77 #: src/admin/custom-block-style/item/title-area/delete-button/index.js:31 #: src/admin/import-export/index.js:52 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:113 #: inc/vk-blocks/admin/admin.php:113 msgid "Custom Block Style Setting" msgstr "" @@ -257,7 +252,6 @@ msgstr "" #: src/admin/custom-css.js:20 #: src/admin/import-export/index.js:96 #: src/extensions/common/custom-css-extension/index.js:225 -#: dist/vk-blocks-pro/inc/vk-blocks-pro/admin-pro/admin-pro.php:16 #: inc/vk-blocks-pro/admin-pro/admin-pro.php:16 msgid "Custom CSS Setting" msgstr "" @@ -368,7 +362,6 @@ msgstr "" #: src/admin/custom-format/index.js:50 #: src/admin/import-export/index.js:39 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:112 #: inc/vk-blocks/admin/admin.php:112 msgid "Custom Format Setting" msgstr "" @@ -456,13 +449,11 @@ msgid "Breadcrumb Separator Setting" msgstr "" #: src/admin/import-export/index.js:15 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:107 #: inc/vk-blocks/admin/admin.php:107 msgid "License Key" msgstr "" #: src/admin/import-export/index.js:167 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:120 #: inc/vk-blocks/admin/admin.php:120 msgid "Import Export Tool" msgstr "" @@ -588,7 +579,6 @@ msgid "Mobile" msgstr "" #: src/admin/margin.js:72 -#: dist/vk-blocks-pro/inc/vk-blocks/admin/admin.php:115 #: inc/vk-blocks/admin/admin.php:115 msgid "Common Margin Setting" msgstr "" @@ -680,7 +670,6 @@ msgstr "" #: src/blocks/_pro/accordion/index.js:47 #: src/blocks/heading/edit.js:268 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:296 #: inc/vk-blocks/class-vk-blocks-global-settings.php:296 msgid "Plain" msgstr "" @@ -712,7 +701,6 @@ msgstr "" #: src/blocks/faq/index.js:26 #: src/blocks/faq2/index.js:21 #: src/extensions/common/inline-font-size/inline.js:28 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:514 #: inc/vk-blocks/class-vk-blocks-global-settings.php:514 msgid "Normal" msgstr "" @@ -1008,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 "" @@ -1115,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 "" @@ -1124,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 "" @@ -1141,7 +1129,6 @@ msgid "Post Type Name" msgstr "" #: src/blocks/_pro/dynamic-text/edit.js:136 -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: inc/vk-blocks/build/blocks/ancestor-page-list/index.php:44 #: src/blocks/ancestor-page-list/index.php:44 msgid "Ancestor Page Title" @@ -1526,8 +1513,6 @@ msgstr "" #: src/blocks/_pro/gridcolcard/edit-common.js:189 #: 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" @@ -1617,6 +1602,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 @@ -1801,7 +1787,6 @@ 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 "" @@ -1851,25 +1836,21 @@ msgstr "" #: src/blocks/_pro/step-item/edit.js:118 #: src/blocks/_pro/timeline-item/edit.js:88 #: src/blocks/pr-content/edit.js:145 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php: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 "" @@ -1905,7 +1886,6 @@ 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 "" @@ -1927,91 +1907,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 "" @@ -2220,7 +2200,6 @@ msgid "Show hierarchy" msgstr "" #: src/blocks/_pro/taxonomy/edit.js:54 -#: dist/vk-blocks-pro/inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: inc/vk-blocks/build/blocks/_pro/taxonomy/index.php:246 #: src/blocks/_pro/taxonomy/index.php:246 msgid "Specified taxonomy does not exist. Please check your taxonomy settings to display or remove this block." @@ -2252,10 +2231,9 @@ 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 -#: 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 "" @@ -2263,62 +2241,59 @@ 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 "" #: 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 -#: 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 "" #: 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 -#: 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 "" -#: 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 "" @@ -2404,7 +2379,6 @@ 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 "" @@ -2520,7 +2494,6 @@ msgstr "" #: src/blocks/button/edit.js:338 #: src/extensions/common/inline-font-size/inline.js:23 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php:509 #: inc/vk-blocks/class-vk-blocks-global-settings.php:509 msgid "Small" msgstr "" @@ -2620,12 +2593,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 "" @@ -3312,6 +3287,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 "" @@ -3497,13 +3488,11 @@ msgid "Apply" msgstr "" #: src/extensions/common/inline-font-size/inline.js:33 -#: dist/vk-blocks-pro/inc/vk-blocks/class-vk-blocks-global-settings.php: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 "" @@ -3616,32 +3605,33 @@ msgstr "" msgid "List Icon Color" msgstr "" -#: src/extensions/core/table/style.js:106 -msgid "Horizontal Scroll Breakpoint" +#: src/extensions/core/table/style.js:201 +msgid "Table Horizontal Scroll" msgstr "" -#: src/extensions/core/table/style.js:113 -msgid "Mobile size" +#: src/extensions/core/table/style.js:209 +msgid "Scrollable" msgstr "" -#: src/extensions/core/table/style.js:120 -msgid "Tablet size" +#: src/extensions/core/table/style.js:216 +msgid "Horizontal Scroll Breakpoint" msgstr "" -#: src/extensions/core/table/style.js:127 -msgid "PC size" +#: src/extensions/core/table/style.js:223 +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:230 +msgid "Tablet size" msgstr "" -#: src/extensions/core/table/style.js:91 -msgid "Table Horizontal Scroll" +#: src/extensions/core/table/style.js:237 +msgid "PC size" msgstr "" -#: src/extensions/core/table/style.js:99 -msgid "Scrollable" +#: src/extensions/core/table/style.js:41 +#: inc/vk-blocks/view/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php:66 +msgid "You can scroll" msgstr "" #: src/utils/example-data.js:14 @@ -3773,58 +3763,46 @@ msgstr "" msgid "https://vektor-inc.co.jp" msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:28 #: inc/admin-notices.php:28 msgid "We've released VK Blocks Pro!" msgstr "" #. translators: 1: opening a tag, 2: closing a tag -#: dist/vk-blocks-pro/inc/admin-notices.php:35 #: inc/admin-notices.php:35 msgid "Thank you for using VK Blocks. We've released VK Blocks Pro. It has more custom blocks to build web site more easily. If you are interested in VK Blocks Pro, Please read %1$s this post %2$s for more details." msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:39 -#: dist/vk-blocks-pro/inc/admin-notices.php:45 #: inc/admin-notices.php:39 #: inc/admin-notices.php:45 msgid "https://www.vektor-inc.co.jp/service/wordpress-plugins/vk-blocks/" msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:46 #: inc/admin-notices.php:46 msgid "See more" msgstr "" -#: dist/vk-blocks-pro/inc/admin-notices.php:49 #: inc/admin-notices.php:49 msgid "Dismiss this notice" msgstr "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:72 #: inc/tgm-plugin-activation/tgm-config.php:72 msgid "Install Required Plugins" msgstr "" -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:73 #: inc/tgm-plugin-activation/tgm-config.php:73 msgid "Install Plugins" msgstr "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:75 #: inc/tgm-plugin-activation/tgm-config.php:75 msgid "Installing Plugin: %s" msgstr "" -#. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:76 #: inc/tgm-plugin-activation/tgm-config.php:76 msgid "Something went wrong with the plugin API." msgstr "" #. translators: -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:78 #: inc/tgm-plugin-activation/tgm-config.php:78 msgid "This plugin requires the following plugin: %1$s." msgid_plural "This plugin requires the following plugins: %1$s." @@ -3832,7 +3810,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:84 #: inc/tgm-plugin-activation/tgm-config.php:84 msgid "This plugin recommends the following plugin: %1$s.
Many additional functions are available for free." msgid_plural "This plugin recommends the following plugins: %1$s.
Many additional functions are available for free." @@ -3840,7 +3817,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:90 #: inc/tgm-plugin-activation/tgm-config.php:90 msgid "Sorry, but you do not have the correct permissions to install the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to install the %1$s plugins." @@ -3848,7 +3824,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:96 #: inc/tgm-plugin-activation/tgm-config.php:96 msgid "The following plugin needs to be updated to its latest version to ensure maximum compatibility with this plugin: %1$s." msgid_plural "The following plugins need to be updated to their latest version to ensure maximum compatibility with this plugin: %1$s." @@ -3856,7 +3831,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:102 #: inc/tgm-plugin-activation/tgm-config.php:102 msgid "There is an update available for: %1$s." msgid_plural "There are updates available for the following plugins: %1$s." @@ -3864,7 +3838,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:108 #: inc/tgm-plugin-activation/tgm-config.php:108 msgid "Sorry, but you do not have the correct permissions to update the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to update the %1$s plugins." @@ -3872,7 +3845,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:114 #: inc/tgm-plugin-activation/tgm-config.php:114 msgid "The following required plugin is currently inactive: %1$s." msgid_plural "The following required plugins are currently inactive: %1$s." @@ -3880,7 +3852,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:120 #: inc/tgm-plugin-activation/tgm-config.php:120 msgid "The following recommended plugin is currently inactive: %1$s." msgid_plural "The following recommended plugins are currently inactive: %1$s." @@ -3888,7 +3859,6 @@ msgstr[0] "" msgstr[1] "" #. translators: %s = plugin name. -#: dist/vk-blocks-pro/inc/tgm-plugin-activation/tgm-config.php:126 #: inc/tgm-plugin-activation/tgm-config.php:126 msgid "Sorry, but you do not have the correct permissions to activate the %1$s plugin." msgid_plural "Sorry, but you do not have the correct permissions to activate the %1$s plugins." @@ -3896,1225 +3866,1030 @@ 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:271 #: 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:275 #: 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/src/components/scroll-hint/index.js b/src/components/scroll-hint/index.js new file mode 100644 index 000000000..728234a0a --- /dev/null +++ b/src/components/scroll-hint/index.js @@ -0,0 +1,158 @@ +import { useState, useEffect } from 'react'; +import { __ } from '@wordpress/i18n'; +import { ToggleControl, TextControl, BaseControl } from '@wordpress/components'; +import { FontAwesome } from '@vkblocks/utils/font-awesome-new'; + +const ScrollMessageControls = ({ + showScrollMessage, + scrollMessageText, + scrollIconLeft, + scrollIconRight, + setAttributes, + attributes, + ...props +}) => { + // eslint-disable-next-line no-undef + const iconFamily = vkFontAwesome.iconFamily; + + const [iconOutputLeft, setIconOutputLeft] = useState(scrollIconLeft !== ''); + const [iconOutputRight, setIconOutputRight] = useState( + scrollIconRight !== '' + ); + + // アイコンの状態が空の場合には、トグルをOFFに設定 + useEffect(() => { + if (attributes.scrollIconLeft === '') { + setIconOutputLeft(false); + } + if (attributes.scrollIconRight === '') { + setIconOutputRight(false); + } + }, [attributes.scrollIconLeft, attributes.scrollIconRight]); + + // アイコン出力の状態に応じて data-attributes を更新 + useEffect(() => { + setAttributes({ + iconOutputLeft, + iconOutputRight, + }); + }, [iconOutputLeft, iconOutputRight]); + + const handleScrollMessageToggle = (isChecked) => { + setAttributes({ showScrollMessage: isChecked }); + }; + + const handleMessageTextChange = (value) => { + setAttributes({ scrollMessageText: value }); + }; + + const handleIconChange = (position, iconClass) => { + if (position === 'left') { + setAttributes({ scrollIconLeft: iconClass }); + } else if (position === 'right') { + setAttributes({ scrollIconRight: iconClass }); + } + }; + + // ToggleControlが動いたときに状態を更新 + const handleIconOutputToggle = (position) => { + if (position === 'left') { + setIconOutputLeft(!iconOutputLeft); + + // トグルがONになった場合にデフォルトアイコンを設定、OFFになった場合は削除 + if (!iconOutputLeft && !attributes.scrollIconLeft) { + setAttributes({ + scrollIconLeft: 'fa-solid fa-caret-left', + }); + } else if (iconOutputLeft) { + setAttributes({ + scrollIconLeft: '', + }); + } + } else if (position === 'right') { + setIconOutputRight(!iconOutputRight); + + // トグルがONになった場合にデフォルトアイコンを設定、OFFになった場合は削除 + if (!iconOutputRight && !attributes.scrollIconRight) { + setAttributes({ + scrollIconRight: 'fa-solid fa-caret-right', + }); + } else if (iconOutputRight) { + setAttributes({ + scrollIconRight: '', + }); + } + } + }; + + return ( + <> + handleScrollMessageToggle(!showScrollMessage)} + /> + {showScrollMessage && ( + <> + handleMessageTextChange(value)} // handleMessageTextChangeに正しく引数を渡す + /> +

+ {__('Icon', 'vk-blocks-pro') + + ' ( ' + + iconFamily + + ' )'} +

+ handleIconOutputToggle('left')} + /> + {iconOutputLeft && ( + + + handleIconChange('left', iconClass) + } + {...props} + /> + + )} + handleIconOutputToggle('right')} + /> + {iconOutputRight && ( + + + handleIconChange('right', iconClass) + } + {...props} + /> + + )} + + )} + + ); +}; + +export default ScrollMessageControls; \ No newline at end of file diff --git a/src/extensions/core/table/style.js b/src/extensions/core/table/style.js index 66d90b35f..b1c728661 100644 --- a/src/extensions/core/table/style.js +++ b/src/extensions/core/table/style.js @@ -1,3 +1,4 @@ +import { useEffect } from 'react'; import { __ } from '@wordpress/i18n'; import { addFilter } from '@wordpress/hooks'; import { @@ -7,7 +8,8 @@ import { Icon, } from '@wordpress/components'; import { createHigherOrderComponent } from '@wordpress/compose'; -import { InspectorControls } from '@wordpress/block-editor'; +import { InspectorControls, useBlockProps } from '@wordpress/block-editor'; +import ScrollHint from '@vkblocks/components/scroll-hint'; /** * Internal dependencies @@ -28,7 +30,31 @@ export const addAttribute = (settings) => { }, scrollBreakpoint: { type: 'string', - default: 'table-scrollable-mobile', // デフォルトをMobileブレイクポイントに設定 + default: 'table-scrollable-mobile', + }, + showScrollMessage: { + type: 'boolean', + default: false, + }, + scrollMessageText: { + type: 'string', + default: __('You can scroll', 'vk-blocks-pro'), + }, + scrollIconLeft: { + type: 'string', + default: 'fa-solid fa-caret-left', + }, + scrollIconRight: { + type: 'string', + default: 'fa-solid fa-caret-right', + }, + iconOutputLeft: { + type: 'boolean', + default: true, + }, + iconOutputRight: { + type: 'boolean', + default: true, }, }; } @@ -38,54 +64,138 @@ addFilter('blocks.registerBlockType', 'vk-blocks/table-style', addAttribute); export const addBlockControl = createHigherOrderComponent((BlockEdit) => { return (props) => { - const { attributes, setAttributes } = props; - const { scrollable, scrollBreakpoint, className } = attributes; + const { attributes, setAttributes, name } = props; + const { + scrollable, + scrollBreakpoint, + showScrollMessage, + scrollMessageText, + scrollIconLeft, + scrollIconRight, + iconOutputLeft, + iconOutputRight, + } = attributes; + + const blockProps = useBlockProps({ + className: scrollable ? 'is-style-vk-table-scrollable' : '', + }); - const updateScrollAttributes = (checked, value) => { - let newClassName = className || ''; + // アイコンスタイルを定義 + let iconStyle = { + width: '24px', + height: '24px', + }; - // 現在のクラス名から is-style-vk-table-scrollable を削除 - newClassName = newClassName - .replace('is-style-vk-table-scrollable', '') - .trim(); + if (scrollable) { + iconStyle = { + ...iconStyle, + color: '#fff', + background: '#1e1e1e', + }; + } - // scrollable クラスを付与または削除 - if (checked) { - newClassName += ' is-style-vk-table-scrollable'; - setAttributes({ - className: newClassName.trim(), - scrollable: checked, - scrollBreakpoint: value, - }); - } else { + // スクロール可能トグル変更のハンドル + const handleToggleChange = (checked) => { + setAttributes({ scrollable: checked }); + + if (!checked) { setAttributes({ - className: newClassName.trim(), - scrollable: checked, + showScrollMessage: false, + scrollBreakpoint: 'table-scrollable-mobile', }); } }; - const handleToggleChange = (checked) => { - updateScrollAttributes(checked, scrollBreakpoint); - }; - + // ブレークポイント選択変更のハンドル const handleSelectChange = (value) => { - setAttributes({ - scrollBreakpoint: value, - }); + setAttributes({ scrollBreakpoint: value }); }; - // アイコンのスタイル - const iconStyle = { - width: '24px', - height: '24px', - ...(scrollable && { color: '#fff', background: '#1e1e1e' }), - }; + // コンポーネントのマウントまたは更新後に属性を更新 + useEffect(() => { + const updateTableScrollAttributes = () => { + const tables = document.querySelectorAll( + '.wp-block-table.is-style-vk-table-scrollable' + ); + tables.forEach((table) => { + const breakpoint = + table.getAttribute('data-scroll-breakpoint') || + 'table-scrollable-mobile'; + table.setAttribute('data-scroll-breakpoint', breakpoint); + + // data-output-scroll-hintがない場合、自動でfalseを設定 + if (!table.hasAttribute('data-output-scroll-hint')) { + table.setAttribute('data-output-scroll-hint', 'false'); + } + + table.setAttribute( + 'data-output-scroll-hint', + showScrollMessage ? 'true' : 'false' + ); + + // iconOutputLeftの制御 + table.setAttribute( + 'data-icon-output-left', + iconOutputLeft ? 'true' : 'false' + ); + + // iconOutputRightの制御 + table.setAttribute( + 'data-icon-output-right', + iconOutputRight ? 'true' : 'false' + ); + }); + }; + + updateTableScrollAttributes(); + }, [ + scrollable, + scrollBreakpoint, + showScrollMessage, + scrollIconLeft, + scrollIconRight, + iconOutputLeft, + iconOutputRight, + ]); + + if (isValidBlockType(name) && props.isSelected) { + const blockEditContent = ; - if (isValidBlockType(props.name) && props.isSelected) { return ( <> - +
+ {scrollable && showScrollMessage && ( +
+ {iconOutputLeft && ( + + )} + {scrollMessageText} + {iconOutputRight && ( + + )} +
+ )} + {blockEditContent} +
{ ]} onChange={handleSelectChange} /> -

- {__( - 'Table cells are no longer fixed width when horizontal scroll breakpoint is reached.', - 'vk-blocks-pro' - )} -

+ )}
@@ -152,21 +263,41 @@ export const addBlockControl = createHigherOrderComponent((BlockEdit) => { }, 'addMyCustomBlockControls'); addFilter('editor.BlockEdit', 'vk-blocks/table-style', addBlockControl); +// 保存時に追加のプロパティを設定 const addExtraProps = (saveElementProps, blockType, attributes) => { if (isValidBlockType(blockType.name)) { - if (attributes.scrollable) { - saveElementProps.className = saveElementProps.className - ? saveElementProps.className - : ''; - saveElementProps.className += ' is-style-vk-table-scrollable'; - saveElementProps['data-scroll-breakpoint'] = - attributes.scrollBreakpoint; + saveElementProps.className = `${saveElementProps.className || ''} ${ + attributes.scrollable ? 'is-style-vk-table-scrollable' : '' + }`.trim(); + + saveElementProps['data-scroll-breakpoint'] = + attributes.scrollBreakpoint; + + // 'showScrollMessage' が true の場合のみ 'data-output-scroll-hint' を追加 + if (attributes.showScrollMessage) { + saveElementProps['data-output-scroll-hint'] = 'true'; } else { - saveElementProps.className = saveElementProps.className - .replace('is-style-vk-table-scrollable', '') - .trim(); - delete saveElementProps['data-scroll-breakpoint']; + delete saveElementProps['data-output-scroll-hint']; } + + // iconOutputLeft が true の場合のみ属性を追加 + if (attributes.iconOutputLeft && attributes.showScrollMessage) { + saveElementProps['data-icon-output-left'] = 'true'; + } else { + delete saveElementProps['data-icon-output-left']; + } + + // iconOutputRight が true の場合のみ属性を追加 + if (attributes.iconOutputRight && attributes.showScrollMessage) { + saveElementProps['data-icon-output-right'] = 'true'; + } else { + delete saveElementProps['data-icon-output-right']; + } + } else { + delete saveElementProps['data-scroll-breakpoint']; + delete saveElementProps['data-output-scroll-hint']; + delete saveElementProps['data-icon-output-left']; + delete saveElementProps['data-icon-output-right']; } return saveElementProps; @@ -175,47 +306,4 @@ addFilter( 'blocks.getSaveContent.extraProps', 'vk-blocks/table-style', addExtraProps -); - -// 横スクロールを処理する関数を定義 -const updateTableScrollAttributes = () => { - const tables = document.querySelectorAll( - '.wp-block-table.is-style-vk-table-scrollable' - ); - tables.forEach((table) => { - const breakpoint = - table.getAttribute('data-scroll-breakpoint') || - 'table-scrollable-mobile'; - table.setAttribute('data-scroll-breakpoint', breakpoint); - const minWidth = parseInt(breakpoint.replace(/\D/g, ''), 10); - - const handleResize = () => { - const currentWidth = window.innerWidth; - if (currentWidth <= minWidth) { - table.style.overflowX = 'auto'; - table.style.webkitOverflowScrolling = 'touch'; - - const innerTable = table.querySelector('table'); - if (innerTable) { - innerTable.style.whiteSpace = 'nowrap'; - } - } else { - table.style.overflowX = ''; - table.style.webkitOverflowScrolling = ''; - - const innerTable = table.querySelector('table'); - if (innerTable) { - innerTable.style.whiteSpace = ''; - } - } - }; - - // 初回の呼び出し - handleResize(); - - // リサイズイベントの設定 - window.addEventListener('resize', handleResize); - }); -}; - -document.addEventListener('DOMContentLoaded', updateTableScrollAttributes); +); \ No newline at end of file diff --git a/src/extensions/core/table/style.scss b/src/extensions/core/table/style.scss index 401455e5c..04e6b40b9 100644 --- a/src/extensions/core/table/style.scss +++ b/src/extensions/core/table/style.scss @@ -37,7 +37,7 @@ } -/* 編集画面 +/* フロントエンド /*-------------------------------------------*/ .wp-block-table { thead th, tfoot td { diff --git a/src/utils/common.scss b/src/utils/common.scss index b6c45ebc2..a4524c23d 100644 --- a/src/utils/common.scss +++ b/src/utils/common.scss @@ -698,3 +698,65 @@ $xxl-min: 1400px; z-index: 10; } } + +/*-------------------------------------------*/ +/* スクロールヒント +/*-------------------------------------------*/ +@mixin scrollable-table-scroll-hint { + display: block; + text-align: right; + font-size: .85rem; + &:has(i:last-of-type ) { + margin-right: 3px; + } + i { + margin: 0; + &:first-of-type { + animation: shake-left 1.5s ease-in-out infinite; + } + &:last-of-type { + animation: shake-right 1.5s ease-in-out infinite; + } + } + /* 横揺れアニメーションの定義 */ + @keyframes shake-left { + 0% { transform: translateX(0); } + 50% { transform: translateX(-3px); } + 100% { transform: translateX(0); } + } + @keyframes shake-right { + 0% { transform: translateX(0); } + 50% { transform: translateX(3px); } + 100% { transform: translateX(0); } + } +} + +.vk-scroll-hint { + display: none; + + &[data-scroll-breakpoint="table-scrollable-mobile"] { + @media (max-width: 575.98px) { + @include scrollable-table-scroll-hint; + } + } + + &[data-scroll-breakpoint="table-scrollable-tablet"] { + @media (max-width: 991.98px) { + @include scrollable-table-scroll-hint; + } + } + + &[data-scroll-breakpoint="table-scrollable-pc"] { + @include scrollable-table-scroll-hint; + } + + + * { + margin-top: 0; + } +} + +.editor-styles-wrapper { + .vk-scroll-hint { + @include scrollable-table-scroll-hint; + } +} \ No newline at end of file From 933cfdbf2140aa0c8577c30a36fa04cab1318a90 Mon Sep 17 00:00:00 2001 From: drill-lancer Date: Wed, 25 Sep 2024 10:14:06 +0900 Subject: [PATCH 2/4] lint --- src/components/scroll-hint/index.js | 2 +- src/extensions/core/table/style.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/scroll-hint/index.js b/src/components/scroll-hint/index.js index 728234a0a..921680a1b 100644 --- a/src/components/scroll-hint/index.js +++ b/src/components/scroll-hint/index.js @@ -155,4 +155,4 @@ const ScrollMessageControls = ({ ); }; -export default ScrollMessageControls; \ No newline at end of file +export default ScrollMessageControls; diff --git a/src/extensions/core/table/style.js b/src/extensions/core/table/style.js index b1c728661..727a6580f 100644 --- a/src/extensions/core/table/style.js +++ b/src/extensions/core/table/style.js @@ -306,4 +306,4 @@ addFilter( 'blocks.getSaveContent.extraProps', 'vk-blocks/table-style', addExtraProps -); \ No newline at end of file +); From 0919b4264cba0c0070191de79774babe8d1bafd7 Mon Sep 17 00:00:00 2001 From: drill-lancer Date: Wed, 25 Sep 2024 10:14:36 +0900 Subject: [PATCH 3/4] lint --- inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php b/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php index 8cecd0f7d..d30ec9280 100644 --- a/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php +++ b/inc/vk-blocks/view/class-vk-blocks-scrollhintrenderer.php @@ -108,4 +108,4 @@ public static function generate_scroll_hint( $block ) { $right_icon_html ); } -} \ No newline at end of file +} From b42375d18d34b15931fff2a60f664bc76bbdfc1d Mon Sep 17 00:00:00 2001 From: kurudrive Date: Wed, 25 Sep 2024 11:09:49 +0900 Subject: [PATCH 4/4] [ Change version ] 1.85.0.1 --- vk-blocks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vk-blocks.php b/vk-blocks.php index 83c33df46..0ef2f7d0f 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,7 +3,7 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Block Editor. - * Version: 1.85.0.0 + * Version: 1.85.0.1 * Stable tag: 1.84.0.1 * Requires at least: 6.3 * Author: Vektor,Inc.