VK All in One Expansion Unit - Version 9.11.0.0

Version Description

[ Add function ] Speeding setting ( load point controll of css file and css customize ) [ Specification change ][ vk blocks ] YouTube display width : 100%

Download this release

Release Info

Developer kurudrive
Plugin Icon 128x128 VK All in One Expansion Unit
Version 9.11.0.0
Comparing to
See all releases

Code changes from version 9.10.1.0 to 9.11.0.0

admin/customizer.php CHANGED
@@ -92,3 +92,38 @@ function veu_customize_register_add_control() {
92
  } // class VkExUnit_Custom_Html extends WP_Customize_Control
93
 
94
  } // function veu_customize_register_add_control(){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  } // class VkExUnit_Custom_Html extends WP_Customize_Control
93
 
94
  } // function veu_customize_register_add_control(){
95
+
96
+
97
+ add_action( 'customize_register', 'veu_customize_register_pagespeed' );
98
+ function veu_customize_register_pagespeed( $wp_customize ) {
99
+
100
+ /*-------------------------------------------*/
101
+ /* Page speedind setting
102
+ /*-------------------------------------------*/
103
+ $wp_customize->add_section(
104
+ 'veu_speeding_setting', array(
105
+ 'title' => __( 'Page Speedind Setting', 'vk-all-in-one-expansion-unit' ),
106
+ 'priority' => 1,
107
+ 'panel' => 'veu_setting',
108
+ )
109
+ );
110
+
111
+ $wp_customize->add_setting(
112
+ 'vkExUnit_pagespeeding[common]', array(
113
+ 'default' => false,
114
+ 'type' => 'option',
115
+ 'capability' => 'edit_theme_options',
116
+ 'sanitize_callback' => 'veu_sanitize_boolean',
117
+ )
118
+ );
119
+ $wp_customize->add_control(
120
+ 'vkExUnit_pagespeeding[common]', array(
121
+ 'label' => __( 'Enable speeding up', 'vk-all-in-one-expansion-unit' ),
122
+ 'section' => 'veu_speeding_setting',
123
+ 'settings' => 'vkExUnit_pagespeeding[common]',
124
+ 'type' => 'checkbox',
125
+ 'description' => __( 'If you enable this setting that ExUnit\'s css file and css customize will be loaded from footer.', 'vk-all-in-one-expansion-unit' ),
126
+ )
127
+ );
128
+
129
+ }
inc/css-customize/css-customize-single.php CHANGED
@@ -3,8 +3,12 @@
3
  Custom CSS
4
  /* ------------------------------------------- */
5
 
6
- // </head>タグの直上に出力させたいので第三引数に 50 を設定
7
- add_action( 'wp_head', 'veu_insert_custom_css', 201 );
 
 
 
 
8
 
9
  /*
10
  入力された CSS をソースに出力
@@ -18,13 +22,15 @@ function veu_insert_custom_css() {
18
  while ( have_posts() ) :
19
  the_post();
20
  global $post;
21
- echo '<style type="text/css">' . veu_get_the_custom_css_single( $post ) . '</style>';
 
 
 
22
  endwhile;
23
  endif;
24
  // ページ上の別の場所で同じクエリを再利用するために、ループの投稿情報を巻き戻し、前回と同じ順序で先頭の投稿を取得できるように
25
  rewind_posts();
26
  }
27
-
28
  } // function veu_insert_custom_css() {
29
 
30
  function veu_get_the_custom_css_single( $post ) {
3
  Custom CSS
4
  /* ------------------------------------------- */
5
 
6
+ function veu_css_customize_single_load(){
7
+ $hook_point = apply_filters( 'veu_enqueue_point_css_customize_single', 'wp_head' );
8
+ add_action( $hook_point, 'veu_insert_custom_css', 201 );
9
+ }
10
+
11
+ add_action( 'after_setup_theme', 'veu_css_customize_single_load' );
12
 
13
  /*
14
  入力された CSS をソースに出力
22
  while ( have_posts() ) :
23
  the_post();
24
  global $post;
25
+ $css = veu_get_the_custom_css_single( $post );
26
+ if ( $css ){
27
+ echo '<style type="text/css">/* '. esc_html( veu_get_short_name() ).' CSS Customize Single */' . $css . '</style>';
28
+ }
29
  endwhile;
30
  endif;
31
  // ページ上の別の場所で同じクエリを再利用するために、ループの投稿情報を巻き戻し、前回と同じ順序で先頭の投稿を取得できるように
32
  rewind_posts();
33
  }
 
34
  } // function veu_insert_custom_css() {
35
 
36
  function veu_get_the_custom_css_single( $post ) {
inc/css-customize/css-customize.php CHANGED
@@ -7,11 +7,22 @@ class veu_css_customize {
7
 
8
  public function __construct() {
9
  $this->set_hook();
 
 
 
 
 
 
 
 
 
 
 
10
  }
11
 
12
  public function set_hook() {
13
  add_action( 'admin_footer', array( $this, 'css_customize_page_js_and_css' ) );
14
- add_action( 'wp_head', array( $this, 'css_customize_push_css' ), 200 );
15
 
16
  // 編集画面への反映
17
  // add_filter( 'tiny_mce_before_init', array( $this, 'css_customize_push_editor_css' ) );
7
 
8
  public function __construct() {
9
  $this->set_hook();
10
+ /**
11
+ * Reason of Using through the after_setup_theme is
12
+ * to be able to change the action hook point of css load from theme..
13
+ */
14
+ add_action( 'after_setup_theme', array( get_called_class(), 'load_css_action' ) );
15
+ }
16
+
17
+ public static function load_css_action() {
18
+ $hook_point = apply_filters( 'veu_enqueue_point_css_customize_common', 'wp_head' );
19
+ // get_called_class()じゃないと外しにくい
20
+ add_action( $hook_point, array( get_called_class(), 'css_customize_push_css' ), 200 );
21
  }
22
 
23
  public function set_hook() {
24
  add_action( 'admin_footer', array( $this, 'css_customize_page_js_and_css' ) );
25
+
26
 
27
  // 編集画面への反映
28
  // add_filter( 'tiny_mce_before_init', array( $this, 'css_customize_push_editor_css' ) );
inc/font-awesome/package/class-vk-font-awesome-versions.php CHANGED
@@ -10,16 +10,28 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
10
  class Vk_Font_Awesome_Versions {
11
 
12
  private static $version_default = '5_WebFonts_CSS';
 
 
 
 
 
 
 
 
 
13
 
14
- static function init() {
15
  add_action( 'customize_register', array( __CLASS__, 'customize_register' ) );
16
- add_action( 'wp_footer', array( __CLASS__, 'load_font_awesome' ), 3 );
17
  add_action( 'admin_init', array( __CLASS__, 'load_admin_font_awesome' ) );
18
  add_action( 'enqueue_block_editor_assets', array( __CLASS__, 'load_gutenberg_font_awesome' ) );
19
  add_action( 'wp_head', array( __CLASS__, 'dynamic_css' ), 3 );
20
  add_filter( 'body_class', array( __CLASS__, 'add_body_class_fa_version' ) );
21
  }
22
 
 
 
 
 
 
23
  static function versions() {
24
  global $font_awesome_directory_uri;
25
  $versions = array(
@@ -95,11 +107,11 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
95
  static function load_font_awesome() {
96
  $current = self::current_info();
97
  if ( $current['type'] === 'svg-with-js' ) {
98
- wp_enqueue_script( 'font-awesome-js', $current['url_js'], array(), $current['version'] );
99
  // [ Danger ] This script now causes important errors
100
  // wp_add_inline_script( 'font-awesome-js', 'FontAwesomeConfig = { searchPseudoElements: true };', 'before' );
101
  } else {
102
- wp_enqueue_style( 'font-awesome', $current['url_css'], array(), $current['version'] );
103
  }
104
  }
105
 
@@ -210,5 +222,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
210
  } // static function customize_register( $wp_customize ) {
211
 
212
  } // Vk_Font_Awesome_Versions
213
- Vk_Font_Awesome_Versions::init();
 
 
214
  } // if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
10
  class Vk_Font_Awesome_Versions {
11
 
12
  private static $version_default = '5_WebFonts_CSS';
13
+ // public static $hook_point = apply_filters( 'vkfa_enqueue_point', 'wp_enqueue_scripts' );
14
+
15
+ function __construct() {
16
+
17
+ /**
18
+ * Reason of Using through the after_setup_theme is
19
+ * to be able to change the action hook point of css load from theme..
20
+ */
21
+ add_action( 'after_setup_theme', array( __CLASS__, 'load_css_action' ) );
22
 
 
23
  add_action( 'customize_register', array( __CLASS__, 'customize_register' ) );
 
24
  add_action( 'admin_init', array( __CLASS__, 'load_admin_font_awesome' ) );
25
  add_action( 'enqueue_block_editor_assets', array( __CLASS__, 'load_gutenberg_font_awesome' ) );
26
  add_action( 'wp_head', array( __CLASS__, 'dynamic_css' ), 3 );
27
  add_filter( 'body_class', array( __CLASS__, 'add_body_class_fa_version' ) );
28
  }
29
 
30
+ public static function load_css_action() {
31
+ $hook_point = apply_filters( 'vkfa_enqueue_point', 'wp_enqueue_scripts' );
32
+ add_action( $hook_point, array( __CLASS__, 'load_font_awesome' ) );
33
+ }
34
+
35
  static function versions() {
36
  global $font_awesome_directory_uri;
37
  $versions = array(
107
  static function load_font_awesome() {
108
  $current = self::current_info();
109
  if ( $current['type'] === 'svg-with-js' ) {
110
+ wp_enqueue_script( 'vk-font-awesome-js', $current['url_js'], array(), $current['version'] );
111
  // [ Danger ] This script now causes important errors
112
  // wp_add_inline_script( 'font-awesome-js', 'FontAwesomeConfig = { searchPseudoElements: true };', 'before' );
113
  } else {
114
+ wp_enqueue_style( 'vk-font-awesome', $current['url_css'], array(), $current['version'] );
115
  }
116
  }
117
 
222
  } // static function customize_register( $wp_customize ) {
223
 
224
  } // Vk_Font_Awesome_Versions
225
+
226
+ $vk_font_awesome_versions = new Vk_Font_Awesome_Versions;
227
+
228
  } // if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
initialize.php CHANGED
@@ -20,7 +20,11 @@ veu_package_include(); // package_manager.php
20
  /*
21
  Add vkExUnit css
22
  /*-------------------------------------------*/
23
- add_action( 'wp_enqueue_scripts', 'veu_print_css' );
 
 
 
 
24
  function veu_print_css() {
25
  global $vkExUnit_version;
26
  $options = veu_get_common_options();
@@ -57,3 +61,35 @@ function veu_install_function() {
57
  add_option( 'vkExUnit_common_options', veu_get_common_options_default() );
58
  }
59
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  /*
21
  Add vkExUnit css
22
  /*-------------------------------------------*/
23
+ add_action( 'after_setup_theme', 'veu_load_css_action' );
24
+ function veu_load_css_action(){
25
+ $hook_point = apply_filters( 'veu_enqueue_point_common_css', 'wp_enqueue_scripts' );
26
+ add_action( $hook_point, 'veu_print_css' );
27
+ }
28
  function veu_print_css() {
29
  global $vkExUnit_version;
30
  $options = veu_get_common_options();
61
  add_option( 'vkExUnit_common_options', veu_get_common_options_default() );
62
  }
63
  }
64
+
65
+
66
+ add_action( 'after_setup_theme', 'veu_change_enqueue_point_run_filter', 5 );
67
+ function veu_change_enqueue_point_run_filter() {
68
+ $default = array(
69
+ 'common' => false,
70
+ );
71
+ $option = get_option('vkExUnit_pagespeeding',$default);
72
+ $option = wp_parse_args( $option, $default );
73
+ if ( $option['common'] ){
74
+
75
+ // font awesome
76
+ add_filter( 'vkfa_enqueue_point', 'veu_change_enqueue_point_to_footer' );
77
+
78
+ // vk blocks css
79
+ add_filter( 'vkblocks_enqueue_point', 'veu_change_enqueue_point_to_footer' );
80
+
81
+ // common css
82
+ add_filter( 'veu_enqueue_point_common_css', 'veu_change_enqueue_point_to_footer' );
83
+
84
+ // css customize
85
+ add_filter( 'veu_enqueue_point_css_customize_common', 'veu_change_enqueue_point_to_footer' );
86
+ add_filter( 'veu_enqueue_point_css_customize_single', 'veu_change_enqueue_point_to_footer' );
87
+
88
+ }
89
+
90
+ }
91
+
92
+ function veu_change_enqueue_point_to_footer( $enqueue_point ) {
93
+ $enqueue_point = 'wp_footer';
94
+ return $enqueue_point;
95
+ }
languages/vk-all-in-one-expansion-unit-ja.mo CHANGED
Binary file
languages/vk-all-in-one-expansion-unit-ja.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2019-11-30 00:45+0900\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
7
  "Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
@@ -9,7 +9,7 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.2.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_x;_ex;_ex:1,2c;_x:1,2c;_n:1,2;esc_attr__\n"
@@ -129,6 +129,22 @@ msgstr "このページをHTMLサイトマップに表示しない。"
129
  msgid "Settings"
130
  msgstr "設定"
131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  #: admin/disable-guide.php:17 dist/admin/disable-guide.php:17
133
  msgid "Edit Guide"
134
  msgstr "編集ガイド"
@@ -756,9 +772,9 @@ msgstr "カスタムCSS"
756
  #: dist/inc/css-customize/css-customize.php:57
757
  #: dist/inc/css-customize/css-customize.php:58
758
  #: inc/css-customize/css-customize-edit.php:2
759
- #: inc/css-customize/css-customize.php:43
760
- #: inc/css-customize/css-customize.php:57
761
- #: inc/css-customize/css-customize.php:58
762
  msgid "CSS Customize"
763
  msgstr "CSSカスタマイズ"
764
 
@@ -773,41 +789,41 @@ msgid "Save CSS"
773
  msgstr "CSSを保存する"
774
 
775
  #: dist/inc/css-customize/css-customize.php:113
776
- #: inc/css-customize/css-customize.php:113
777
  msgid "Your custom CSS was saved."
778
  msgstr "CSSが保存されました"
779
 
780
  #: dist/inc/css-customize/css-customize.php:116
781
- #: inc/css-customize/css-customize.php:116
782
  msgid "Error occured. Please try again."
783
  msgstr "何らかのエラー!! また試してみてください"
784
 
785
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:27
786
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:42
787
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:27
788
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:42
789
  msgid "Not recommended"
790
  msgstr "非推奨"
791
 
792
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:74
793
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:76
794
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:74
795
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:76
796
  msgid "Ex ) "
797
  msgstr "例 ) "
798
 
799
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:174
800
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:174
801
  msgid "Font Awesome"
802
  msgstr "Font Awesome"
803
 
804
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:195
805
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:195
806
  msgid "Font Awesome Version"
807
  msgstr "Font Awesome Version"
808
 
809
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:198
810
- #: inc/font-awesome/package/class-vk-font-awesome-versions.php:198
811
  msgid "4.7 will be abolished in the near future."
812
  msgstr "4.7は将来的に廃止します。"
813
 
@@ -1164,16 +1180,16 @@ msgstr "3PR エリア設定"
1164
  #: dist/inc/other-widget/widget-3pr-area.php:56
1165
  #: dist/inc/other-widget/widget-new-posts.php:279
1166
  #: dist/inc/other-widget/widget-page.php:126
1167
- #: dist/inc/other-widget/widget-pr-blocks.php:111
1168
  #: dist/inc/other-widget/widget-profile.php:55
1169
- #: dist/inc/related_posts/related_posts.php:261
1170
  #: dist/inc/sns/widget-fb-page-plugin.php:79 dist/inc/sns/widget-twitter.php:84
1171
  #: inc/other-widget/widget-3pr-area.php:56
1172
  #: inc/other-widget/widget-new-posts.php:279
1173
  #: inc/other-widget/widget-page.php:126
1174
  #: inc/other-widget/widget-pr-blocks.php:114
1175
  #: inc/other-widget/widget-profile.php:55
1176
- #: inc/related_posts/related_posts.php:261 inc/sns/widget-fb-page-plugin.php:79
1177
  #: inc/sns/widget-twitter.php:84
1178
  msgid "Title:"
1179
  msgstr "タイトル"
@@ -1186,7 +1202,7 @@ msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
1186
  #: dist/inc/other-widget/widget-3pr-area.php:72
1187
  #: dist/inc/other-widget/widget-3pr-area.php:90
1188
  #: dist/inc/other-widget/widget-new-posts.php:326
1189
- #: dist/inc/other-widget/widget-pr-blocks.php:174
1190
  #: dist/inc/other-widget/widget-profile.php:70
1191
  #: inc/other-widget/widget-3pr-area.php:72
1192
  #: inc/other-widget/widget-3pr-area.php:90
@@ -1199,7 +1215,7 @@ msgstr "画像を選択"
1199
  #: dist/inc/other-widget/widget-3pr-area.php:73
1200
  #: dist/inc/other-widget/widget-3pr-area.php:91
1201
  #: dist/inc/other-widget/widget-new-posts.php:327
1202
- #: dist/inc/other-widget/widget-pr-blocks.php:175
1203
  #: dist/inc/other-widget/widget-profile.php:71
1204
  #: inc/other-widget/widget-3pr-area.php:73
1205
  #: inc/other-widget/widget-3pr-area.php:91
@@ -1217,14 +1233,14 @@ msgstr ""
1217
  "690px 以上推奨。空欄も可)"
1218
 
1219
  #: dist/inc/other-widget/widget-3pr-area.php:102
1220
- #: dist/inc/other-widget/widget-pr-blocks.php:115
1221
  #: inc/other-widget/widget-3pr-area.php:102
1222
  #: inc/other-widget/widget-pr-blocks.php:118
1223
  msgid "Summary Text:"
1224
  msgstr "概要となるテキスト"
1225
 
1226
  #: dist/inc/other-widget/widget-3pr-area.php:108
1227
- #: dist/inc/other-widget/widget-pr-blocks.php:120
1228
  #: inc/other-widget/widget-3pr-area.php:108
1229
  #: inc/other-widget/widget-pr-blocks.php:123
1230
  msgid "Link URL:"
@@ -1232,7 +1248,7 @@ msgstr "リンク先ページのURL"
1232
 
1233
  #: dist/inc/other-widget/widget-3pr-area.php:116
1234
  #: dist/inc/other-widget/widget-banner.php:106
1235
- #: dist/inc/other-widget/widget-pr-blocks.php:124
1236
  #: inc/other-widget/widget-3pr-area.php:116
1237
  #: inc/other-widget/widget-banner.php:106
1238
  #: inc/other-widget/widget-pr-blocks.php:127
@@ -1474,9 +1490,9 @@ msgid "Modified date"
1474
  msgstr "最終更新日"
1475
 
1476
  #: dist/inc/other-widget/widget-new-posts.php:355
1477
- #: dist/inc/related_posts/related_posts.php:281
1478
  #: inc/other-widget/widget-new-posts.php:355
1479
- #: inc/related_posts/related_posts.php:281
1480
  msgid "Display count"
1481
  msgstr "表示する記事数"
1482
 
@@ -1575,22 +1591,30 @@ msgstr "採用情報"
1575
  msgid "Contact"
1576
  msgstr "Contact"
1577
 
1578
- #: dist/inc/other-widget/widget-pr-blocks.php:83
 
 
 
 
 
 
 
 
1579
  #: inc/other-widget/widget-pr-blocks.php:85
1580
  msgid "The choice of the number of columns:"
1581
  msgstr "列の数"
1582
 
1583
- #: dist/inc/other-widget/widget-pr-blocks.php:90
1584
  #: inc/other-widget/widget-pr-blocks.php:92
1585
  msgid "3column"
1586
  msgstr "3列"
1587
 
1588
- #: dist/inc/other-widget/widget-pr-blocks.php:96
1589
  #: inc/other-widget/widget-pr-blocks.php:97
1590
  msgid "4column"
1591
  msgstr "4列"
1592
 
1593
- #: dist/inc/other-widget/widget-pr-blocks.php:98
1594
  #: inc/other-widget/widget-pr-blocks.php:100
1595
  msgid ""
1596
  "If you change the number of columns, click to \"Save\" botton and exit the "
@@ -1600,45 +1624,45 @@ msgstr ""
1600
  "列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了しま"
1601
  "す。それから編集画面を再度開くと列の入力フォームが増減します。"
1602
 
1603
- #: dist/inc/other-widget/widget-pr-blocks.php:107
1604
- #: dist/inc/other-widget/widget-pr-blocks.php:277
1605
  #: inc/other-widget/widget-pr-blocks.php:110
1606
  #: inc/other-widget/widget-pr-blocks.php:282
1607
  msgid "PR Block"
1608
  msgstr "PRブロック"
1609
 
1610
- #: dist/inc/other-widget/widget-pr-blocks.php:129
1611
  #: inc/other-widget/widget-pr-blocks.php:132
1612
  msgid "Icon"
1613
  msgstr "アイコン"
1614
 
1615
- #: dist/inc/other-widget/widget-pr-blocks.php:132
1616
  #: inc/other-widget/widget-pr-blocks.php:135
1617
  msgid "Class name of the icon font you want to use:"
1618
  msgstr "使用したいアイコンフォントのクラス名:"
1619
 
1620
- #: dist/inc/other-widget/widget-pr-blocks.php:143
1621
  #: dist/inc/other-widget/widget-profile.php:157
1622
  #: inc/other-widget/widget-pr-blocks.php:146
1623
  #: inc/other-widget/widget-profile.php:157
1624
  msgid "Icon color:"
1625
  msgstr "アイコンの色:"
1626
 
1627
- #: dist/inc/other-widget/widget-pr-blocks.php:147
1628
  #: dist/inc/other-widget/widget-profile.php:142
1629
  #: inc/other-widget/widget-pr-blocks.php:150
1630
  #: inc/other-widget/widget-profile.php:142
1631
  msgid "Icon Background:"
1632
  msgstr "アイコン背景:"
1633
 
1634
- #: dist/inc/other-widget/widget-pr-blocks.php:151
1635
  #: dist/inc/other-widget/widget-profile.php:148
1636
  #: inc/other-widget/widget-pr-blocks.php:154
1637
  #: inc/other-widget/widget-profile.php:148
1638
  msgid "Solid color"
1639
  msgstr "塗りつぶし"
1640
 
1641
- #: dist/inc/other-widget/widget-pr-blocks.php:155
1642
  #: dist/inc/other-widget/widget-profile.php:151
1643
  #: dist/inc/sns/sns_customizer.php:318
1644
  #: inc/other-widget/widget-pr-blocks.php:158
@@ -1646,12 +1670,12 @@ msgstr "塗りつぶし"
1646
  msgid "No background"
1647
  msgstr "背景なし"
1648
 
1649
- #: dist/inc/other-widget/widget-pr-blocks.php:161
1650
  #: inc/other-widget/widget-pr-blocks.php:164
1651
  msgid "PR Image"
1652
  msgstr "画像"
1653
 
1654
- #: dist/inc/other-widget/widget-pr-blocks.php:162
1655
  #: inc/other-widget/widget-pr-blocks.php:165
1656
  msgid "When you have an image. Image is displayed with priority"
1657
  msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
@@ -1958,8 +1982,8 @@ msgstr ""
1958
  msgid "Related posts"
1959
  msgstr "関連記事を表示"
1960
 
1961
- #: dist/inc/related_posts/related_posts.php:244
1962
- #: inc/related_posts/related_posts.php:244
1963
  msgid "Related Settings"
1964
  msgstr "関連記事設定"
1965
 
@@ -2456,51 +2480,60 @@ msgstr "%s の記事"
2456
  msgid "Page of %s"
2457
  msgstr "%sページ目"
2458
 
2459
- #: dist/inc/vk-blocks/package/view/latest-posts.php:17
2460
- #: dist/inc/vk-blocks/package/view/post-list.php:17
2461
- #: inc/vk-blocks/package/view/latest-posts.php:17
2462
- #: inc/vk-blocks/package/view/post-list.php:17
2463
- msgid "No Post is selected"
2464
- msgstr ""
2465
-
2466
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:67
 
2467
  #: inc/vk-blocks/package/vk-blocks-bootstrap.php:67
2468
  msgid "VK Blocks Bootstrap Setting"
2469
  msgstr "VK Blocks Bootstrap Setting"
2470
 
 
2471
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:84
 
2472
  #: inc/vk-blocks/package/vk-blocks-bootstrap.php:84
2473
  msgid "Loading Bootstrap4"
2474
  msgstr ""
2475
 
 
2476
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:85
 
2477
  #: inc/vk-blocks/package/vk-blocks-bootstrap.php:85
2478
  msgid ""
2479
  "Check here to load Bootstrap4. If your theme or plugins loading Bootstrap4, "
2480
  "uncheck here."
2481
  msgstr ""
2482
 
 
2483
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:101
2484
  #: dist/veu-packages.php:81 dist/veu-packages.php:121 dist/veu-packages.php:139
2485
  #: dist/veu-packages.php:169 dist/veu-packages.php:187
2486
  #: dist/veu-packages.php:228 dist/veu-packages.php:263
2487
  #: dist/veu-packages.php:286 dist/veu-packages.php:354
2488
- #: dist/veu-packages.php:449 inc/vk-blocks/package/vk-blocks-bootstrap.php:101
2489
- #: veu-packages.php:81 veu-packages.php:121 veu-packages.php:139
2490
- #: veu-packages.php:169 veu-packages.php:187 veu-packages.php:228
2491
- #: veu-packages.php:263 veu-packages.php:286 veu-packages.php:354
2492
- #: veu-packages.php:449
2493
  msgid "Setting"
2494
  msgstr "設定"
2495
 
2496
- #: dist/inc/vk-blocks/package/vk-blocks-functions.php:94
2497
- #: inc/vk-blocks/package/vk-blocks-functions.php:94
2498
- msgid "Blocks(Beta)"
 
 
2499
  msgstr ""
2500
 
2501
- #: dist/inc/vk-blocks/package/vk-blocks-functions.php:99
2502
- #: inc/vk-blocks/package/vk-blocks-functions.php:99
2503
- msgid "Blocks Layout(Beta)"
 
 
 
 
 
 
 
2504
  msgstr ""
2505
 
2506
  #: dist/inc/wp-title.php:12 dist/inc/wp-title.php:85 dist/inc/wp-title.php:89
@@ -2580,8 +2613,10 @@ msgstr ""
2580
  "さい。"
2581
 
2582
  #: dist/veu-packages.php:66 veu-packages.php:66
2583
- msgid "VK Blocks ( Beta )"
2584
- msgstr "VK Blocks ( Beta )"
 
 
2585
 
2586
  #: dist/veu-packages.php:67 veu-packages.php:67
2587
  msgid "Extends Gutenberg's blocks."
@@ -2887,26 +2922,22 @@ msgstr ""
2887
  msgid "The current PHP version(%s) is too old, so VK ExUnit will not work."
2888
  msgstr "使用中のPHPのバージョン(%s) が古すぎるので VK ExUnit は動作しません。"
2889
 
2890
- #: dist/vkExUnit.php:86 vkExUnit.php:86
2891
  msgid "VK ExUnit supports PHP5.6 or later."
2892
  msgstr "VKExUnit がサポートしているPHPのバージョンは5.6以降です"
2893
 
2894
- #: dist/vkExUnit.php:102 vkExUnit.php:102
2895
  #, php-format
2896
  msgid "Current PHP Version(%s) is old."
2897
  msgstr "使用中のPHPのバージョン(%s) が古いです。"
2898
 
2899
- #: dist/vkExUnit.php:103 vkExUnit.php:103
2900
  #, php-format
2901
  msgid "%s supports PHP5.6 or later."
2902
  msgstr "%s はPHP5.6以降をサポートしています。"
2903
 
2904
- #: inc/other-widget/widget-pr-blocks.php:82
2905
- msgid ""
2906
- "If you want to change the number of columns, please change from Appearance -"
2907
- "> Widgets screen."
2908
- msgstr ""
2909
- "カラム数を変更したい場合は「外観 > ウィジェット」画面より設定してください。"
2910
 
2911
  #~ msgid "Exclude page Settings"
2912
  #~ msgstr "除外ページ設定"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2020-02-07 15:59+0900\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
7
  "Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_x;_ex;_ex:1,2c;_x:1,2c;_n:1,2;esc_attr__\n"
129
  msgid "Settings"
130
  msgstr "設定"
131
 
132
+ #: admin/customizer.php:105
133
+ msgid "Page Speedind Setting"
134
+ msgstr "高速化設定"
135
+
136
+ #: admin/customizer.php:121
137
+ msgid "Enable speeding up"
138
+ msgstr "高速化を有効にする"
139
+
140
+ #: admin/customizer.php:125
141
+ msgid ""
142
+ "If you enable this setting that ExUnit's css file and css customize will be "
143
+ "loaded from footer."
144
+ msgstr ""
145
+ "この項目を有効にするとExUnitのCSSファイル及びCSSカスタマイズがヘッダーではな"
146
+ "くフッターから読み込まれます。"
147
+
148
  #: admin/disable-guide.php:17 dist/admin/disable-guide.php:17
149
  msgid "Edit Guide"
150
  msgstr "編集ガイド"
772
  #: dist/inc/css-customize/css-customize.php:57
773
  #: dist/inc/css-customize/css-customize.php:58
774
  #: inc/css-customize/css-customize-edit.php:2
775
+ #: inc/css-customize/css-customize.php:54
776
+ #: inc/css-customize/css-customize.php:68
777
+ #: inc/css-customize/css-customize.php:69
778
  msgid "CSS Customize"
779
  msgstr "CSSカスタマイズ"
780
 
789
  msgstr "CSSを保存する"
790
 
791
  #: dist/inc/css-customize/css-customize.php:113
792
+ #: inc/css-customize/css-customize.php:124
793
  msgid "Your custom CSS was saved."
794
  msgstr "CSSが保存されました"
795
 
796
  #: dist/inc/css-customize/css-customize.php:116
797
+ #: inc/css-customize/css-customize.php:127
798
  msgid "Error occured. Please try again."
799
  msgstr "何らかのエラー!! また試してみてください"
800
 
801
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:27
802
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:42
803
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:39
804
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:54
805
  msgid "Not recommended"
806
  msgstr "非推奨"
807
 
808
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:74
809
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:76
810
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:86
811
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:88
812
  msgid "Ex ) "
813
  msgstr "例 ) "
814
 
815
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:174
816
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:190
817
  msgid "Font Awesome"
818
  msgstr "Font Awesome"
819
 
820
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:195
821
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:213
822
  msgid "Font Awesome Version"
823
  msgstr "Font Awesome Version"
824
 
825
  #: dist/inc/font-awesome/package/class-vk-font-awesome-versions.php:198
826
+ #: inc/font-awesome/package/class-vk-font-awesome-versions.php:216
827
  msgid "4.7 will be abolished in the near future."
828
  msgstr "4.7は将来的に廃止します。"
829
 
1180
  #: dist/inc/other-widget/widget-3pr-area.php:56
1181
  #: dist/inc/other-widget/widget-new-posts.php:279
1182
  #: dist/inc/other-widget/widget-page.php:126
1183
+ #: dist/inc/other-widget/widget-pr-blocks.php:114
1184
  #: dist/inc/other-widget/widget-profile.php:55
1185
+ #: dist/inc/related_posts/related_posts.php:262
1186
  #: dist/inc/sns/widget-fb-page-plugin.php:79 dist/inc/sns/widget-twitter.php:84
1187
  #: inc/other-widget/widget-3pr-area.php:56
1188
  #: inc/other-widget/widget-new-posts.php:279
1189
  #: inc/other-widget/widget-page.php:126
1190
  #: inc/other-widget/widget-pr-blocks.php:114
1191
  #: inc/other-widget/widget-profile.php:55
1192
+ #: inc/related_posts/related_posts.php:262 inc/sns/widget-fb-page-plugin.php:79
1193
  #: inc/sns/widget-twitter.php:84
1194
  msgid "Title:"
1195
  msgstr "タイトル"
1202
  #: dist/inc/other-widget/widget-3pr-area.php:72
1203
  #: dist/inc/other-widget/widget-3pr-area.php:90
1204
  #: dist/inc/other-widget/widget-new-posts.php:326
1205
+ #: dist/inc/other-widget/widget-pr-blocks.php:177
1206
  #: dist/inc/other-widget/widget-profile.php:70
1207
  #: inc/other-widget/widget-3pr-area.php:72
1208
  #: inc/other-widget/widget-3pr-area.php:90
1215
  #: dist/inc/other-widget/widget-3pr-area.php:73
1216
  #: dist/inc/other-widget/widget-3pr-area.php:91
1217
  #: dist/inc/other-widget/widget-new-posts.php:327
1218
+ #: dist/inc/other-widget/widget-pr-blocks.php:178
1219
  #: dist/inc/other-widget/widget-profile.php:71
1220
  #: inc/other-widget/widget-3pr-area.php:73
1221
  #: inc/other-widget/widget-3pr-area.php:91
1233
  "690px 以上推奨。空欄も可)"
1234
 
1235
  #: dist/inc/other-widget/widget-3pr-area.php:102
1236
+ #: dist/inc/other-widget/widget-pr-blocks.php:118
1237
  #: inc/other-widget/widget-3pr-area.php:102
1238
  #: inc/other-widget/widget-pr-blocks.php:118
1239
  msgid "Summary Text:"
1240
  msgstr "概要となるテキスト"
1241
 
1242
  #: dist/inc/other-widget/widget-3pr-area.php:108
1243
+ #: dist/inc/other-widget/widget-pr-blocks.php:123
1244
  #: inc/other-widget/widget-3pr-area.php:108
1245
  #: inc/other-widget/widget-pr-blocks.php:123
1246
  msgid "Link URL:"
1248
 
1249
  #: dist/inc/other-widget/widget-3pr-area.php:116
1250
  #: dist/inc/other-widget/widget-banner.php:106
1251
+ #: dist/inc/other-widget/widget-pr-blocks.php:127
1252
  #: inc/other-widget/widget-3pr-area.php:116
1253
  #: inc/other-widget/widget-banner.php:106
1254
  #: inc/other-widget/widget-pr-blocks.php:127
1490
  msgstr "最終更新日"
1491
 
1492
  #: dist/inc/other-widget/widget-new-posts.php:355
1493
+ #: dist/inc/related_posts/related_posts.php:282
1494
  #: inc/other-widget/widget-new-posts.php:355
1495
+ #: inc/related_posts/related_posts.php:282
1496
  msgid "Display count"
1497
  msgstr "表示する記事数"
1498
 
1591
  msgid "Contact"
1592
  msgstr "Contact"
1593
 
1594
+ #: dist/inc/other-widget/widget-pr-blocks.php:82
1595
+ #: inc/other-widget/widget-pr-blocks.php:82
1596
+ msgid ""
1597
+ "If you want to change the number of columns, please change from Appearance -"
1598
+ "> Widgets screen."
1599
+ msgstr ""
1600
+ "カラム数を変更したい場合は「外観 > ウィジェット」画面より設定してください。"
1601
+
1602
+ #: dist/inc/other-widget/widget-pr-blocks.php:85
1603
  #: inc/other-widget/widget-pr-blocks.php:85
1604
  msgid "The choice of the number of columns:"
1605
  msgstr "列の数"
1606
 
1607
+ #: dist/inc/other-widget/widget-pr-blocks.php:92
1608
  #: inc/other-widget/widget-pr-blocks.php:92
1609
  msgid "3column"
1610
  msgstr "3列"
1611
 
1612
+ #: dist/inc/other-widget/widget-pr-blocks.php:97
1613
  #: inc/other-widget/widget-pr-blocks.php:97
1614
  msgid "4column"
1615
  msgstr "4列"
1616
 
1617
+ #: dist/inc/other-widget/widget-pr-blocks.php:100
1618
  #: inc/other-widget/widget-pr-blocks.php:100
1619
  msgid ""
1620
  "If you change the number of columns, click to \"Save\" botton and exit the "
1624
  "列の数を変更する場合は「保存して公開」ボタンをクリックして編集画面を終了しま"
1625
  "す。それから編集画面を再度開くと列の入力フォームが増減します。"
1626
 
1627
+ #: dist/inc/other-widget/widget-pr-blocks.php:110
1628
+ #: dist/inc/other-widget/widget-pr-blocks.php:282
1629
  #: inc/other-widget/widget-pr-blocks.php:110
1630
  #: inc/other-widget/widget-pr-blocks.php:282
1631
  msgid "PR Block"
1632
  msgstr "PRブロック"
1633
 
1634
+ #: dist/inc/other-widget/widget-pr-blocks.php:132
1635
  #: inc/other-widget/widget-pr-blocks.php:132
1636
  msgid "Icon"
1637
  msgstr "アイコン"
1638
 
1639
+ #: dist/inc/other-widget/widget-pr-blocks.php:135
1640
  #: inc/other-widget/widget-pr-blocks.php:135
1641
  msgid "Class name of the icon font you want to use:"
1642
  msgstr "使用したいアイコンフォントのクラス名:"
1643
 
1644
+ #: dist/inc/other-widget/widget-pr-blocks.php:146
1645
  #: dist/inc/other-widget/widget-profile.php:157
1646
  #: inc/other-widget/widget-pr-blocks.php:146
1647
  #: inc/other-widget/widget-profile.php:157
1648
  msgid "Icon color:"
1649
  msgstr "アイコンの色:"
1650
 
1651
+ #: dist/inc/other-widget/widget-pr-blocks.php:150
1652
  #: dist/inc/other-widget/widget-profile.php:142
1653
  #: inc/other-widget/widget-pr-blocks.php:150
1654
  #: inc/other-widget/widget-profile.php:142
1655
  msgid "Icon Background:"
1656
  msgstr "アイコン背景:"
1657
 
1658
+ #: dist/inc/other-widget/widget-pr-blocks.php:154
1659
  #: dist/inc/other-widget/widget-profile.php:148
1660
  #: inc/other-widget/widget-pr-blocks.php:154
1661
  #: inc/other-widget/widget-profile.php:148
1662
  msgid "Solid color"
1663
  msgstr "塗りつぶし"
1664
 
1665
+ #: dist/inc/other-widget/widget-pr-blocks.php:158
1666
  #: dist/inc/other-widget/widget-profile.php:151
1667
  #: dist/inc/sns/sns_customizer.php:318
1668
  #: inc/other-widget/widget-pr-blocks.php:158
1670
  msgid "No background"
1671
  msgstr "背景なし"
1672
 
1673
+ #: dist/inc/other-widget/widget-pr-blocks.php:164
1674
  #: inc/other-widget/widget-pr-blocks.php:164
1675
  msgid "PR Image"
1676
  msgstr "画像"
1677
 
1678
+ #: dist/inc/other-widget/widget-pr-blocks.php:165
1679
  #: inc/other-widget/widget-pr-blocks.php:165
1680
  msgid "When you have an image. Image is displayed with priority"
1681
  msgstr "画像を設定するとアイコンフォントよりも画像が優先されます。"
1982
  msgid "Related posts"
1983
  msgstr "関連記事を表示"
1984
 
1985
+ #: dist/inc/related_posts/related_posts.php:245
1986
+ #: inc/related_posts/related_posts.php:245
1987
  msgid "Related Settings"
1988
  msgstr "関連記事設定"
1989
 
2480
  msgid "Page of %s"
2481
  msgstr "%sページ目"
2482
 
2483
+ #: dist/inc/vk-blocks/package/load-bootstrap.php:49
 
 
 
 
 
 
2484
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:67
2485
+ #: inc/vk-blocks/package/load-bootstrap.php:49
2486
  #: inc/vk-blocks/package/vk-blocks-bootstrap.php:67
2487
  msgid "VK Blocks Bootstrap Setting"
2488
  msgstr "VK Blocks Bootstrap Setting"
2489
 
2490
+ #: dist/inc/vk-blocks/package/load-bootstrap.php:66
2491
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:84
2492
+ #: inc/vk-blocks/package/load-bootstrap.php:66
2493
  #: inc/vk-blocks/package/vk-blocks-bootstrap.php:84
2494
  msgid "Loading Bootstrap4"
2495
  msgstr ""
2496
 
2497
+ #: dist/inc/vk-blocks/package/load-bootstrap.php:67
2498
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:85
2499
+ #: inc/vk-blocks/package/load-bootstrap.php:67
2500
  #: inc/vk-blocks/package/vk-blocks-bootstrap.php:85
2501
  msgid ""
2502
  "Check here to load Bootstrap4. If your theme or plugins loading Bootstrap4, "
2503
  "uncheck here."
2504
  msgstr ""
2505
 
2506
+ #: dist/inc/vk-blocks/package/load-bootstrap.php:83
2507
  #: dist/inc/vk-blocks/package/vk-blocks-bootstrap.php:101
2508
  #: dist/veu-packages.php:81 dist/veu-packages.php:121 dist/veu-packages.php:139
2509
  #: dist/veu-packages.php:169 dist/veu-packages.php:187
2510
  #: dist/veu-packages.php:228 dist/veu-packages.php:263
2511
  #: dist/veu-packages.php:286 dist/veu-packages.php:354
2512
+ #: dist/veu-packages.php:449 inc/vk-blocks/package/load-bootstrap.php:83
2513
+ #: inc/vk-blocks/package/vk-blocks-bootstrap.php:101 veu-packages.php:81
2514
+ #: veu-packages.php:121 veu-packages.php:139 veu-packages.php:169
2515
+ #: veu-packages.php:187 veu-packages.php:228 veu-packages.php:263
2516
+ #: veu-packages.php:286 veu-packages.php:354 veu-packages.php:449
2517
  msgid "Setting"
2518
  msgstr "設定"
2519
 
2520
+ #: dist/inc/vk-blocks/package/view/latest-posts.php:17
2521
+ #: dist/inc/vk-blocks/package/view/post-list.php:132
2522
+ #: inc/vk-blocks/package/view/latest-posts.php:17
2523
+ #: inc/vk-blocks/package/view/post-list.php:137
2524
+ msgid "No Post is selected"
2525
  msgstr ""
2526
 
2527
+ #: dist/inc/vk-blocks/package/vk-blocks-functions.php:301
2528
+ #: inc/vk-blocks/package/vk-blocks-functions.php:322
2529
+ #, fuzzy
2530
+ #| msgid "PR Blocks"
2531
+ msgid "Blocks"
2532
+ msgstr "PR Blocks"
2533
+
2534
+ #: dist/inc/vk-blocks/package/vk-blocks-functions.php:306
2535
+ #: inc/vk-blocks/package/vk-blocks-functions.php:327
2536
+ msgid "Blocks Layout"
2537
  msgstr ""
2538
 
2539
  #: dist/inc/wp-title.php:12 dist/inc/wp-title.php:85 dist/inc/wp-title.php:89
2613
  "さい。"
2614
 
2615
  #: dist/veu-packages.php:66 veu-packages.php:66
2616
+ #, fuzzy
2617
+ #| msgid "PR Blocks"
2618
+ msgid "VK Blocks"
2619
+ msgstr "PR Blocks"
2620
 
2621
  #: dist/veu-packages.php:67 veu-packages.php:67
2622
  msgid "Extends Gutenberg's blocks."
2922
  msgid "The current PHP version(%s) is too old, so VK ExUnit will not work."
2923
  msgstr "使用中のPHPのバージョン(%s) が古すぎるので VK ExUnit は動作しません。"
2924
 
2925
+ #: dist/vkExUnit.php:87 vkExUnit.php:87
2926
  msgid "VK ExUnit supports PHP5.6 or later."
2927
  msgstr "VKExUnit がサポートしているPHPのバージョンは5.6以降です"
2928
 
2929
+ #: dist/vkExUnit.php:103 vkExUnit.php:103
2930
  #, php-format
2931
  msgid "Current PHP Version(%s) is old."
2932
  msgstr "使用中のPHPのバージョン(%s) が古いです。"
2933
 
2934
+ #: dist/vkExUnit.php:104 vkExUnit.php:104
2935
  #, php-format
2936
  msgid "%s supports PHP5.6 or later."
2937
  msgstr "%s はPHP5.6以降をサポートしています。"
2938
 
2939
+ #~ msgid "VK Blocks ( Beta )"
2940
+ #~ msgstr "VK Blocks ( Beta )"
 
 
 
 
2941
 
2942
  #~ msgid "Exclude page Settings"
2943
  #~ msgstr "除外ページ設定"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.0.0
6
  Tested up to: 5.3.2
7
- Stable tag: 9.10.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -93,6 +93,10 @@ e.g.
93
 
94
  == Changelog ==
95
 
 
 
 
 
96
  = 9.10.1.0 =
97
  [ Specification change ] load ExUnit css and block css on header from footer
98
 
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.0.0
6
  Tested up to: 5.3.2
7
+ Stable tag: 9.11.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
93
 
94
  == Changelog ==
95
 
96
+ = 9.11.0.0 =
97
+ [ Add function ] Speeding setting ( load point controll of css file and css customize )
98
+ [ Specification change ][ vk blocks ] YouTube display width : 100%
99
+
100
  = 9.10.1.0 =
101
  [ Specification change ] load ExUnit css and block css on header from footer
102
 
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
- * Version: 9.10.1.0
7
  * Author: Vektor,Inc.
8
  * Text Domain: vk-all-in-one-expansion-unit
9
  * Domain Path: /languages
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
+ * Version: 9.11.0.0
7
  * Author: Vektor,Inc.
8
  * Text Domain: vk-all-in-one-expansion-unit
9
  * Domain Path: /languages