VK All in One Expansion Unit - Version 1.0.2

Version Description

Download this release

Release Info

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

Code changes from version 0.1.6.6 to 1.0.2

README.md CHANGED
@@ -1,5 +1,15 @@
1
  # コーディングルール
2
 
 
 
 
 
 
 
 
 
 
 
3
  ## DBに保存する名前
4
 
5
  単語を連結する場合は _ で連結する
1
  # コーディングルール
2
 
3
+ ## function名
4
+
5
+ 接頭辞は vkExUnit_ にする
6
+
7
+ - 他のプラグインなどと関数名がバッティングするのを避けるため
8
+
9
+ ## ファイル名
10
+
11
+ 単語を連結する場合は _ で連結する
12
+
13
  ## DBに保存する名前
14
 
15
  単語を連結する場合は _ で連結する
_scss/admin.scss CHANGED
@@ -1,7 +1,6 @@
1
  @charset "utf-8";
2
  @import "compass";
3
 
4
- table.wp-list-table { margin-right:10%; }
5
  .optionNav { display:block !important; overflow:hidden; }
6
  .optionNav ul { display:block; overflow:hidden;margin:0;padding:0 5px; }
7
  .optionNav ul li { display: block; float:left;border-radius: 3px 3px 0 0;border:1px solid #ccc; border-bottom:none;margin-right:2px; margin-bottom:0;}
@@ -12,4 +11,22 @@ table.wp-list-table { margin-right:10%; }
12
  a { color:#fff; }
13
  }
14
 
15
- .vkExUnit_admin_page.wrap h3 { background-color:#333; color:#fff; padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  @charset "utf-8";
2
  @import "compass";
3
 
 
4
  .optionNav { display:block !important; overflow:hidden; }
5
  .optionNav ul { display:block; overflow:hidden;margin:0;padding:0 5px; }
6
  .optionNav ul li { display: block; float:left;border-radius: 3px 3px 0 0;border:1px solid #ccc; border-bottom:none;margin-right:2px; margin-bottom:0;}
11
  a { color:#fff; }
12
  }
13
 
14
+ .vkExUnit_admin_page { padding-top:1em;
15
+ .adminMain { display:block; overflow:hidden;width:70%;float:left }
16
+ .adminSub { display:block; overflow:hidden;width:28%;float:right;
17
+ .exUnit_infoBox { display:block; overflow:hidden;padding: 1em;margin-right:1em; background-color: #fff;
18
+ .logo_exUnit { display:block; overflow:hidden; text-align: center;margin-bottom:10px;border-bottom:1px solid #ccc;
19
+ img { width:150px; }
20
+ }
21
+ }
22
+ }
23
+ h2 { display:block; overflow:hidden;margin-bottom:20px;
24
+ .pageTitleTxt { font-size:28px; }
25
+ }
26
+ h3 { background-color:#333; color:#fff; padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000;}
27
+ input[type=text] { width:50%; }
28
+ dl {
29
+ dt { font-weight: bold;margin-bottom:5px; }
30
+ dd { margin-left:0; }
31
+ }
32
+ }
_scss/style.scss CHANGED
@@ -234,7 +234,8 @@
234
  font-size: 18px;
235
  }
236
  .media_pr{
237
- margin-bottom: 0.5em;
 
238
  }
239
  .media_pc{
240
  display: block;
234
  font-size: 18px;
235
  }
236
  .media_pr{
237
+ margin-top: 0.8em;
238
+ margin-bottom: 0.8em;
239
  }
240
  .media_pc{
241
  display: block;
admin_wrapper.php CHANGED
@@ -22,6 +22,7 @@ function vkExUnit_render_main_config(){
22
  vkExUnit_save_main_config();
23
  ?>
24
  <div class="wrap vkExUnit_admin_page">
 
25
  <form method="post" action="">
26
 
27
  <?php
@@ -46,6 +47,10 @@ function vkExUnit_render_main_config(){
46
 
47
  <?php submit_button(); ?>
48
  </form>
 
 
 
 
49
  </div>
50
  <?php
51
  }
22
  vkExUnit_save_main_config();
23
  ?>
24
  <div class="wrap vkExUnit_admin_page">
25
+ <div class="adminMain">
26
  <form method="post" action="">
27
 
28
  <?php
47
 
48
  <?php submit_button(); ?>
49
  </form>
50
+ </div><!-- [ /.adminMain ] -->
51
+ <div class="adminSub">
52
+ <div class="exUnit_infoBox"><?php vkExUnit_news_body(); ?></div>
53
+ </div><!-- [ /.adminSub ] -->
54
  </div>
55
  <?php
56
  }
common_helpers.php CHANGED
@@ -151,12 +151,20 @@ function vkExUnit_get_wp_head_title(){
151
  function vkExUnit_get_pageDescription() {
152
  global $wp_query;
153
  $post = $wp_query->get_queried_object();
154
- if (is_home() || is_front_page() ) {
155
  if ( isset($post->post_excerpt) && $post->post_excerpt ) {
156
  $pageDescription = get_the_excerpt();
157
  } else {
158
  $pageDescription = get_bloginfo( 'description' );
159
  }
 
 
 
 
 
 
 
 
160
  } else if (is_category() || is_tax()) {
161
  if ( ! $post->description ) {
162
  $pageDescription = sprintf(__('About %s', 'vkExUnit'),single_cat_title('',false)).' '.get_bloginfo('name').' '.get_bloginfo('description');
151
  function vkExUnit_get_pageDescription() {
152
  global $wp_query;
153
  $post = $wp_query->get_queried_object();
154
+ if ( is_front_page() ) {
155
  if ( isset($post->post_excerpt) && $post->post_excerpt ) {
156
  $pageDescription = get_the_excerpt();
157
  } else {
158
  $pageDescription = get_bloginfo( 'description' );
159
  }
160
+ } else if ( is_home() ) {
161
+ $page_for_posts = vkExUnit_get_page_for_posts();
162
+ if ( $page_for_posts['post_top_use'] ){
163
+ $page = get_post($page_for_posts['post_top_id']);
164
+ $pageDescription = $page->post_excerpt;
165
+ } else {
166
+ $pageDescription = get_bloginfo( 'description' );
167
+ }
168
  } else if (is_category() || is_tax()) {
169
  if ( ! $post->description ) {
170
  $pageDescription = sprintf(__('About %s', 'vkExUnit'),single_cat_title('',false)).' '.get_bloginfo('name').' '.get_bloginfo('description');
common_init.php CHANGED
@@ -26,18 +26,19 @@ function vkExUnit_get_common_options() {
26
  function vkExUnit_get_common_options_default() {
27
  $default_options = array(
28
  'active_bootstrap' => false,
29
- 'active_fontawesome' => false,
30
  'active_metaDescription' => true,
31
  'active_metaKeyword' => true,
32
- 'active_wpTitle' => true,
33
  'active_sns' => true,
34
  'active_ga' => true,
35
  'active_relatedPosts' => true,
36
- 'active_childPageIndex' => true,
37
  'active_otherWidgets' => true,
38
  'active_css_customize' => true,
39
  'active_auto_eyecatch' => true,
40
- 'active_sitemap_page' => true
 
41
  );
42
  return apply_filters( 'vkExUnit_common_options_default', $default_options );
43
  }
@@ -53,7 +54,7 @@ function vkExUnit_common_options_validate( $input ) {
53
  $output['active_metaDescription'] = (isset($input['active_metaDescription'])) ? true:false;
54
  $output['active_metaKeyword'] = (isset($input['active_metaKeyword'])) ? true:false;
55
  $output['active_icon'] = (isset($input['active_icon'])) ? true:false;
56
- $output['active_wpTitle'] = (isset($input['active_wpTitle'])) ? true:false;
57
  $output['active_sns'] = (isset($input['active_sns'])) ? true:false;
58
  $output['active_ga'] = (isset($input['active_ga'])) ? true:false;
59
  $output['active_relatedPosts'] = (isset($input['active_relatedPosts'])) ? true:false;
@@ -62,6 +63,7 @@ function vkExUnit_common_options_validate( $input ) {
62
  $output['active_css_customize'] = (isset($input['active_css_customize'])) ? true:false;
63
  $output['active_auto_eyecatch'] = (isset($input['active_auto_eyecatch'])) ? true:false;
64
  $output['active_sitemap_page'] = (isset($input['active_sitemap_page'])) ? true:false;
 
65
 
66
  return apply_filters( 'vkExUnit_common_options_validate', $output, $input, $defaults );
67
  }
26
  function vkExUnit_get_common_options_default() {
27
  $default_options = array(
28
  'active_bootstrap' => false,
29
+ 'active_fontawesome' => false,
30
  'active_metaDescription' => true,
31
  'active_metaKeyword' => true,
32
+ 'active_wpTitle' => true,
33
  'active_sns' => true,
34
  'active_ga' => true,
35
  'active_relatedPosts' => true,
36
+ 'active_childPageIndex' => true,
37
  'active_otherWidgets' => true,
38
  'active_css_customize' => true,
39
  'active_auto_eyecatch' => true,
40
+ 'active_sitemap_page' => true,
41
+ 'active_insert_ads' => true,
42
  );
43
  return apply_filters( 'vkExUnit_common_options_default', $default_options );
44
  }
54
  $output['active_metaDescription'] = (isset($input['active_metaDescription'])) ? true:false;
55
  $output['active_metaKeyword'] = (isset($input['active_metaKeyword'])) ? true:false;
56
  $output['active_icon'] = (isset($input['active_icon'])) ? true:false;
57
+ $output['active_wpTitle'] = (isset($input['active_wpTitle'])) ? true:false;
58
  $output['active_sns'] = (isset($input['active_sns'])) ? true:false;
59
  $output['active_ga'] = (isset($input['active_ga'])) ? true:false;
60
  $output['active_relatedPosts'] = (isset($input['active_relatedPosts'])) ? true:false;
63
  $output['active_css_customize'] = (isset($input['active_css_customize'])) ? true:false;
64
  $output['active_auto_eyecatch'] = (isset($input['active_auto_eyecatch'])) ? true:false;
65
  $output['active_sitemap_page'] = (isset($input['active_sitemap_page'])) ? true:false;
66
+ $output['active_insert_ads'] = (isset($input['active_insert_ads'])) ? true:false;
67
 
68
  return apply_filters( 'vkExUnit_common_options_validate', $output, $input, $defaults );
69
  }
css/admin.css CHANGED
@@ -1,5 +1,3 @@
1
- table.wp-list-table { margin-right: 10%; }
2
-
3
  .optionNav { display: block !important; overflow: hidden; }
4
 
5
  .optionNav ul { display: block; overflow: hidden; margin: 0; padding: 0 5px; }
@@ -15,4 +13,15 @@ table.wp-list-table { margin-right: 10%; }
15
  .optionNav ul li.current { background-color: #333; color: #fff; }
16
  .optionNav ul li.current a { color: #fff; }
17
 
18
- .vkExUnit_admin_page.wrap h3 { background-color: #333; color: #fff; padding: 10px 15px; font-size: 150%; margin-top: 0; border-left: 5px solid #e50000; }
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  .optionNav { display: block !important; overflow: hidden; }
2
 
3
  .optionNav ul { display: block; overflow: hidden; margin: 0; padding: 0 5px; }
13
  .optionNav ul li.current { background-color: #333; color: #fff; }
14
  .optionNav ul li.current a { color: #fff; }
15
 
16
+ .vkExUnit_admin_page { padding-top: 1em; }
17
+ .vkExUnit_admin_page .adminMain { display: block; overflow: hidden; width: 70%; float: left; }
18
+ .vkExUnit_admin_page .adminSub { display: block; overflow: hidden; width: 28%; float: right; }
19
+ .vkExUnit_admin_page .adminSub .exUnit_infoBox { display: block; overflow: hidden; padding: 1em; margin-right: 1em; background-color: #fff; }
20
+ .vkExUnit_admin_page .adminSub .exUnit_infoBox .logo_exUnit { display: block; overflow: hidden; text-align: center; margin-bottom: 10px; border-bottom: 1px solid #ccc; }
21
+ .vkExUnit_admin_page .adminSub .exUnit_infoBox .logo_exUnit img { width: 150px; }
22
+ .vkExUnit_admin_page h2 { display: block; overflow: hidden; margin-bottom: 20px; }
23
+ .vkExUnit_admin_page h2 .pageTitleTxt { font-size: 28px; }
24
+ .vkExUnit_admin_page h3 { background-color: #333; color: #fff; padding: 10px 15px; font-size: 150%; margin-top: 0; border-left: 5px solid #e50000; }
25
+ .vkExUnit_admin_page input[type=text] { width: 50%; }
26
+ .vkExUnit_admin_page dl dt { font-weight: bold; margin-bottom: 5px; }
27
+ .vkExUnit_admin_page dl dd { margin-left: 0; }
css/style.css CHANGED
@@ -148,7 +148,7 @@
148
  /* 3PR area wiget Plugin
149
  /*-------------------------------------------*/
150
  .prBox .subSection-title { font-size: 18px; }
151
- .prBox .media_pr { margin-bottom: 0.5em; }
152
  .prBox .media_pc { display: block; }
153
  .prBox .media_sp { display: none; }
154
  .prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
148
  /* 3PR area wiget Plugin
149
  /*-------------------------------------------*/
150
  .prBox .subSection-title { font-size: 18px; }
151
+ .prBox .media_pr { margin-top: 0.8em; margin-bottom: 0.8em; }
152
  .prBox .media_pc { display: block; }
153
  .prBox .media_sp { display: none; }
154
  .prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
css/style_in_bs.css CHANGED
@@ -728,7 +728,7 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
728
  /* 3PR area wiget Plugin
729
  /*-------------------------------------------*/
730
  .prBox .subSection-title { font-size: 18px; }
731
- .prBox .media_pr { margin-bottom: 0.5em; }
732
  .prBox .media_pc { display: block; }
733
  .prBox .media_sp { display: none; }
734
  .prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
728
  /* 3PR area wiget Plugin
729
  /*-------------------------------------------*/
730
  .prBox .subSection-title { font-size: 18px; }
731
+ .prBox .media_pr { margin-top: 0.8em; margin-bottom: 0.8em; }
732
  .prBox .media_pc { display: block; }
733
  .prBox .media_sp { display: none; }
734
  .prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
images/head_logo_ExUnit.png ADDED
Binary file
languages/vkExUnit-ja.mo CHANGED
Binary file
languages/vkExUnit-ja.po CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2015-07-24 20:36+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"
@@ -15,8 +15,8 @@ msgstr ""
15
  "X-Poedit-KeywordsList: __;_x;_e\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../admin_wrapper.php:7 ../admin_wrapper.php:8
19
- #: ../plugins/meta_keyword/meta_keyword.php:84
20
  msgid "Main setting"
21
  msgstr "メイン設定"
22
 
@@ -29,101 +29,105 @@ msgstr "検索結果 : %s"
29
  msgid "Not found"
30
  msgstr "見つかりません"
31
 
32
- #: ../common_helpers.php:138 ../common_helpers.php:202
33
  #, php-format
34
  msgid "Page of %s"
35
  msgstr "%sページ目"
36
 
37
- #: ../common_helpers.php:162 ../common_helpers.php:170
38
  #, php-format
39
  msgid "About %s"
40
  msgstr "%s について"
41
 
42
- #: ../common_helpers.php:174 ../common_helpers.php:223
43
  msgid "Y"
44
  msgstr "年"
45
 
46
- #: ../common_helpers.php:175 ../common_helpers.php:179
47
  #: ../common_helpers.php:183 ../common_helpers.php:187
 
48
  #, php-format
49
  msgid "Article of %s."
50
  msgstr "%s の記事"
51
 
52
- #: ../common_helpers.php:178 ../common_helpers.php:225
53
  msgid "F Y"
54
  msgstr "年月"
55
 
56
- #: ../common_helpers.php:221
57
  #, php-format
58
  msgid "Author: %s"
59
  msgstr "著者: %s"
60
 
61
- #: ../common_helpers.php:227
62
  msgid "F j, Y"
63
  msgstr "月日, 年"
64
 
65
- #: ../common_helpers.php:230
66
  msgid "Asides"
67
  msgstr "サイド"
68
 
69
- #: ../common_helpers.php:232
70
  msgid "Galleries"
71
  msgstr "ギャラリー"
72
 
73
- #: ../common_helpers.php:234
74
  msgid "Images"
75
  msgstr "画像"
76
 
77
- #: ../common_helpers.php:236
78
  msgid "Videos"
79
  msgstr "ビデオ"
80
 
81
- #: ../common_helpers.php:238
82
  msgid "Quotes"
83
  msgstr "引用"
84
 
85
- #: ../common_helpers.php:240
86
  msgid "Links"
87
  msgstr "リンク"
88
 
89
- #: ../common_helpers.php:242
90
  msgid "Statuses"
91
  msgstr "ステータス"
92
 
93
- #: ../common_helpers.php:244
94
  msgid "Audio"
95
  msgstr "オーディオ"
96
 
97
- #: ../common_helpers.php:246
98
  msgid "Chats"
99
  msgstr "チャット"
100
 
101
- #: ../common_helpers.php:262 ../plugins/other_widget/widget-taxonomies.php:81
102
  #: ../plugins/other_widget/old/widget-taxonomy-list.php:81
103
  msgid "Archives"
104
  msgstr "アーカイブ"
105
 
106
- #: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:334
 
 
 
 
107
  msgid "Select all"
108
  msgstr "全てを選択"
109
 
110
- #: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:334
111
  msgid "Function"
112
  msgstr "有効化"
113
 
114
- #: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:334
115
  msgid "Description"
116
  msgstr "説明"
117
 
118
- #: ../vkExUnit_admin.php:21
119
  msgid "Choose Print Bootstrap css"
120
  msgstr "Bootstrap の CSS を出力するか選択"
121
 
122
- #: ../vkExUnit_admin.php:26
123
  msgid "Print Bootstrap css and js"
124
  msgstr "Bootstrap の CSS と js を出力"
125
 
126
- #: ../vkExUnit_admin.php:30
127
  msgid ""
128
  "If your using theme has already including Bootstrap, you deactivate this "
129
  "item."
@@ -132,121 +136,121 @@ msgstr ""
132
  "中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
133
  "下さい。"
134
 
135
- #: ../vkExUnit_admin.php:39
136
  msgid "Choose Print link fontawesome."
137
  msgstr "出力する fontawesome link を選択して下さい。"
138
 
139
- #: ../vkExUnit_admin.php:44
140
  msgid "Print link fontawesome."
141
  msgstr "fontawesome link タグを出力"
142
 
143
- #: ../vkExUnit_admin.php:48
144
  msgid "Print fontawesome link tag to html head."
145
  msgstr ""
146
  "fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
147
  "テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
148
  "さい。"
149
 
150
- #: ../vkExUnit_admin.php:57 ../vkExUnit_admin.php:121
151
  msgid "Choose Print meta description."
152
  msgstr "出力する meta description を選択して下さい。"
153
 
154
- #: ../vkExUnit_admin.php:62
155
  msgid "Favicon setting"
156
  msgstr "ファビコン設定"
157
 
158
- #: ../vkExUnit_admin.php:66
159
  msgid "About favicon."
160
  msgstr ""
161
  "ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
162
  "(ファビコン)を設定します。"
163
 
164
- #: ../vkExUnit_admin.php:75
165
  msgid "Choose Rewrite the title tag"
166
  msgstr "タイトルタグの書き換えを選択する"
167
 
168
- #: ../vkExUnit_admin.php:80
169
  msgid "Rewrite the title tag"
170
  msgstr "タイトルタグの書き換え"
171
 
172
- #: ../vkExUnit_admin.php:84
173
  msgid "Print is rewritten by its own rules to html head."
174
  msgstr ""
175
  "head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
176
  "EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
177
  "ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
178
 
179
- #: ../vkExUnit_admin.php:93
180
  msgid "Choose Print meta Keyword."
181
  msgstr "メタキーワードを選んでください。"
182
 
183
- #: ../vkExUnit_admin.php:98
184
  msgid "Print meta Keyword"
185
  msgstr "メタキーワードを出力"
186
 
187
- #: ../vkExUnit_admin.php:104 ../vkExUnit_admin.php:150
188
- #: ../vkExUnit_admin.php:188 ../vkExUnit_admin.php:267
189
- #: ../vkExUnit_admin.php:300
190
  msgid "Setting"
191
  msgstr "設定"
192
 
193
- #: ../vkExUnit_admin.php:112
194
  msgid "Print meta Keyword to html head."
195
  msgstr "ヘッダーにメタキーワードを出力します。"
196
 
197
- #: ../vkExUnit_admin.php:126
198
  msgid "Print meta description"
199
  msgstr "メタディスクリプションタグを出力"
200
 
201
- #: ../vkExUnit_admin.php:130
202
  msgid "Print meta description to html head."
203
  msgstr ""
204
  "投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
205
  "head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
206
  "している場合はチェックを外して下さい。"
207
 
208
- #: ../vkExUnit_admin.php:139
209
  msgid "Choose Social media cooperation."
210
  msgstr "連携するソーシャルメディアを選択します。"
211
 
212
- #: ../vkExUnit_admin.php:144
213
  msgid "Social media cooperation."
214
  msgstr "ソーシャルメディアとの連携"
215
 
216
- #: ../vkExUnit_admin.php:159
217
  msgid "Print og tags to html head."
218
  msgstr "OG タグを html head 内へ出力します。"
219
 
220
- #: ../vkExUnit_admin.php:160
221
  msgid "Print twitter card tags to html head."
222
  msgstr "Twitter カードタグを html head 内へ出力します。"
223
 
224
- #: ../vkExUnit_admin.php:161
225
  msgid "Print social bookmark buttons."
226
  msgstr "ソーシャルブックマークボタンを表示します。"
227
 
228
- #: ../vkExUnit_admin.php:162
229
  msgid "Facebook Page Plugin widget."
230
  msgstr "Facebookページプラグインウィジェット"
231
 
232
- #: ../vkExUnit_admin.php:163
233
  msgid "Print Follow me box to content bottom."
234
  msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
235
 
236
- #: ../vkExUnit_admin.php:166
237
  msgid "Main setting page"
238
  msgstr "メイン設定画面"
239
 
240
- #: ../vkExUnit_admin.php:167
241
  #, php-format
242
  msgid "* You can stop the function separately from the %s."
243
  msgstr "%s から個別に機能を停止する事ができます。"
244
 
245
- #: ../vkExUnit_admin.php:177
246
  msgid "Choose Print Google Analytics tracking code."
247
  msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
248
 
249
- #: ../vkExUnit_admin.php:196
250
  msgid "Print Google Analytics tracking code."
251
  msgstr ""
252
  "Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
@@ -254,27 +258,27 @@ msgstr ""
254
  "のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
255
  "合はチェックを外して下さい。"
256
 
257
- #: ../vkExUnit_admin.php:205
258
  msgid "Choose Related posts."
259
  msgstr "関連記事を選択"
260
 
261
- #: ../vkExUnit_admin.php:210 ../plugins/related_posts/related_posts.php:34
262
  msgid "Related posts"
263
  msgstr "関連記事を表示"
264
 
265
- #: ../vkExUnit_admin.php:214
266
  msgid "Print Related posts lists to post content bottom."
267
  msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
268
 
269
- #: ../vkExUnit_admin.php:223
270
  msgid "Choose display a child page index to posts."
271
  msgstr "子ページの一覧を表示するか選択"
272
 
273
- #: ../vkExUnit_admin.php:228
274
  msgid "Child page index"
275
  msgstr "子ページの一覧表示"
276
 
277
- #: ../vkExUnit_admin.php:232
278
  msgid ""
279
  "At the bottom of the specified page, it will display a list of the child "
280
  "page."
@@ -282,72 +286,72 @@ msgstr ""
282
  "指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
283
  "サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
284
 
285
- #: ../vkExUnit_admin.php:241
286
  msgid "Insert Site Map"
287
  msgstr "サイトマップを挿入する"
288
 
289
- #: ../vkExUnit_admin.php:246
290
  msgid "Display HTML Site Map"
291
  msgstr "HTMLサイトマップの表示"
292
 
293
- #: ../vkExUnit_admin.php:250
294
  msgid "It displays a HTML Site Map to the specified page."
295
  msgstr "指定した固定ページにHTMLサイトマップを表示します。"
296
 
297
- #: ../vkExUnit_admin.php:259 ../vkExUnit_admin.php:290
298
  msgid "Choose other widgets."
299
  msgstr "Other ウィジェットを選択"
300
 
301
- #: ../vkExUnit_admin.php:264
302
  msgid "Widgets"
303
  msgstr "ウィジェット"
304
 
305
- #: ../vkExUnit_admin.php:272
306
  msgid "You can use various widgets."
307
  msgstr ""
308
  "以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
309
  "「ウィジェット」の設定画面より行って下さい。"
310
 
311
- #: ../vkExUnit_admin.php:274
312
  msgid ""
313
  "VK_Recent Posts - display the link text and the date of the latest article "
314
  "title."
315
  msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
316
 
317
- #: ../vkExUnit_admin.php:275
318
  msgid ""
319
  "VK_Page content to widget - display the contents of the page to the widgets."
320
  msgstr ""
321
  "VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
322
 
323
- #: ../vkExUnit_admin.php:276
324
  msgid "VK_Profile - display the profile entered in the widget."
325
  msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
326
 
327
- #: ../vkExUnit_admin.php:277
328
  msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
329
  msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
330
 
331
- #: ../vkExUnit_admin.php:278
332
  msgid "VK_3PR area - display the 3PR area."
333
  msgstr "VK_3PR エリア - 3PR エリアを表示します。"
334
 
335
- #: ../vkExUnit_admin.php:279
336
  #: ../plugins/other_widget/old/widget-taxonomy-list.php:17
337
  msgid "categories/tags list"
338
  msgstr "カテゴリー/タグ リスト"
339
 
340
- #: ../vkExUnit_admin.php:279
341
  #: ../plugins/other_widget/old/widget-taxonomy-list.php:11
342
  msgid "Displays a categories, tags or format list."
343
  msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
344
 
345
- #: ../vkExUnit_admin.php:280 ../plugins/other_widget/widget-archives.php:14
346
  #: ../plugins/other_widget/old/widget-archive-list.php:14
347
  msgid "archive list"
348
  msgstr "アーカイブリスト"
349
 
350
- #: ../vkExUnit_admin.php:280 ../plugins/other_widget/widget-archives.php:12
351
  #: ../plugins/other_widget/old/widget-archive-list.php:12
352
  msgid ""
353
  "Displays a list of archives. You can choose the post type and also to "
@@ -356,142 +360,106 @@ msgstr ""
356
  "アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
357
  "プを選択できます。"
358
 
359
- #: ../vkExUnit_admin.php:295
360
  msgid "CSS customize"
361
  msgstr "CSSカスタマイズ"
362
 
363
- #: ../vkExUnit_admin.php:307
364
  msgid "You can set Customize CSS."
365
  msgstr ""
366
  "テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
367
  "追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
368
  "さい。"
369
 
370
- #: ../vkExUnit_admin.php:316 ../vkExUnit_admin.php:321
371
  msgid "Automatic Eye Catch insert"
372
  msgstr "アイキャッチ画像自動挿入"
373
 
374
- #: ../vkExUnit_admin.php:325
375
  msgid "Display Eye Catch image at before content."
376
  msgstr ""
377
  "アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
378
  "す。"
379
 
380
- #: ../plugins/auto_eyecatch.php:32
 
 
 
 
 
 
 
 
 
381
  msgid "Automatic EyeCatch"
382
  msgstr "アイキャッチ自動挿入"
383
 
384
- #: ../plugins/auto_eyecatch.php:42
385
  msgid "Do not set eyecatch image automatic."
386
  msgstr "アイキャッチ画像を自動挿入しない"
387
 
388
- #: ../plugins/icons.php:26 ../plugins/icons.php:54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  msgid "icon setting"
390
  msgstr "アイコン設定"
391
 
392
- #: ../plugins/icons.php:59
393
  msgid "Favicon Setting"
394
  msgstr "ファビコン設定"
395
 
396
- #: ../plugins/icons.php:61
397
  msgid "Choose icon"
398
  msgstr "アイコンを選択"
399
 
400
- #: ../plugins/icons.php:62
401
  msgid "Please upload your \".ico\" file"
402
  msgstr "作成したicoファイルをアップロードしてください"
403
 
404
- #: ../plugins/page_custom_field.php:12
405
- msgid "Setting of insert items"
406
- msgstr "挿入アイテムの設定"
407
 
408
- #: ../plugins/page_custom_field.php:22 ../plugins/page_custom_field.php:32
409
- msgid "Choose display a child page index"
410
- msgstr "子ページの一覧を表示するか選択"
411
 
412
- #: ../plugins/page_custom_field.php:27
413
- msgid "if checked you will display a child page index "
414
- msgstr ""
415
- "チェックを入れると個別ページ下へ同じ親ページをもつ子ページ一覧を表示します。"
416
 
417
- #: ../plugins/page_custom_field.php:37
418
- msgid "if checked you will display a sitemap"
419
- msgstr "チェックを入れるとHTMLサイトマップを表示します。"
420
 
421
- #: ../plugins/child_page_index/child_page_index.php:42
422
- #: ../plugins/other_widget/widget-3pr-area.php:274
423
- #: ../plugins/other_widget/widget-3pr-area.php:316
424
- #: ../plugins/other_widget/widget-3pr-area.php:359
425
- msgid "Read more"
426
- msgstr "詳しくはこちら"
427
-
428
- #: ../plugins/css_customize/css_customize-edit.php:2
429
- #: ../plugins/css_customize/css_customize.php:35
430
- #: ../plugins/css_customize/css_customize.php:36
431
- msgid "CSS Customize"
432
- msgstr "CSSカスタマイズ"
433
-
434
- #: ../plugins/css_customize/css_customize-edit.php:5
435
- msgid "You can add custom CSS here."
436
- msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
437
 
438
- #: ../plugins/css_customize/css_customize-edit.php:10
439
- msgid "Save CSS"
440
- msgstr "CSSを保存する"
441
-
442
- #: ../plugins/css_customize/css_customize.php:94
443
- msgid "Your custom CSS was saved."
444
- msgstr "CSSが保存されました"
445
-
446
- #: ../plugins/css_customize/css_customize.php:99
447
- msgid "Error occured. Please try again."
448
- msgstr "何らかのエラー!! また試してみてください"
449
-
450
- #: ../plugins/google_analytics/ga_admin.php:9
451
- #: ../plugins/google_analytics/ga_admin.php:13
452
- #: ../plugins/google_analytics/google_analytics.php:18
453
- msgid "Google Analytics Settings"
454
- msgstr "Google Analytics設定"
455
-
456
- #: ../plugins/google_analytics/ga_admin.php:14
457
- msgid ""
458
- "Please fill in the Google Analytics ID from the Analytics embed code used in "
459
- "the site."
460
- msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
461
-
462
- #: ../plugins/google_analytics/ga_admin.php:16 ../plugins/sns/sns_admin.php:31
463
- #: ../plugins/sns/old/sns_admin.php:20 ../plugins/sns/old/sns_admin.php:61
464
- #: ../plugins/sns/old/sns_admin.php:79 ../plugins/sns/old/sns_admin.php:98
465
- #: ../plugins/sns/old/sns_admin.php:115
466
- msgid "ex) "
467
- msgstr "例: "
468
-
469
- #: ../plugins/google_analytics/ga_admin.php:19
470
- msgid ""
471
- "Please select the type of Analytics code . (If you are unsure you can skip "
472
- "this.)"
473
- msgstr ""
474
- "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
475
- "す )"
476
-
477
- #: ../plugins/google_analytics/ga_admin.php:23
478
- msgid "To output the Universal Analytics code (default)"
479
- msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
480
-
481
- #: ../plugins/google_analytics/ga_admin.php:24
482
- msgid "To output only normal code"
483
- msgstr "ノーマルのコードのみを出力します。"
484
-
485
- #: ../plugins/google_analytics/ga_admin.php:25
486
- msgid "To output both types"
487
- msgstr "両タイプのコードを出力します。"
488
-
489
- #: ../plugins/meta_description/meta_description.php:7
490
- #: ../plugins/meta_description/meta_description.php:19
491
  msgid "Meta Description"
492
  msgstr "メタディスクリプション"
493
 
494
- #: ../plugins/meta_description/meta_description.php:25
495
  msgid ""
496
  "What you have to complete the \"excerpt\" column of the edit screen of each "
497
  "page will be reflected in the description of the meta tag."
@@ -499,7 +467,7 @@ msgstr ""
499
  "各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
500
  "反映されます"
501
 
502
- #: ../plugins/meta_description/meta_description.php:26
503
  msgid ""
504
  "Description of meta tags in the search results screen of search sites such "
505
  "as Google, will be Displayed, such as the bottom of the site title. If the "
@@ -510,7 +478,7 @@ msgstr ""
510
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
511
  "内容が反映されます。"
512
 
513
- #: ../plugins/meta_description/meta_description.php:27
514
  msgid ""
515
  "The meta description of the top page is subject to the catchphrase of the "
516
  "site. However, its contents will be reflected if the excerpt is entered in "
@@ -520,7 +488,7 @@ msgstr ""
520
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
521
  "内容が反映されます。"
522
 
523
- #: ../plugins/meta_description/meta_description.php:28
524
  msgid ""
525
  "If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
526
  "each article edit page, and check the expert column display."
@@ -529,22 +497,21 @@ msgstr ""
529
  "ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
530
  "で、チェックして下さい。"
531
 
532
- #: ../plugins/meta_keyword/meta_keyword.php:28
533
- #: ../plugins/meta_keyword/meta_keyword.php:74
534
- #: ../plugins/meta_keyword/meta_keyword.php:75
535
- #: ../plugins/meta_keyword/meta_keyword.php:82
536
  msgid "Meta Keywords"
537
  msgstr "メタキーワード"
538
 
539
- #: ../plugins/meta_keyword/meta_keyword.php:54
540
  msgid "Meta Keyword"
541
  msgstr "メタキーワード"
542
 
543
- #: ../plugins/meta_keyword/meta_keyword.php:57
544
  msgid "Common Keywords"
545
  msgstr "共通キーワード設定"
546
 
547
- #: ../plugins/meta_keyword/meta_keyword.php:58
548
  msgid ""
549
  "Keywords for meta tag. This words will set Meta Keyword with post keywords. "
550
  "if you want multiple keywords, enter with separator of \",\"."
@@ -552,13 +519,13 @@ msgstr ""
552
  "メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
553
  "のキーワードを設定します。複数ある場合は「,」で区切ってください。"
554
 
555
- #: ../plugins/meta_keyword/meta_keyword.php:61
556
  msgid "This is not seriously, Because the SearchEngine does not care this."
557
  msgstr ""
558
  "あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
559
  "クターとはなりません。"
560
 
561
- #: ../plugins/meta_keyword/meta_keyword.php:62
562
  msgid ""
563
  "For each page individual keyword is enter at the edit screen of each "
564
  "article. 10 keywords maximum, together with a each article keywords is "
@@ -567,25 +534,114 @@ msgstr ""
567
  "個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
568
  "ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
569
 
570
- #: ../plugins/meta_keyword/meta_keyword.php:63
571
  msgid "\",\" separator at end of the last keyword is do not need."
572
  msgstr "最後のキーワードの後ろに「,」は必要ありません。"
573
 
574
- #: ../plugins/meta_keyword/meta_keyword.php:64
575
  msgid "Example: WordPress,template,theme,free,GPL"
576
  msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
577
 
578
- #: ../plugins/meta_keyword/meta_keyword.php:83
579
  msgid ""
580
  "To distinguish between individual keywords, please enter a , delimiter "
581
  "(optional)."
582
  msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
583
 
584
- #: ../plugins/meta_keyword/meta_keyword.php:85
585
  #, php-format
586
  msgid "* keywords common to the entire site can be set from %s."
587
  msgstr "サイト全体のキーワードは %s より設定することができます。"
588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
589
  #: ../plugins/other_widget/widget-3pr-area.php:11
590
  msgid "Displays a 3PR area"
591
  msgstr "3PR エリアを表示します。"
@@ -616,7 +672,7 @@ msgstr "3PR エリア1 設定"
616
  #: ../plugins/other_widget/widget-3pr-area.php:49
617
  #: ../plugins/other_widget/widget-3pr-area.php:102
618
  #: ../plugins/other_widget/widget-3pr-area.php:154
619
- #: ../plugins/other_widget/widget-new-posts.php:75
620
  #: ../plugins/other_widget/widget-profile.php:39
621
  #: ../plugins/sns/function_fbPagePlugin.php:75
622
  msgid "Title:"
@@ -699,18 +755,32 @@ msgstr "最新の投稿記事リストを表示します。"
699
 
700
  #: ../plugins/other_widget/widget-new-posts.php:13
701
  #: ../plugins/other_widget/widget-new-posts.php:23
702
- #: ../plugins/other_widget/widget-new-posts.php:66
703
  msgid "Recent Posts"
704
  msgstr "最新記事"
705
 
706
- #: ../plugins/other_widget/widget-new-posts.php:80
707
  msgid "Display count"
708
  msgstr "表示する記事数"
709
 
710
- #: ../plugins/other_widget/widget-new-posts.php:85
711
  msgid "Slug for the custom type you want to display"
712
  msgstr "表示したい記事タイプ"
713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
714
  #: ../plugins/other_widget/widget-page.php:11
715
  msgid "Displays a page contents to widget."
716
  msgstr "選択したページの内容を表示します。"
@@ -901,10 +971,20 @@ msgstr "カバー画像を表示しない"
901
  msgid "Show Page Posts"
902
  msgstr "タイムラインを表示"
903
 
904
- #: ../plugins/sns/function_follow.php:11
905
  msgid "Follow me"
906
  msgstr "このサイトをフォローする"
907
 
 
 
 
 
 
 
 
 
 
 
908
  #: ../plugins/sns/sns.php:17
909
  msgid "SNS"
910
  msgstr "SNS"
@@ -1013,6 +1093,10 @@ msgstr "Follow me box"
1013
  msgid "Print the Follow me box"
1014
  msgstr "Follow me ユニットを本文の下に表示する"
1015
 
 
 
 
 
1016
  #: ../plugins/sns/old/sns.php:378
1017
  msgid "* It is necessary to set the Theme options page."
1018
  msgstr "* テーマオプションページで設定する必要があります。"
@@ -1164,6 +1248,20 @@ msgstr "BizVektor を使用して OGP タグを出力しない。"
1164
  msgid "Page top"
1165
  msgstr "ページ先頭へ"
1166
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1167
  #~ msgid "Site's Profile"
1168
  #~ msgstr "プロフィール"
1169
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2015-08-03 02:52+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"
15
  "X-Poedit-KeywordsList: __;_x;_e\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../admin_wrapper.php:7 ../admin_wrapper.php:8 ../admin_wrapper.php:26
19
+ #: ../plugins/meta_keyword.php:97
20
  msgid "Main setting"
21
  msgstr "メイン設定"
22
 
29
  msgid "Not found"
30
  msgstr "見つかりません"
31
 
32
+ #: ../common_helpers.php:138 ../common_helpers.php:210
33
  #, php-format
34
  msgid "Page of %s"
35
  msgstr "%sページ目"
36
 
37
+ #: ../common_helpers.php:170 ../common_helpers.php:178
38
  #, php-format
39
  msgid "About %s"
40
  msgstr "%s について"
41
 
42
+ #: ../common_helpers.php:182 ../common_helpers.php:231
43
  msgid "Y"
44
  msgstr "年"
45
 
 
46
  #: ../common_helpers.php:183 ../common_helpers.php:187
47
+ #: ../common_helpers.php:191 ../common_helpers.php:195
48
  #, php-format
49
  msgid "Article of %s."
50
  msgstr "%s の記事"
51
 
52
+ #: ../common_helpers.php:186 ../common_helpers.php:233
53
  msgid "F Y"
54
  msgstr "年月"
55
 
56
+ #: ../common_helpers.php:229
57
  #, php-format
58
  msgid "Author: %s"
59
  msgstr "著者: %s"
60
 
61
+ #: ../common_helpers.php:235
62
  msgid "F j, Y"
63
  msgstr "月日, 年"
64
 
65
+ #: ../common_helpers.php:238
66
  msgid "Asides"
67
  msgstr "サイド"
68
 
69
+ #: ../common_helpers.php:240
70
  msgid "Galleries"
71
  msgstr "ギャラリー"
72
 
73
+ #: ../common_helpers.php:242
74
  msgid "Images"
75
  msgstr "画像"
76
 
77
+ #: ../common_helpers.php:244
78
  msgid "Videos"
79
  msgstr "ビデオ"
80
 
81
+ #: ../common_helpers.php:246
82
  msgid "Quotes"
83
  msgstr "引用"
84
 
85
+ #: ../common_helpers.php:248
86
  msgid "Links"
87
  msgstr "リンク"
88
 
89
+ #: ../common_helpers.php:250
90
  msgid "Statuses"
91
  msgstr "ステータス"
92
 
93
+ #: ../common_helpers.php:252
94
  msgid "Audio"
95
  msgstr "オーディオ"
96
 
97
+ #: ../common_helpers.php:254
98
  msgid "Chats"
99
  msgstr "チャット"
100
 
101
+ #: ../common_helpers.php:270 ../plugins/other_widget/widget-taxonomies.php:81
102
  #: ../plugins/other_widget/old/widget-taxonomy-list.php:81
103
  msgid "Archives"
104
  msgstr "アーカイブ"
105
 
106
+ #: ../vkExUnit_admin.php:3
107
+ msgid "Enable setting"
108
+ msgstr "有効化設定"
109
+
110
+ #: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:364
111
  msgid "Select all"
112
  msgstr "全てを選択"
113
 
114
+ #: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:364
115
  msgid "Function"
116
  msgstr "有効化"
117
 
118
+ #: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:364
119
  msgid "Description"
120
  msgstr "説明"
121
 
122
+ #: ../vkExUnit_admin.php:26
123
  msgid "Choose Print Bootstrap css"
124
  msgstr "Bootstrap の CSS を出力するか選択"
125
 
126
+ #: ../vkExUnit_admin.php:31
127
  msgid "Print Bootstrap css and js"
128
  msgstr "Bootstrap の CSS と js を出力"
129
 
130
+ #: ../vkExUnit_admin.php:35
131
  msgid ""
132
  "If your using theme has already including Bootstrap, you deactivate this "
133
  "item."
136
  "中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
137
  "下さい。"
138
 
139
+ #: ../vkExUnit_admin.php:44
140
  msgid "Choose Print link fontawesome."
141
  msgstr "出力する fontawesome link を選択して下さい。"
142
 
143
+ #: ../vkExUnit_admin.php:49
144
  msgid "Print link fontawesome."
145
  msgstr "fontawesome link タグを出力"
146
 
147
+ #: ../vkExUnit_admin.php:53
148
  msgid "Print fontawesome link tag to html head."
149
  msgstr ""
150
  "fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
151
  "テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
152
  "さい。"
153
 
154
+ #: ../vkExUnit_admin.php:62 ../vkExUnit_admin.php:126
155
  msgid "Choose Print meta description."
156
  msgstr "出力する meta description を選択して下さい。"
157
 
158
+ #: ../vkExUnit_admin.php:67
159
  msgid "Favicon setting"
160
  msgstr "ファビコン設定"
161
 
162
+ #: ../vkExUnit_admin.php:71
163
  msgid "About favicon."
164
  msgstr ""
165
  "ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
166
  "(ファビコン)を設定します。"
167
 
168
+ #: ../vkExUnit_admin.php:80
169
  msgid "Choose Rewrite the title tag"
170
  msgstr "タイトルタグの書き換えを選択する"
171
 
172
+ #: ../vkExUnit_admin.php:85
173
  msgid "Rewrite the title tag"
174
  msgstr "タイトルタグの書き換え"
175
 
176
+ #: ../vkExUnit_admin.php:89
177
  msgid "Print is rewritten by its own rules to html head."
178
  msgstr ""
179
  "head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
180
  "EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
181
  "ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
182
 
183
+ #: ../vkExUnit_admin.php:98
184
  msgid "Choose Print meta Keyword."
185
  msgstr "メタキーワードを選んでください。"
186
 
187
+ #: ../vkExUnit_admin.php:103
188
  msgid "Print meta Keyword"
189
  msgstr "メタキーワードを出力"
190
 
191
+ #: ../vkExUnit_admin.php:109 ../vkExUnit_admin.php:155
192
+ #: ../vkExUnit_admin.php:193 ../vkExUnit_admin.php:272
193
+ #: ../vkExUnit_admin.php:305 ../vkExUnit_admin.php:349
194
  msgid "Setting"
195
  msgstr "設定"
196
 
197
+ #: ../vkExUnit_admin.php:117
198
  msgid "Print meta Keyword to html head."
199
  msgstr "ヘッダーにメタキーワードを出力します。"
200
 
201
+ #: ../vkExUnit_admin.php:131
202
  msgid "Print meta description"
203
  msgstr "メタディスクリプションタグを出力"
204
 
205
+ #: ../vkExUnit_admin.php:135
206
  msgid "Print meta description to html head."
207
  msgstr ""
208
  "投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
209
  "head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
210
  "している場合はチェックを外して下さい。"
211
 
212
+ #: ../vkExUnit_admin.php:144
213
  msgid "Choose Social media cooperation."
214
  msgstr "連携するソーシャルメディアを選択します。"
215
 
216
+ #: ../vkExUnit_admin.php:149
217
  msgid "Social media cooperation."
218
  msgstr "ソーシャルメディアとの連携"
219
 
220
+ #: ../vkExUnit_admin.php:164
221
  msgid "Print og tags to html head."
222
  msgstr "OG タグを html head 内へ出力します。"
223
 
224
+ #: ../vkExUnit_admin.php:165
225
  msgid "Print twitter card tags to html head."
226
  msgstr "Twitter カードタグを html head 内へ出力します。"
227
 
228
+ #: ../vkExUnit_admin.php:166
229
  msgid "Print social bookmark buttons."
230
  msgstr "ソーシャルブックマークボタンを表示します。"
231
 
232
+ #: ../vkExUnit_admin.php:167
233
  msgid "Facebook Page Plugin widget."
234
  msgstr "Facebookページプラグインウィジェット"
235
 
236
+ #: ../vkExUnit_admin.php:168
237
  msgid "Print Follow me box to content bottom."
238
  msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
239
 
240
+ #: ../vkExUnit_admin.php:171
241
  msgid "Main setting page"
242
  msgstr "メイン設定画面"
243
 
244
+ #: ../vkExUnit_admin.php:172
245
  #, php-format
246
  msgid "* You can stop the function separately from the %s."
247
  msgstr "%s から個別に機能を停止する事ができます。"
248
 
249
+ #: ../vkExUnit_admin.php:182
250
  msgid "Choose Print Google Analytics tracking code."
251
  msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
252
 
253
+ #: ../vkExUnit_admin.php:201
254
  msgid "Print Google Analytics tracking code."
255
  msgstr ""
256
  "Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
258
  "のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
259
  "合はチェックを外して下さい。"
260
 
261
+ #: ../vkExUnit_admin.php:210
262
  msgid "Choose Related posts."
263
  msgstr "関連記事を選択"
264
 
265
+ #: ../vkExUnit_admin.php:215 ../plugins/related_posts/related_posts.php:34
266
  msgid "Related posts"
267
  msgstr "関連記事を表示"
268
 
269
+ #: ../vkExUnit_admin.php:219
270
  msgid "Print Related posts lists to post content bottom."
271
  msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
272
 
273
+ #: ../vkExUnit_admin.php:228
274
  msgid "Choose display a child page index to posts."
275
  msgstr "子ページの一覧を表示するか選択"
276
 
277
+ #: ../vkExUnit_admin.php:233
278
  msgid "Child page index"
279
  msgstr "子ページの一覧表示"
280
 
281
+ #: ../vkExUnit_admin.php:237
282
  msgid ""
283
  "At the bottom of the specified page, it will display a list of the child "
284
  "page."
286
  "指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
287
  "サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
288
 
289
+ #: ../vkExUnit_admin.php:246
290
  msgid "Insert Site Map"
291
  msgstr "サイトマップを挿入する"
292
 
293
+ #: ../vkExUnit_admin.php:251
294
  msgid "Display HTML Site Map"
295
  msgstr "HTMLサイトマップの表示"
296
 
297
+ #: ../vkExUnit_admin.php:255
298
  msgid "It displays a HTML Site Map to the specified page."
299
  msgstr "指定した固定ページにHTMLサイトマップを表示します。"
300
 
301
+ #: ../vkExUnit_admin.php:264 ../vkExUnit_admin.php:295
302
  msgid "Choose other widgets."
303
  msgstr "Other ウィジェットを選択"
304
 
305
+ #: ../vkExUnit_admin.php:269
306
  msgid "Widgets"
307
  msgstr "ウィジェット"
308
 
309
+ #: ../vkExUnit_admin.php:277
310
  msgid "You can use various widgets."
311
  msgstr ""
312
  "以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
313
  "「ウィジェット」の設定画面より行って下さい。"
314
 
315
+ #: ../vkExUnit_admin.php:279
316
  msgid ""
317
  "VK_Recent Posts - display the link text and the date of the latest article "
318
  "title."
319
  msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
320
 
321
+ #: ../vkExUnit_admin.php:280
322
  msgid ""
323
  "VK_Page content to widget - display the contents of the page to the widgets."
324
  msgstr ""
325
  "VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
326
 
327
+ #: ../vkExUnit_admin.php:281
328
  msgid "VK_Profile - display the profile entered in the widget."
329
  msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
330
 
331
+ #: ../vkExUnit_admin.php:282
332
  msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
333
  msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
334
 
335
+ #: ../vkExUnit_admin.php:283
336
  msgid "VK_3PR area - display the 3PR area."
337
  msgstr "VK_3PR エリア - 3PR エリアを表示します。"
338
 
339
+ #: ../vkExUnit_admin.php:284
340
  #: ../plugins/other_widget/old/widget-taxonomy-list.php:17
341
  msgid "categories/tags list"
342
  msgstr "カテゴリー/タグ リスト"
343
 
344
+ #: ../vkExUnit_admin.php:284
345
  #: ../plugins/other_widget/old/widget-taxonomy-list.php:11
346
  msgid "Displays a categories, tags or format list."
347
  msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
348
 
349
+ #: ../vkExUnit_admin.php:285 ../plugins/other_widget/widget-archives.php:14
350
  #: ../plugins/other_widget/old/widget-archive-list.php:14
351
  msgid "archive list"
352
  msgstr "アーカイブリスト"
353
 
354
+ #: ../vkExUnit_admin.php:285 ../plugins/other_widget/widget-archives.php:12
355
  #: ../plugins/other_widget/old/widget-archive-list.php:12
356
  msgid ""
357
  "Displays a list of archives. You can choose the post type and also to "
360
  "アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
361
  "プを選択できます。"
362
 
363
+ #: ../vkExUnit_admin.php:300
364
  msgid "CSS customize"
365
  msgstr "CSSカスタマイズ"
366
 
367
+ #: ../vkExUnit_admin.php:312
368
  msgid "You can set Customize CSS."
369
  msgstr ""
370
  "テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
371
  "追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
372
  "さい。"
373
 
374
+ #: ../vkExUnit_admin.php:321 ../vkExUnit_admin.php:326
375
  msgid "Automatic Eye Catch insert"
376
  msgstr "アイキャッチ画像自動挿入"
377
 
378
+ #: ../vkExUnit_admin.php:330
379
  msgid "Display Eye Catch image at before content."
380
  msgstr ""
381
  "アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
382
  "す。"
383
 
384
+ #: ../vkExUnit_admin.php:341 ../vkExUnit_admin.php:346
385
+ #: ../plugins/insert_ads.php:37 ../plugins/insert_ads.php:101
386
+ msgid "Insert ads"
387
+ msgstr "広告の挿入"
388
+
389
+ #: ../vkExUnit_admin.php:354
390
+ msgid "Insert ads to content."
391
+ msgstr "記事に広告を挿入します"
392
+
393
+ #: ../plugins/auto_eyecatch.php:41
394
  msgid "Automatic EyeCatch"
395
  msgstr "アイキャッチ自動挿入"
396
 
397
+ #: ../plugins/auto_eyecatch.php:51
398
  msgid "Do not set eyecatch image automatic."
399
  msgstr "アイキャッチ画像を自動挿入しない"
400
 
401
+ #: ../plugins/dashboard_info_widget.php:18
402
+ msgid "News from VK All in One Expansion Unit"
403
+ msgstr "VK All in One Expansion Unit からのお知らせ"
404
+
405
+ #: ../plugins/footer_copyright_change.php:6
406
+ msgid ""
407
+ "<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
408
+ "\"//lightning.bizvektor.com\" target=\"_blank\" title=\"Free WordPress Theme "
409
+ "Lightning\"> Lightning Theme</a> &amp; <a href=\"http://ex-unit.bizvektor."
410
+ "com/\" target=\"_blank\">VK All in One Expansion Unit</a> by <a href="
411
+ "\"http://www.vektor-inc.co.jp\" target=\"_blank\">Vektor,Inc.</a> technology."
412
+ "</p>"
413
+ msgstr ""
414
+ "<p>Powered by <a href=\"https://ja.wordpress.org/\" target=\"_blank"
415
+ "\">WordPress</a> with <a href=\"//lightning.bizvektor.com/ja/\" target="
416
+ "\"_blank\" title=\"Free WordPress Theme Lightning\"> Lightning Theme</a> "
417
+ "&amp; <a href=\"http://ex-unit.bizvektor.com/ja/\" target=\"_blank\">VK All "
418
+ "in One Expansion Unit</a> by <a href=\"http://www.vektor-inc.co.jp\" target="
419
+ "\"_blank\">Vektor,Inc.</a> technology.</p>"
420
+
421
+ #: ../plugins/icons.php:35 ../plugins/icons.php:63
422
  msgid "icon setting"
423
  msgstr "アイコン設定"
424
 
425
+ #: ../plugins/icons.php:68
426
  msgid "Favicon Setting"
427
  msgstr "ファビコン設定"
428
 
429
+ #: ../plugins/icons.php:70
430
  msgid "Choose icon"
431
  msgstr "アイコンを選択"
432
 
433
+ #: ../plugins/icons.php:71
434
  msgid "Please upload your \".ico\" file"
435
  msgstr "作成したicoファイルをアップロードしてください"
436
 
437
+ #: ../plugins/insert_ads.php:104
438
+ msgid "Insert ads to post."
439
+ msgstr "投稿に広告を挿入"
440
 
441
+ #: ../plugins/insert_ads.php:106
442
+ msgid "Insert ads to more tag and after content."
443
+ msgstr "moreタグの直後と、記事の最後に広告を挿入できます。"
444
 
445
+ #: ../plugins/insert_ads.php:106
446
+ msgid "If you want to separate ads area, you fill two fields."
447
+ msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
 
448
 
449
+ #: ../plugins/insert_ads.php:108
450
+ msgid "insert the ad [ more tag ]"
451
+ msgstr "広告を挿入 [ moreタグ ]"
452
 
453
+ #: ../plugins/insert_ads.php:116
454
+ msgid "insert the ad [ after content ]"
455
+ msgstr "広告を挿入 [ 記事の最後 ]"
 
 
 
 
 
 
 
 
 
 
 
 
 
456
 
457
+ #: ../plugins/meta_description.php:21 ../plugins/meta_description.php:32
458
+ #: ../plugins/meta_description.php:35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  msgid "Meta Description"
460
  msgstr "メタディスクリプション"
461
 
462
+ #: ../plugins/meta_description.php:38
463
  msgid ""
464
  "What you have to complete the \"excerpt\" column of the edit screen of each "
465
  "page will be reflected in the description of the meta tag."
467
  "各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
468
  "反映されます"
469
 
470
+ #: ../plugins/meta_description.php:39
471
  msgid ""
472
  "Description of meta tags in the search results screen of search sites such "
473
  "as Google, will be Displayed, such as the bottom of the site title. If the "
478
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
479
  "内容が反映されます。"
480
 
481
+ #: ../plugins/meta_description.php:40
482
  msgid ""
483
  "The meta description of the top page is subject to the catchphrase of the "
484
  "site. However, its contents will be reflected if the excerpt is entered in "
488
  "す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
489
  "内容が反映されます。"
490
 
491
+ #: ../plugins/meta_description.php:41
492
  msgid ""
493
  "If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
494
  "each article edit page, and check the expert column display."
497
  "ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
498
  "で、チェックして下さい。"
499
 
500
+ #: ../plugins/meta_keyword.php:37 ../plugins/meta_keyword.php:86
501
+ #: ../plugins/meta_keyword.php:88 ../plugins/meta_keyword.php:89
502
+ #: ../plugins/meta_keyword.php:95
 
503
  msgid "Meta Keywords"
504
  msgstr "メタキーワード"
505
 
506
+ #: ../plugins/meta_keyword.php:63
507
  msgid "Meta Keyword"
508
  msgstr "メタキーワード"
509
 
510
+ #: ../plugins/meta_keyword.php:66
511
  msgid "Common Keywords"
512
  msgstr "共通キーワード設定"
513
 
514
+ #: ../plugins/meta_keyword.php:67
515
  msgid ""
516
  "Keywords for meta tag. This words will set Meta Keyword with post keywords. "
517
  "if you want multiple keywords, enter with separator of \",\"."
519
  "メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
520
  "のキーワードを設定します。複数ある場合は「,」で区切ってください。"
521
 
522
+ #: ../plugins/meta_keyword.php:70
523
  msgid "This is not seriously, Because the SearchEngine does not care this."
524
  msgstr ""
525
  "あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
526
  "クターとはなりません。"
527
 
528
+ #: ../plugins/meta_keyword.php:71
529
  msgid ""
530
  "For each page individual keyword is enter at the edit screen of each "
531
  "article. 10 keywords maximum, together with a each article keywords is "
534
  "個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
535
  "ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
536
 
537
+ #: ../plugins/meta_keyword.php:72
538
  msgid "\",\" separator at end of the last keyword is do not need."
539
  msgstr "最後のキーワードの後ろに「,」は必要ありません。"
540
 
541
+ #: ../plugins/meta_keyword.php:73
542
  msgid "Example: WordPress,template,theme,free,GPL"
543
  msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
544
 
545
+ #: ../plugins/meta_keyword.php:96
546
  msgid ""
547
  "To distinguish between individual keywords, please enter a , delimiter "
548
  "(optional)."
549
  msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
550
 
551
+ #: ../plugins/meta_keyword.php:98
552
  #, php-format
553
  msgid "* keywords common to the entire site can be set from %s."
554
  msgstr "サイト全体のキーワードは %s より設定することができます。"
555
 
556
+ #: ../plugins/news_from_exUnit.php:38
557
+ msgid "Sorry, there is no post"
558
+ msgstr "お知らせはありません。"
559
+
560
+ #: ../plugins/page_custom_field.php:12
561
+ msgid "Setting of insert items"
562
+ msgstr "挿入アイテムの設定"
563
+
564
+ #: ../plugins/page_custom_field.php:22 ../plugins/page_custom_field.php:32
565
+ msgid "Choose display a child page index"
566
+ msgstr "子ページの一覧を表示するか選択"
567
+
568
+ #: ../plugins/page_custom_field.php:27
569
+ msgid "if checked you will display a child page index "
570
+ msgstr ""
571
+ "チェックを入れると個別ページ下へ同じ親ページをもつ子ページ一覧を表示します。"
572
+
573
+ #: ../plugins/page_custom_field.php:37
574
+ msgid "if checked you will display a sitemap"
575
+ msgstr "チェックを入れるとHTMLサイトマップを表示します。"
576
+
577
+ #: ../plugins/child_page_index/child_page_index.php:42
578
+ #: ../plugins/other_widget/widget-3pr-area.php:274
579
+ #: ../plugins/other_widget/widget-3pr-area.php:316
580
+ #: ../plugins/other_widget/widget-3pr-area.php:359
581
+ msgid "Read more"
582
+ msgstr "詳しくはこちら"
583
+
584
+ #: ../plugins/css_customize/css_customize-edit.php:2
585
+ #: ../plugins/css_customize/css_customize.php:35
586
+ #: ../plugins/css_customize/css_customize.php:36
587
+ msgid "CSS Customize"
588
+ msgstr "CSSカスタマイズ"
589
+
590
+ #: ../plugins/css_customize/css_customize-edit.php:5
591
+ msgid "You can add custom CSS here."
592
+ msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
593
+
594
+ #: ../plugins/css_customize/css_customize-edit.php:10
595
+ msgid "Save CSS"
596
+ msgstr "CSSを保存する"
597
+
598
+ #: ../plugins/css_customize/css_customize.php:94
599
+ msgid "Your custom CSS was saved."
600
+ msgstr "CSSが保存されました"
601
+
602
+ #: ../plugins/css_customize/css_customize.php:99
603
+ msgid "Error occured. Please try again."
604
+ msgstr "何らかのエラー!! また試してみてください"
605
+
606
+ #: ../plugins/google_analytics/ga_admin.php:9
607
+ #: ../plugins/google_analytics/ga_admin.php:13
608
+ #: ../plugins/google_analytics/google_analytics.php:18
609
+ msgid "Google Analytics Settings"
610
+ msgstr "Google Analytics設定"
611
+
612
+ #: ../plugins/google_analytics/ga_admin.php:14
613
+ msgid ""
614
+ "Please fill in the Google Analytics ID from the Analytics embed code used in "
615
+ "the site."
616
+ msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
617
+
618
+ #: ../plugins/google_analytics/ga_admin.php:16 ../plugins/sns/sns_admin.php:31
619
+ #: ../plugins/sns/old/sns_admin.php:20 ../plugins/sns/old/sns_admin.php:61
620
+ #: ../plugins/sns/old/sns_admin.php:79 ../plugins/sns/old/sns_admin.php:98
621
+ #: ../plugins/sns/old/sns_admin.php:115
622
+ msgid "ex) "
623
+ msgstr "例: "
624
+
625
+ #: ../plugins/google_analytics/ga_admin.php:19
626
+ msgid ""
627
+ "Please select the type of Analytics code . (If you are unsure you can skip "
628
+ "this.)"
629
+ msgstr ""
630
+ "アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
631
+ "す )"
632
+
633
+ #: ../plugins/google_analytics/ga_admin.php:23
634
+ msgid "To output the Universal Analytics code (default)"
635
+ msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
636
+
637
+ #: ../plugins/google_analytics/ga_admin.php:24
638
+ msgid "To output only normal code"
639
+ msgstr "ノーマルのコードのみを出力します。"
640
+
641
+ #: ../plugins/google_analytics/ga_admin.php:25
642
+ msgid "To output both types"
643
+ msgstr "両タイプのコードを出力します。"
644
+
645
  #: ../plugins/other_widget/widget-3pr-area.php:11
646
  msgid "Displays a 3PR area"
647
  msgstr "3PR エリアを表示します。"
672
  #: ../plugins/other_widget/widget-3pr-area.php:49
673
  #: ../plugins/other_widget/widget-3pr-area.php:102
674
  #: ../plugins/other_widget/widget-3pr-area.php:154
675
+ #: ../plugins/other_widget/widget-new-posts.php:92
676
  #: ../plugins/other_widget/widget-profile.php:39
677
  #: ../plugins/sns/function_fbPagePlugin.php:75
678
  msgid "Title:"
755
 
756
  #: ../plugins/other_widget/widget-new-posts.php:13
757
  #: ../plugins/other_widget/widget-new-posts.php:23
758
+ #: ../plugins/other_widget/widget-new-posts.php:82
759
  msgid "Recent Posts"
760
  msgstr "最新記事"
761
 
762
+ #: ../plugins/other_widget/widget-new-posts.php:97
763
  msgid "Display count"
764
  msgstr "表示する記事数"
765
 
766
+ #: ../plugins/other_widget/widget-new-posts.php:102
767
  msgid "Slug for the custom type you want to display"
768
  msgstr "表示したい記事タイプ"
769
 
770
+ #: ../plugins/other_widget/widget-new-posts.php:107
771
+ msgid "taxonomy ID"
772
+ msgstr "カテゴリー(タクソノミー)ID"
773
+
774
+ #: ../plugins/other_widget/widget-new-posts.php:109
775
+ msgid "if you need filtering by term, add the term ID separate by \",\"."
776
+ msgstr ""
777
+ "特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
778
+ "します。"
779
+
780
+ #: ../plugins/other_widget/widget-new-posts.php:111
781
+ msgid "if empty this area, I will do not filtering."
782
+ msgstr "空欄の場合はフィルタリングは行いません。"
783
+
784
  #: ../plugins/other_widget/widget-page.php:11
785
  msgid "Displays a page contents to widget."
786
  msgstr "選択したページの内容を表示します。"
971
  msgid "Show Page Posts"
972
  msgstr "タイムラインを表示"
973
 
974
+ #: ../plugins/sns/function_follow.php:16
975
  msgid "Follow me"
976
  msgstr "このサイトをフォローする"
977
 
978
+ #: ../plugins/sns/function_meta_box.php:28
979
+ msgid "Sns Title"
980
+ msgstr "OGPタイトル"
981
+
982
+ #: ../plugins/sns/function_meta_box.php:39
983
+ msgid "if filled this area then override title of OGP and Twitter Card"
984
+ msgstr ""
985
+ "このエリアにタイトルを入力すると、このページのOGP,ツイッターカードに出力され"
986
+ "るタイトルを上書きすることができます"
987
+
988
  #: ../plugins/sns/sns.php:17
989
  msgid "SNS"
990
  msgstr "SNS"
1093
  msgid "Print the Follow me box"
1094
  msgstr "Follow me ユニットを本文の下に表示する"
1095
 
1096
+ #: ../plugins/sns/sns_admin.php:64
1097
+ msgid "Follow me box title"
1098
+ msgstr "Follow me box の見出しテキスト"
1099
+
1100
  #: ../plugins/sns/old/sns.php:378
1101
  msgid "* It is necessary to set the Theme options page."
1102
  msgstr "* テーマオプションページで設定する必要があります。"
1248
  msgid "Page top"
1249
  msgstr "ページ先頭へ"
1250
 
1251
+ #, fuzzy
1252
+ #~ msgid "http://ex-unit.bizvektor.com/ja/?feed"
1253
+ #~ msgstr "http://ex-unit.bizvektor.com/ja/?feed"
1254
+
1255
+ #~ msgid "http://ex-unit.bizvektor.com/?feed"
1256
+ #~ msgstr "http://ex-unit.bizvektor.com/ja/?feed"
1257
+
1258
+ #~ msgid "AdWords"
1259
+ #~ msgstr "広告の挿入"
1260
+
1261
+ #, fuzzy
1262
+ #~ msgid "acebook application ID"
1263
+ #~ msgstr "facebookアプリケーションID"
1264
+
1265
  #~ msgid "Site's Profile"
1266
  #~ msgstr "プロフィール"
1267
 
languages/vkexunit.mo CHANGED
Binary file
languages/vkexunit.pot CHANGED
@@ -1,7 +1,7 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2015-07-24 20:36+0900\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
7
  "Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
@@ -14,8 +14,8 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin_wrapper.php:7 admin_wrapper.php:8
18
- #: plugins/meta_keyword/meta_keyword.php:84
19
  msgid "Main setting"
20
  msgstr ""
21
 
@@ -28,345 +28,478 @@ msgstr ""
28
  msgid "Not found"
29
  msgstr ""
30
 
31
- #: common_helpers.php:138 common_helpers.php:202
32
  #, php-format
33
  msgid "Page of %s"
34
  msgstr ""
35
 
36
- #: common_helpers.php:162 common_helpers.php:170
37
  #, php-format
38
  msgid "About %s"
39
  msgstr ""
40
 
41
- #: common_helpers.php:174 common_helpers.php:223
42
  msgid "Y"
43
  msgstr ""
44
 
45
- #: common_helpers.php:175 common_helpers.php:179 common_helpers.php:183
46
- #: common_helpers.php:187
47
  #, php-format
48
  msgid "Article of %s."
49
  msgstr ""
50
 
51
- #: common_helpers.php:178 common_helpers.php:225
52
  msgid "F Y"
53
  msgstr ""
54
 
55
- #: common_helpers.php:221
56
  #, php-format
57
  msgid "Author: %s"
58
  msgstr ""
59
 
60
- #: common_helpers.php:227
61
  msgid "F j, Y"
62
  msgstr ""
63
 
64
- #: common_helpers.php:230
65
  msgid "Asides"
66
  msgstr ""
67
 
68
- #: common_helpers.php:232
69
  msgid "Galleries"
70
  msgstr ""
71
 
72
- #: common_helpers.php:234
73
  msgid "Images"
74
  msgstr ""
75
 
76
- #: common_helpers.php:236
77
  msgid "Videos"
78
  msgstr ""
79
 
80
- #: common_helpers.php:238
81
  msgid "Quotes"
82
  msgstr ""
83
 
84
- #: common_helpers.php:240
85
  msgid "Links"
86
  msgstr ""
87
 
88
- #: common_helpers.php:242
89
  msgid "Statuses"
90
  msgstr ""
91
 
92
- #: common_helpers.php:244
93
  msgid "Audio"
94
  msgstr ""
95
 
96
- #: common_helpers.php:246
97
  msgid "Chats"
98
  msgstr ""
99
 
100
- #: common_helpers.php:262 plugins/other_widget/widget-taxonomies.php:81
101
  #: plugins/other_widget/old/widget-taxonomy-list.php:81
102
  msgid "Archives"
103
  msgstr ""
104
 
105
- #: vkExUnit_admin.php:12 vkExUnit_admin.php:334
 
 
 
 
106
  msgid "Select all"
107
  msgstr ""
108
 
109
- #: vkExUnit_admin.php:12 vkExUnit_admin.php:334
110
  msgid "Function"
111
  msgstr ""
112
 
113
- #: vkExUnit_admin.php:12 vkExUnit_admin.php:334
114
  msgid "Description"
115
  msgstr ""
116
 
117
- #: vkExUnit_admin.php:21
118
  msgid "Choose Print Bootstrap css"
119
  msgstr ""
120
 
121
- #: vkExUnit_admin.php:26
122
  msgid "Print Bootstrap css and js"
123
  msgstr ""
124
 
125
- #: vkExUnit_admin.php:30
126
  msgid ""
127
  "If your using theme has already including Bootstrap, you deactivate this "
128
  "item."
129
  msgstr ""
130
 
131
- #: vkExUnit_admin.php:39
132
  msgid "Choose Print link fontawesome."
133
  msgstr ""
134
 
135
- #: vkExUnit_admin.php:44
136
  msgid "Print link fontawesome."
137
  msgstr ""
138
 
139
- #: vkExUnit_admin.php:48
140
  msgid "Print fontawesome link tag to html head."
141
  msgstr ""
142
 
143
- #: vkExUnit_admin.php:57 vkExUnit_admin.php:121
144
  msgid "Choose Print meta description."
145
  msgstr ""
146
 
147
- #: vkExUnit_admin.php:62
148
  msgid "Favicon setting"
149
  msgstr ""
150
 
151
- #: vkExUnit_admin.php:66
152
  msgid "About favicon."
153
  msgstr ""
154
 
155
- #: vkExUnit_admin.php:75
156
  msgid "Choose Rewrite the title tag"
157
  msgstr ""
158
 
159
- #: vkExUnit_admin.php:80
160
  msgid "Rewrite the title tag"
161
  msgstr ""
162
 
163
- #: vkExUnit_admin.php:84
164
  msgid "Print is rewritten by its own rules to html head."
165
  msgstr ""
166
 
167
- #: vkExUnit_admin.php:93
168
  msgid "Choose Print meta Keyword."
169
  msgstr ""
170
 
171
- #: vkExUnit_admin.php:98
172
  msgid "Print meta Keyword"
173
  msgstr ""
174
 
175
- #: vkExUnit_admin.php:104 vkExUnit_admin.php:150 vkExUnit_admin.php:188
176
- #: vkExUnit_admin.php:267 vkExUnit_admin.php:300
177
  msgid "Setting"
178
  msgstr ""
179
 
180
- #: vkExUnit_admin.php:112
181
  msgid "Print meta Keyword to html head."
182
  msgstr ""
183
 
184
- #: vkExUnit_admin.php:126
185
  msgid "Print meta description"
186
  msgstr ""
187
 
188
- #: vkExUnit_admin.php:130
189
  msgid "Print meta description to html head."
190
  msgstr ""
191
 
192
- #: vkExUnit_admin.php:139
193
  msgid "Choose Social media cooperation."
194
  msgstr ""
195
 
196
- #: vkExUnit_admin.php:144
197
  msgid "Social media cooperation."
198
  msgstr ""
199
 
200
- #: vkExUnit_admin.php:159
201
  msgid "Print og tags to html head."
202
  msgstr ""
203
 
204
- #: vkExUnit_admin.php:160
205
  msgid "Print twitter card tags to html head."
206
  msgstr ""
207
 
208
- #: vkExUnit_admin.php:161
209
  msgid "Print social bookmark buttons."
210
  msgstr ""
211
 
212
- #: vkExUnit_admin.php:162
213
  msgid "Facebook Page Plugin widget."
214
  msgstr ""
215
 
216
- #: vkExUnit_admin.php:163
217
  msgid "Print Follow me box to content bottom."
218
  msgstr ""
219
 
220
- #: vkExUnit_admin.php:166
221
  msgid "Main setting page"
222
  msgstr ""
223
 
224
- #: vkExUnit_admin.php:167
225
  #, php-format
226
  msgid "* You can stop the function separately from the %s."
227
  msgstr ""
228
 
229
- #: vkExUnit_admin.php:177
230
  msgid "Choose Print Google Analytics tracking code."
231
  msgstr ""
232
 
233
- #: vkExUnit_admin.php:196
234
  msgid "Print Google Analytics tracking code."
235
  msgstr ""
236
 
237
- #: vkExUnit_admin.php:205
238
  msgid "Choose Related posts."
239
  msgstr ""
240
 
241
- #: vkExUnit_admin.php:210 plugins/related_posts/related_posts.php:34
242
  msgid "Related posts"
243
  msgstr ""
244
 
245
- #: vkExUnit_admin.php:214
246
  msgid "Print Related posts lists to post content bottom."
247
  msgstr ""
248
 
249
- #: vkExUnit_admin.php:223
250
  msgid "Choose display a child page index to posts."
251
  msgstr ""
252
 
253
- #: vkExUnit_admin.php:228
254
  msgid "Child page index"
255
  msgstr ""
256
 
257
- #: vkExUnit_admin.php:232
258
  msgid ""
259
  "At the bottom of the specified page, it will display a list of the child "
260
  "page."
261
  msgstr ""
262
 
263
- #: vkExUnit_admin.php:241
264
  msgid "Insert Site Map"
265
  msgstr ""
266
 
267
- #: vkExUnit_admin.php:246
268
  msgid "Display HTML Site Map"
269
  msgstr ""
270
 
271
- #: vkExUnit_admin.php:250
272
  msgid "It displays a HTML Site Map to the specified page."
273
  msgstr ""
274
 
275
- #: vkExUnit_admin.php:259 vkExUnit_admin.php:290
276
  msgid "Choose other widgets."
277
  msgstr ""
278
 
279
- #: vkExUnit_admin.php:264
280
  msgid "Widgets"
281
  msgstr ""
282
 
283
- #: vkExUnit_admin.php:272
284
  msgid "You can use various widgets."
285
  msgstr ""
286
 
287
- #: vkExUnit_admin.php:274
288
  msgid ""
289
  "VK_Recent Posts - display the link text and the date of the latest article "
290
  "title."
291
  msgstr ""
292
 
293
- #: vkExUnit_admin.php:275
294
  msgid ""
295
  "VK_Page content to widget - display the contents of the page to the widgets."
296
  msgstr ""
297
 
298
- #: vkExUnit_admin.php:276
299
  msgid "VK_Profile - display the profile entered in the widget."
300
  msgstr ""
301
 
302
- #: vkExUnit_admin.php:277
303
  msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
304
  msgstr ""
305
 
306
- #: vkExUnit_admin.php:278
307
  msgid "VK_3PR area - display the 3PR area."
308
  msgstr ""
309
 
310
- #: vkExUnit_admin.php:279 plugins/other_widget/old/widget-taxonomy-list.php:17
311
  msgid "categories/tags list"
312
  msgstr ""
313
 
314
- #: vkExUnit_admin.php:279 plugins/other_widget/old/widget-taxonomy-list.php:11
315
  msgid "Displays a categories, tags or format list."
316
  msgstr ""
317
 
318
- #: vkExUnit_admin.php:280 plugins/other_widget/widget-archives.php:14
319
  #: plugins/other_widget/old/widget-archive-list.php:14
320
  msgid "archive list"
321
  msgstr ""
322
 
323
- #: vkExUnit_admin.php:280 plugins/other_widget/widget-archives.php:12
324
  #: plugins/other_widget/old/widget-archive-list.php:12
325
  msgid ""
326
  "Displays a list of archives. You can choose the post type and also to "
327
  "display archives by month or by year."
328
  msgstr ""
329
 
330
- #: vkExUnit_admin.php:295
331
  msgid "CSS customize"
332
  msgstr ""
333
 
334
- #: vkExUnit_admin.php:307
335
  msgid "You can set Customize CSS."
336
  msgstr ""
337
 
338
- #: vkExUnit_admin.php:316 vkExUnit_admin.php:321
339
  msgid "Automatic Eye Catch insert"
340
  msgstr ""
341
 
342
- #: vkExUnit_admin.php:325
343
  msgid "Display Eye Catch image at before content."
344
  msgstr ""
345
 
346
- #: plugins/auto_eyecatch.php:32
 
 
 
 
 
 
 
 
 
347
  msgid "Automatic EyeCatch"
348
  msgstr ""
349
 
350
- #: plugins/auto_eyecatch.php:42
351
  msgid "Do not set eyecatch image automatic."
352
  msgstr ""
353
 
354
- #: plugins/icons.php:26 plugins/icons.php:54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  msgid "icon setting"
356
  msgstr ""
357
 
358
- #: plugins/icons.php:59
359
  msgid "Favicon Setting"
360
  msgstr ""
361
 
362
- #: plugins/icons.php:61
363
  msgid "Choose icon"
364
  msgstr ""
365
 
366
- #: plugins/icons.php:62
367
  msgid "Please upload your \".ico\" file"
368
  msgstr ""
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  #: plugins/page_custom_field.php:12
371
  msgid "Setting of insert items"
372
  msgstr ""
@@ -449,89 +582,6 @@ msgstr ""
449
  msgid "To output both types"
450
  msgstr ""
451
 
452
- #: plugins/meta_description/meta_description.php:7
453
- #: plugins/meta_description/meta_description.php:19
454
- msgid "Meta Description"
455
- msgstr ""
456
-
457
- #: plugins/meta_description/meta_description.php:25
458
- msgid ""
459
- "What you have to complete the \"excerpt\" column of the edit screen of each "
460
- "page will be reflected in the description of the meta tag."
461
- msgstr ""
462
-
463
- #: plugins/meta_description/meta_description.php:26
464
- msgid ""
465
- "Description of meta tags in the search results screen of search sites such "
466
- "as Google, will be Displayed, such as the bottom of the site title. If the "
467
- "excerpt column is blank, is 240 characters than text beginning of a sentence "
468
- "has become a specification that is applied as a description."
469
- msgstr ""
470
-
471
- #: plugins/meta_description/meta_description.php:27
472
- msgid ""
473
- "The meta description of the top page is subject to the catchphrase of the "
474
- "site. However, its contents will be reflected if the excerpt is entered in "
475
- "fixed page that was set on the top page."
476
- msgstr ""
477
-
478
- #: plugins/meta_description/meta_description.php:28
479
- msgid ""
480
- "If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
481
- "each article edit page, and check the expert column display."
482
- msgstr ""
483
-
484
- #: plugins/meta_keyword/meta_keyword.php:28
485
- #: plugins/meta_keyword/meta_keyword.php:74
486
- #: plugins/meta_keyword/meta_keyword.php:75
487
- #: plugins/meta_keyword/meta_keyword.php:82
488
- msgid "Meta Keywords"
489
- msgstr ""
490
-
491
- #: plugins/meta_keyword/meta_keyword.php:54
492
- msgid "Meta Keyword"
493
- msgstr ""
494
-
495
- #: plugins/meta_keyword/meta_keyword.php:57
496
- msgid "Common Keywords"
497
- msgstr ""
498
-
499
- #: plugins/meta_keyword/meta_keyword.php:58
500
- msgid ""
501
- "Keywords for meta tag. This words will set Meta Keyword with post keywords. "
502
- "if you want multiple keywords, enter with separator of \",\"."
503
- msgstr ""
504
-
505
- #: plugins/meta_keyword/meta_keyword.php:61
506
- msgid "This is not seriously, Because the SearchEngine does not care this."
507
- msgstr ""
508
-
509
- #: plugins/meta_keyword/meta_keyword.php:62
510
- msgid ""
511
- "For each page individual keyword is enter at the edit screen of each "
512
- "article. 10 keywords maximum, together with a each article keywords is "
513
- "desirable."
514
- msgstr ""
515
-
516
- #: plugins/meta_keyword/meta_keyword.php:63
517
- msgid "\",\" separator at end of the last keyword is do not need."
518
- msgstr ""
519
-
520
- #: plugins/meta_keyword/meta_keyword.php:64
521
- msgid "Example: WordPress,template,theme,free,GPL"
522
- msgstr ""
523
-
524
- #: plugins/meta_keyword/meta_keyword.php:83
525
- msgid ""
526
- "To distinguish between individual keywords, please enter a , delimiter "
527
- "(optional)."
528
- msgstr ""
529
-
530
- #: plugins/meta_keyword/meta_keyword.php:85
531
- #, php-format
532
- msgid "* keywords common to the entire site can be set from %s."
533
- msgstr ""
534
-
535
  #: plugins/other_widget/widget-3pr-area.php:11
536
  msgid "Displays a 3PR area"
537
  msgstr ""
@@ -562,7 +612,7 @@ msgstr ""
562
  #: plugins/other_widget/widget-3pr-area.php:49
563
  #: plugins/other_widget/widget-3pr-area.php:102
564
  #: plugins/other_widget/widget-3pr-area.php:154
565
- #: plugins/other_widget/widget-new-posts.php:75
566
  #: plugins/other_widget/widget-profile.php:39
567
  #: plugins/sns/function_fbPagePlugin.php:75
568
  msgid "Title:"
@@ -643,18 +693,30 @@ msgstr ""
643
 
644
  #: plugins/other_widget/widget-new-posts.php:13
645
  #: plugins/other_widget/widget-new-posts.php:23
646
- #: plugins/other_widget/widget-new-posts.php:66
647
  msgid "Recent Posts"
648
  msgstr ""
649
 
650
- #: plugins/other_widget/widget-new-posts.php:80
651
  msgid "Display count"
652
  msgstr ""
653
 
654
- #: plugins/other_widget/widget-new-posts.php:85
655
  msgid "Slug for the custom type you want to display"
656
  msgstr ""
657
 
 
 
 
 
 
 
 
 
 
 
 
 
658
  #: plugins/other_widget/widget-page.php:11
659
  msgid "Displays a page contents to widget."
660
  msgstr ""
@@ -844,10 +906,18 @@ msgstr ""
844
  msgid "Show Page Posts"
845
  msgstr ""
846
 
847
- #: plugins/sns/function_follow.php:11
848
  msgid "Follow me"
849
  msgstr ""
850
 
 
 
 
 
 
 
 
 
851
  #: plugins/sns/sns.php:17
852
  msgid "SNS"
853
  msgstr ""
@@ -946,6 +1016,10 @@ msgstr ""
946
  msgid "Print the Follow me box"
947
  msgstr ""
948
 
 
 
 
 
949
  #: plugins/sns/old/sns.php:378
950
  msgid "* It is necessary to set the Theme options page."
951
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2015-08-03 02:52+0900\n"
5
  "PO-Revision-Date: \n"
6
  "Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
7
  "Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin_wrapper.php:7 admin_wrapper.php:8 admin_wrapper.php:26
18
+ #: plugins/meta_keyword.php:97
19
  msgid "Main setting"
20
  msgstr ""
21
 
28
  msgid "Not found"
29
  msgstr ""
30
 
31
+ #: common_helpers.php:138 common_helpers.php:210
32
  #, php-format
33
  msgid "Page of %s"
34
  msgstr ""
35
 
36
+ #: common_helpers.php:170 common_helpers.php:178
37
  #, php-format
38
  msgid "About %s"
39
  msgstr ""
40
 
41
+ #: common_helpers.php:182 common_helpers.php:231
42
  msgid "Y"
43
  msgstr ""
44
 
45
+ #: common_helpers.php:183 common_helpers.php:187 common_helpers.php:191
46
+ #: common_helpers.php:195
47
  #, php-format
48
  msgid "Article of %s."
49
  msgstr ""
50
 
51
+ #: common_helpers.php:186 common_helpers.php:233
52
  msgid "F Y"
53
  msgstr ""
54
 
55
+ #: common_helpers.php:229
56
  #, php-format
57
  msgid "Author: %s"
58
  msgstr ""
59
 
60
+ #: common_helpers.php:235
61
  msgid "F j, Y"
62
  msgstr ""
63
 
64
+ #: common_helpers.php:238
65
  msgid "Asides"
66
  msgstr ""
67
 
68
+ #: common_helpers.php:240
69
  msgid "Galleries"
70
  msgstr ""
71
 
72
+ #: common_helpers.php:242
73
  msgid "Images"
74
  msgstr ""
75
 
76
+ #: common_helpers.php:244
77
  msgid "Videos"
78
  msgstr ""
79
 
80
+ #: common_helpers.php:246
81
  msgid "Quotes"
82
  msgstr ""
83
 
84
+ #: common_helpers.php:248
85
  msgid "Links"
86
  msgstr ""
87
 
88
+ #: common_helpers.php:250
89
  msgid "Statuses"
90
  msgstr ""
91
 
92
+ #: common_helpers.php:252
93
  msgid "Audio"
94
  msgstr ""
95
 
96
+ #: common_helpers.php:254
97
  msgid "Chats"
98
  msgstr ""
99
 
100
+ #: common_helpers.php:270 plugins/other_widget/widget-taxonomies.php:81
101
  #: plugins/other_widget/old/widget-taxonomy-list.php:81
102
  msgid "Archives"
103
  msgstr ""
104
 
105
+ #: vkExUnit_admin.php:3
106
+ msgid "Enable setting"
107
+ msgstr ""
108
+
109
+ #: vkExUnit_admin.php:16 vkExUnit_admin.php:364
110
  msgid "Select all"
111
  msgstr ""
112
 
113
+ #: vkExUnit_admin.php:16 vkExUnit_admin.php:364
114
  msgid "Function"
115
  msgstr ""
116
 
117
+ #: vkExUnit_admin.php:16 vkExUnit_admin.php:364
118
  msgid "Description"
119
  msgstr ""
120
 
121
+ #: vkExUnit_admin.php:26
122
  msgid "Choose Print Bootstrap css"
123
  msgstr ""
124
 
125
+ #: vkExUnit_admin.php:31
126
  msgid "Print Bootstrap css and js"
127
  msgstr ""
128
 
129
+ #: vkExUnit_admin.php:35
130
  msgid ""
131
  "If your using theme has already including Bootstrap, you deactivate this "
132
  "item."
133
  msgstr ""
134
 
135
+ #: vkExUnit_admin.php:44
136
  msgid "Choose Print link fontawesome."
137
  msgstr ""
138
 
139
+ #: vkExUnit_admin.php:49
140
  msgid "Print link fontawesome."
141
  msgstr ""
142
 
143
+ #: vkExUnit_admin.php:53
144
  msgid "Print fontawesome link tag to html head."
145
  msgstr ""
146
 
147
+ #: vkExUnit_admin.php:62 vkExUnit_admin.php:126
148
  msgid "Choose Print meta description."
149
  msgstr ""
150
 
151
+ #: vkExUnit_admin.php:67
152
  msgid "Favicon setting"
153
  msgstr ""
154
 
155
+ #: vkExUnit_admin.php:71
156
  msgid "About favicon."
157
  msgstr ""
158
 
159
+ #: vkExUnit_admin.php:80
160
  msgid "Choose Rewrite the title tag"
161
  msgstr ""
162
 
163
+ #: vkExUnit_admin.php:85
164
  msgid "Rewrite the title tag"
165
  msgstr ""
166
 
167
+ #: vkExUnit_admin.php:89
168
  msgid "Print is rewritten by its own rules to html head."
169
  msgstr ""
170
 
171
+ #: vkExUnit_admin.php:98
172
  msgid "Choose Print meta Keyword."
173
  msgstr ""
174
 
175
+ #: vkExUnit_admin.php:103
176
  msgid "Print meta Keyword"
177
  msgstr ""
178
 
179
+ #: vkExUnit_admin.php:109 vkExUnit_admin.php:155 vkExUnit_admin.php:193
180
+ #: vkExUnit_admin.php:272 vkExUnit_admin.php:305 vkExUnit_admin.php:349
181
  msgid "Setting"
182
  msgstr ""
183
 
184
+ #: vkExUnit_admin.php:117
185
  msgid "Print meta Keyword to html head."
186
  msgstr ""
187
 
188
+ #: vkExUnit_admin.php:131
189
  msgid "Print meta description"
190
  msgstr ""
191
 
192
+ #: vkExUnit_admin.php:135
193
  msgid "Print meta description to html head."
194
  msgstr ""
195
 
196
+ #: vkExUnit_admin.php:144
197
  msgid "Choose Social media cooperation."
198
  msgstr ""
199
 
200
+ #: vkExUnit_admin.php:149
201
  msgid "Social media cooperation."
202
  msgstr ""
203
 
204
+ #: vkExUnit_admin.php:164
205
  msgid "Print og tags to html head."
206
  msgstr ""
207
 
208
+ #: vkExUnit_admin.php:165
209
  msgid "Print twitter card tags to html head."
210
  msgstr ""
211
 
212
+ #: vkExUnit_admin.php:166
213
  msgid "Print social bookmark buttons."
214
  msgstr ""
215
 
216
+ #: vkExUnit_admin.php:167
217
  msgid "Facebook Page Plugin widget."
218
  msgstr ""
219
 
220
+ #: vkExUnit_admin.php:168
221
  msgid "Print Follow me box to content bottom."
222
  msgstr ""
223
 
224
+ #: vkExUnit_admin.php:171
225
  msgid "Main setting page"
226
  msgstr ""
227
 
228
+ #: vkExUnit_admin.php:172
229
  #, php-format
230
  msgid "* You can stop the function separately from the %s."
231
  msgstr ""
232
 
233
+ #: vkExUnit_admin.php:182
234
  msgid "Choose Print Google Analytics tracking code."
235
  msgstr ""
236
 
237
+ #: vkExUnit_admin.php:201
238
  msgid "Print Google Analytics tracking code."
239
  msgstr ""
240
 
241
+ #: vkExUnit_admin.php:210
242
  msgid "Choose Related posts."
243
  msgstr ""
244
 
245
+ #: vkExUnit_admin.php:215 plugins/related_posts/related_posts.php:34
246
  msgid "Related posts"
247
  msgstr ""
248
 
249
+ #: vkExUnit_admin.php:219
250
  msgid "Print Related posts lists to post content bottom."
251
  msgstr ""
252
 
253
+ #: vkExUnit_admin.php:228
254
  msgid "Choose display a child page index to posts."
255
  msgstr ""
256
 
257
+ #: vkExUnit_admin.php:233
258
  msgid "Child page index"
259
  msgstr ""
260
 
261
+ #: vkExUnit_admin.php:237
262
  msgid ""
263
  "At the bottom of the specified page, it will display a list of the child "
264
  "page."
265
  msgstr ""
266
 
267
+ #: vkExUnit_admin.php:246
268
  msgid "Insert Site Map"
269
  msgstr ""
270
 
271
+ #: vkExUnit_admin.php:251
272
  msgid "Display HTML Site Map"
273
  msgstr ""
274
 
275
+ #: vkExUnit_admin.php:255
276
  msgid "It displays a HTML Site Map to the specified page."
277
  msgstr ""
278
 
279
+ #: vkExUnit_admin.php:264 vkExUnit_admin.php:295
280
  msgid "Choose other widgets."
281
  msgstr ""
282
 
283
+ #: vkExUnit_admin.php:269
284
  msgid "Widgets"
285
  msgstr ""
286
 
287
+ #: vkExUnit_admin.php:277
288
  msgid "You can use various widgets."
289
  msgstr ""
290
 
291
+ #: vkExUnit_admin.php:279
292
  msgid ""
293
  "VK_Recent Posts - display the link text and the date of the latest article "
294
  "title."
295
  msgstr ""
296
 
297
+ #: vkExUnit_admin.php:280
298
  msgid ""
299
  "VK_Page content to widget - display the contents of the page to the widgets."
300
  msgstr ""
301
 
302
+ #: vkExUnit_admin.php:281
303
  msgid "VK_Profile - display the profile entered in the widget."
304
  msgstr ""
305
 
306
+ #: vkExUnit_admin.php:282
307
  msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
308
  msgstr ""
309
 
310
+ #: vkExUnit_admin.php:283
311
  msgid "VK_3PR area - display the 3PR area."
312
  msgstr ""
313
 
314
+ #: vkExUnit_admin.php:284 plugins/other_widget/old/widget-taxonomy-list.php:17
315
  msgid "categories/tags list"
316
  msgstr ""
317
 
318
+ #: vkExUnit_admin.php:284 plugins/other_widget/old/widget-taxonomy-list.php:11
319
  msgid "Displays a categories, tags or format list."
320
  msgstr ""
321
 
322
+ #: vkExUnit_admin.php:285 plugins/other_widget/widget-archives.php:14
323
  #: plugins/other_widget/old/widget-archive-list.php:14
324
  msgid "archive list"
325
  msgstr ""
326
 
327
+ #: vkExUnit_admin.php:285 plugins/other_widget/widget-archives.php:12
328
  #: plugins/other_widget/old/widget-archive-list.php:12
329
  msgid ""
330
  "Displays a list of archives. You can choose the post type and also to "
331
  "display archives by month or by year."
332
  msgstr ""
333
 
334
+ #: vkExUnit_admin.php:300
335
  msgid "CSS customize"
336
  msgstr ""
337
 
338
+ #: vkExUnit_admin.php:312
339
  msgid "You can set Customize CSS."
340
  msgstr ""
341
 
342
+ #: vkExUnit_admin.php:321 vkExUnit_admin.php:326
343
  msgid "Automatic Eye Catch insert"
344
  msgstr ""
345
 
346
+ #: vkExUnit_admin.php:330
347
  msgid "Display Eye Catch image at before content."
348
  msgstr ""
349
 
350
+ #: vkExUnit_admin.php:341 vkExUnit_admin.php:346 plugins/insert_ads.php:37
351
+ #: plugins/insert_ads.php:101
352
+ msgid "Insert ads"
353
+ msgstr ""
354
+
355
+ #: vkExUnit_admin.php:354
356
+ msgid "Insert ads to content."
357
+ msgstr ""
358
+
359
+ #: plugins/auto_eyecatch.php:41
360
  msgid "Automatic EyeCatch"
361
  msgstr ""
362
 
363
+ #: plugins/auto_eyecatch.php:51
364
  msgid "Do not set eyecatch image automatic."
365
  msgstr ""
366
 
367
+ #: plugins/dashboard_info_widget.php:18
368
+ msgid "News from VK All in One Expansion Unit"
369
+ msgstr ""
370
+
371
+ #: plugins/footer_copyright_change.php:6
372
+ msgid ""
373
+ "<p>Powered by <a href=\"https://wordpress.org/\">WordPress</a> with <a href="
374
+ "\"//lightning.bizvektor.com\" target=\"_blank\" title=\"Free WordPress Theme "
375
+ "Lightning\"> Lightning Theme</a> &amp; <a href=\"http://ex-unit.bizvektor."
376
+ "com/\" target=\"_blank\">VK All in One Expansion Unit</a> by <a href="
377
+ "\"http://www.vektor-inc.co.jp\" target=\"_blank\">Vektor,Inc.</a> technology."
378
+ "</p>"
379
+ msgstr ""
380
+
381
+ #: plugins/icons.php:35 plugins/icons.php:63
382
  msgid "icon setting"
383
  msgstr ""
384
 
385
+ #: plugins/icons.php:68
386
  msgid "Favicon Setting"
387
  msgstr ""
388
 
389
+ #: plugins/icons.php:70
390
  msgid "Choose icon"
391
  msgstr ""
392
 
393
+ #: plugins/icons.php:71
394
  msgid "Please upload your \".ico\" file"
395
  msgstr ""
396
 
397
+ #: plugins/insert_ads.php:104
398
+ msgid "Insert ads to post."
399
+ msgstr ""
400
+
401
+ #: plugins/insert_ads.php:106
402
+ msgid "Insert ads to more tag and after content."
403
+ msgstr ""
404
+
405
+ #: plugins/insert_ads.php:106
406
+ msgid "If you want to separate ads area, you fill two fields."
407
+ msgstr ""
408
+
409
+ #: plugins/insert_ads.php:108
410
+ msgid "insert the ad [ more tag ]"
411
+ msgstr ""
412
+
413
+ #: plugins/insert_ads.php:116
414
+ msgid "insert the ad [ after content ]"
415
+ msgstr ""
416
+
417
+ #: plugins/meta_description.php:21 plugins/meta_description.php:32
418
+ #: plugins/meta_description.php:35
419
+ msgid "Meta Description"
420
+ msgstr ""
421
+
422
+ #: plugins/meta_description.php:38
423
+ msgid ""
424
+ "What you have to complete the \"excerpt\" column of the edit screen of each "
425
+ "page will be reflected in the description of the meta tag."
426
+ msgstr ""
427
+
428
+ #: plugins/meta_description.php:39
429
+ msgid ""
430
+ "Description of meta tags in the search results screen of search sites such "
431
+ "as Google, will be Displayed, such as the bottom of the site title. If the "
432
+ "excerpt column is blank, is 240 characters than text beginning of a sentence "
433
+ "has become a specification that is applied as a description."
434
+ msgstr ""
435
+
436
+ #: plugins/meta_description.php:40
437
+ msgid ""
438
+ "The meta description of the top page is subject to the catchphrase of the "
439
+ "site. However, its contents will be reflected if the excerpt is entered in "
440
+ "fixed page that was set on the top page."
441
+ msgstr ""
442
+
443
+ #: plugins/meta_description.php:41
444
+ msgid ""
445
+ "If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
446
+ "each article edit page, and check the expert column display."
447
+ msgstr ""
448
+
449
+ #: plugins/meta_keyword.php:37 plugins/meta_keyword.php:86
450
+ #: plugins/meta_keyword.php:88 plugins/meta_keyword.php:89
451
+ #: plugins/meta_keyword.php:95
452
+ msgid "Meta Keywords"
453
+ msgstr ""
454
+
455
+ #: plugins/meta_keyword.php:63
456
+ msgid "Meta Keyword"
457
+ msgstr ""
458
+
459
+ #: plugins/meta_keyword.php:66
460
+ msgid "Common Keywords"
461
+ msgstr ""
462
+
463
+ #: plugins/meta_keyword.php:67
464
+ msgid ""
465
+ "Keywords for meta tag. This words will set Meta Keyword with post keywords. "
466
+ "if you want multiple keywords, enter with separator of \",\"."
467
+ msgstr ""
468
+
469
+ #: plugins/meta_keyword.php:70
470
+ msgid "This is not seriously, Because the SearchEngine does not care this."
471
+ msgstr ""
472
+
473
+ #: plugins/meta_keyword.php:71
474
+ msgid ""
475
+ "For each page individual keyword is enter at the edit screen of each "
476
+ "article. 10 keywords maximum, together with a each article keywords is "
477
+ "desirable."
478
+ msgstr ""
479
+
480
+ #: plugins/meta_keyword.php:72
481
+ msgid "\",\" separator at end of the last keyword is do not need."
482
+ msgstr ""
483
+
484
+ #: plugins/meta_keyword.php:73
485
+ msgid "Example: WordPress,template,theme,free,GPL"
486
+ msgstr ""
487
+
488
+ #: plugins/meta_keyword.php:96
489
+ msgid ""
490
+ "To distinguish between individual keywords, please enter a , delimiter "
491
+ "(optional)."
492
+ msgstr ""
493
+
494
+ #: plugins/meta_keyword.php:98
495
+ #, php-format
496
+ msgid "* keywords common to the entire site can be set from %s."
497
+ msgstr ""
498
+
499
+ #: plugins/news_from_exUnit.php:38
500
+ msgid "Sorry, there is no post"
501
+ msgstr ""
502
+
503
  #: plugins/page_custom_field.php:12
504
  msgid "Setting of insert items"
505
  msgstr ""
582
  msgid "To output both types"
583
  msgstr ""
584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
  #: plugins/other_widget/widget-3pr-area.php:11
586
  msgid "Displays a 3PR area"
587
  msgstr ""
612
  #: plugins/other_widget/widget-3pr-area.php:49
613
  #: plugins/other_widget/widget-3pr-area.php:102
614
  #: plugins/other_widget/widget-3pr-area.php:154
615
+ #: plugins/other_widget/widget-new-posts.php:92
616
  #: plugins/other_widget/widget-profile.php:39
617
  #: plugins/sns/function_fbPagePlugin.php:75
618
  msgid "Title:"
693
 
694
  #: plugins/other_widget/widget-new-posts.php:13
695
  #: plugins/other_widget/widget-new-posts.php:23
696
+ #: plugins/other_widget/widget-new-posts.php:82
697
  msgid "Recent Posts"
698
  msgstr ""
699
 
700
+ #: plugins/other_widget/widget-new-posts.php:97
701
  msgid "Display count"
702
  msgstr ""
703
 
704
+ #: plugins/other_widget/widget-new-posts.php:102
705
  msgid "Slug for the custom type you want to display"
706
  msgstr ""
707
 
708
+ #: plugins/other_widget/widget-new-posts.php:107
709
+ msgid "taxonomy ID"
710
+ msgstr ""
711
+
712
+ #: plugins/other_widget/widget-new-posts.php:109
713
+ msgid "if you need filtering by term, add the term ID separate by \",\"."
714
+ msgstr ""
715
+
716
+ #: plugins/other_widget/widget-new-posts.php:111
717
+ msgid "if empty this area, I will do not filtering."
718
+ msgstr ""
719
+
720
  #: plugins/other_widget/widget-page.php:11
721
  msgid "Displays a page contents to widget."
722
  msgstr ""
906
  msgid "Show Page Posts"
907
  msgstr ""
908
 
909
+ #: plugins/sns/function_follow.php:16
910
  msgid "Follow me"
911
  msgstr ""
912
 
913
+ #: plugins/sns/function_meta_box.php:28
914
+ msgid "Sns Title"
915
+ msgstr ""
916
+
917
+ #: plugins/sns/function_meta_box.php:39
918
+ msgid "if filled this area then override title of OGP and Twitter Card"
919
+ msgstr ""
920
+
921
  #: plugins/sns/sns.php:17
922
  msgid "SNS"
923
  msgstr ""
1016
  msgid "Print the Follow me box"
1017
  msgstr ""
1018
 
1019
+ #: plugins/sns/sns_admin.php:64
1020
+ msgid "Follow me box title"
1021
+ msgstr ""
1022
+
1023
  #: plugins/sns/old/sns.php:378
1024
  msgid "* It is necessary to set the Theme options page."
1025
  msgstr ""
plugins/auto_eyecatch.php CHANGED
@@ -1,4 +1,13 @@
1
  <?php
 
 
 
 
 
 
 
 
 
2
 
3
  class vExUnit_eyecatch {
4
  private static $instance;
@@ -102,9 +111,7 @@ class vExUnit_eyecatch {
102
 
103
  $image_tag = get_the_post_thumbnail( $post_id, 'large' );
104
 
105
- $html = <<<EOF
106
- <div class="autoEyeCatchBox">{$image_tag}</div>
107
- EOF;
108
  return $html;
109
  }
110
 
1
  <?php
2
+ /**
3
+ * VkExUnit auto_eyecatch.php
4
+ * insert thumbnail for top of content automatically
5
+ *
6
+ * @package VkExUnit
7
+ * @author shoji imamura<imamura@vektor-inc.co.jp>
8
+ * @version 0.1.2.0
9
+ * @since 8/Jul/2015
10
+ */
11
 
12
  class vExUnit_eyecatch {
13
  private static $instance;
111
 
112
  $image_tag = get_the_post_thumbnail( $post_id, 'large' );
113
 
114
+ $html = '<div class="autoEyeCatchBox">' . $image_tag . '</div>';
 
 
115
  return $html;
116
  }
117
 
plugins/dashboard_info_widget.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*--------------------------------------------------*/
3
+ /* Display a Ex_unit information on the dashboard
4
+ /*--------------------------------------------------*/
5
+
6
+ add_filter('vkExUnit_is_plugin_dashboard_info_widget', 'vkExUnit_dash_beacon', 10, 1 );
7
+ function vkExUnit_dash_beacon($flag){
8
+ $flag = true;
9
+ return $flag;
10
+ }
11
+
12
+ add_action( 'wp_dashboard_setup', 'vkExUnit_dashboard_widget' );
13
+
14
+ function vkExUnit_dashboard_widget()
15
+ {
16
+ wp_add_dashboard_widget(
17
+ 'vkExUnit_dashboard_widget',
18
+ __('News from VK All in One Expansion Unit','vkExUnit'),
19
+ 'vkExUnit_news_body'
20
+ );
21
+ }
plugins/footer_copyright_change.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ add_filter('lightning_footerPoweredCustom','vkExUnit_lightning_footerPoweredCustom');
3
+ function vkExUnit_lightning_footerPoweredCustom($lightning_footerPowered){
4
+ // Powered
5
+ /*------------------*/
6
+ $lightning_footerPowered = __( '<p>Powered by <a href="https://wordpress.org/">WordPress</a> with <a href="//lightning.bizvektor.com" target="_blank" title="Free WordPress Theme Lightning"> Lightning Theme</a> &amp; <a href="http://ex-unit.bizvektor.com/" target="_blank">VK All in One Expansion Unit</a> by <a href="http://www.vektor-inc.co.jp" target="_blank">Vektor,Inc.</a> technology.</p>','vkExUnit');
7
+ return $lightning_footerPowered;
8
+
9
+ }
plugins/icons.php CHANGED
@@ -1,4 +1,13 @@
1
  <?php
 
 
 
 
 
 
 
 
 
2
 
3
  class vExUnit_icons {
4
  // singleton instance
@@ -63,7 +72,7 @@ class vExUnit_icons {
63
  </td>
64
  </tr>
65
  </table>
66
- <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="変更を保存" /></p>
67
  </div>
68
  <?php
69
  }
1
  <?php
2
+ /**
3
+ * VkExUnit icons.php
4
+ * set favicon tag of user uploaded icon
5
+ *
6
+ * @package VkExUnit
7
+ * @author shoji imamura<imamura@vektor-inc.co.jp>
8
+ * @version 0.1.2.0
9
+ * @since 8/Jul/2015
10
+ */
11
 
12
  class vExUnit_icons {
13
  // singleton instance
72
  </td>
73
  </tr>
74
  </table>
75
+ <?php submit_button(); ?>
76
  </div>
77
  <?php
78
  }
plugins/insert_ads.php ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * VkExUnit ad.php
4
+ * insert ads for Content.
5
+ *
6
+ * @package VkExUnit
7
+ * @author shoji imamura<imamura@vektor-inc.co.jp>
8
+ * @version 1.0.0
9
+ * @since 30/Jul/2015
10
+ */
11
+
12
+ class vExUnit_Ads {
13
+ // singleton instance
14
+ private static $instance;
15
+
16
+ public static function instance() {
17
+ if ( isset( self::$instance ) )
18
+ return self::$instance;
19
+
20
+ self::$instance = new vExUnit_Ads;
21
+ self::$instance->run_init();
22
+ return self::$instance;
23
+ }
24
+
25
+ private function __construct() {
26
+ }
27
+
28
+
29
+ protected function run_init() {
30
+ add_action('admin_init', array($this, 'option_init' ));
31
+ add_filter('the_content', array($this, 'set_content' ), 1);
32
+ }
33
+
34
+
35
+ public function option_init() {
36
+ vkExUnit_register_setting(
37
+ __('Insert ads', 'vkExUnit'), // tab label.
38
+ 'vkExUnit_Ads', // name attr
39
+ array( $this, 'sanitize_config' ), // sanitaise function name
40
+ array( $this, 'render_configPage' ) // setting_page function name
41
+ );
42
+ }
43
+
44
+
45
+ public function set_content($content){
46
+ $option = $this->get_option();
47
+
48
+ $content = preg_replace('/(<span id="more-[0-9]+"><\/span>)/', '$1'.$this->render_ad($option['more']) , $content);
49
+
50
+ $content .= $this->render_ad($option['after'],'after');
51
+
52
+ return $content;
53
+ }
54
+
55
+
56
+ private function render_ad( $ads ,$area='more'){
57
+ if( !$ads[0] ) return '';
58
+ $class = "col-md-12";
59
+ if( $ads[1] ) $class="col-md-6";
60
+
61
+ $content = '';
62
+ $content .= '<div class="row vkExUnit_AdWord '.$area.'">';
63
+ foreach($ads as $ad){
64
+ if(!$ad) break;
65
+
66
+ $content .= '<div class="'.$class.'">';
67
+ $content .= $ad;
68
+ $content .= '</div>';
69
+ }
70
+ $content .= '</div>';
71
+
72
+ return $content;
73
+ }
74
+
75
+
76
+ public function sanitize_config( $option ){
77
+ if( !$option['more'][0] && $option['more'][1] ){
78
+ $option['more'][0] = $option['more'][1];
79
+ $option['more'][1] = '';
80
+ }
81
+ if( !$option['more'][1] ) unset( $option['more'][1] );
82
+
83
+ if( !$option['after'][0] && $option['after'][1] ){
84
+ $option['after'][0] = $option['after'][1];
85
+ $option['after'][1] = '';
86
+ }
87
+ if( !$option['after'][1] ) unset( $option['more'][1] );
88
+
89
+ return $option;
90
+ }
91
+
92
+
93
+ public static function get_option(){
94
+ return get_option( 'vkExUnit_Ads', array('more'=>array(''),'after'=>array('')) );
95
+ }
96
+
97
+
98
+ public function render_configPage(){
99
+ $option = $this->get_option();
100
+ ?>
101
+ <h3><?php _e('Insert ads', 'vkExUnit'); ?></h3>
102
+ <div id="vkExUnit_Ads" class="sectionBox">
103
+ <table class="form-table">
104
+ <tr><th><?php _e('Insert ads to post.', 'vkExUnit'); ?>
105
+ </th><td style="max-width:80em;">
106
+ <?php _e('Insert ads to more tag and after content.', 'vkExUnit'); ?><br/><?php _e('If you want to separate ads area, you fill two fields.', 'vkExUnit'); ?>
107
+ <dl>
108
+ <dt><label for="ad_content_moretag"><?php _e('insert the ad [ more tag ]', 'vkExUnit'); ?></label></dt>
109
+ <dd>
110
+ <textarea rows="5" name="vkExUnit_Ads[more][]" id="ad_content_moretag" value="" style="width:100%;max-width:50em;" /><?php echo (isset( $option['more'][0] ) && $option['more'][0] )? $option['more'][0]: ''; ?></textarea>
111
+ <br/>
112
+ <textarea rows="5" name="vkExUnit_Ads[more][]" value="" style="width:100%;max-width:50em;" /><?php echo (isset( $option['more'][1] ) && $option['more'][1] )? $option['more'][1]: ''; ?></textarea>
113
+ </dd>
114
+ </dl>
115
+ <dl>
116
+ <dt><label for="ad_content_after"><?php _e('insert the ad [ after content ]', 'vkExUnit'); ?></label></dt>
117
+ <dd>
118
+ <textarea rows="5" name="vkExUnit_Ads[after][]" id="ad_content_after" value="" style="width:100%;max-width:50em;" /><?php echo (isset( $option['after'][0] ) && $option['after'][0] )? $option['after'][0]: ''; ?></textarea>
119
+ <br/>
120
+ <textarea rows="5" name="vkExUnit_Ads[after][]" value="" style="width:100%;max-width:50em;" /><?php echo (isset( $option['after'][1] ) && $option['after'][1] )? $option['after'][1]: ''; ?></textarea>
121
+ </dd>
122
+ </dl>
123
+ </td></tr></table>
124
+ <?php submit_button(); ?>
125
+ </div>
126
+ <?php
127
+ }
128
+
129
+ }
130
+
131
+ vExUnit_Ads::instance();
plugins/meta_description.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * VkExUnit meta_discription.php
4
+ * Set meta tag of description for single page each
5
+ *
6
+ * @package VkExUnit
7
+ * @author shoji imamura<imamura@vektor-inc.co.jp>
8
+ * @version 0.0.0.0
9
+ * @since 26/Jun/2015
10
+ */
11
+
12
+ // Public post type auto support
13
+ $postTypes = get_post_types(Array('public' => true));
14
+
15
+ foreach ($postTypes as $postType) {
16
+ add_post_type_support( $postType, 'excerpt' );
17
+ } // foreach ($postTypes as $postType) {
18
+
19
+ function vkExUnit_description_options_init() {
20
+ vkExUnit_register_setting(
21
+ __('Meta Description', 'vkExUnit'), // tab label.
22
+ 'vkExUnit_description_options', // name attr
23
+ false, // sanitaise function name
24
+ 'vkExUnit_add_description_options_page' // setting_page function name
25
+ );
26
+ }
27
+ add_action( 'admin_init', 'vkExUnit_description_options_init' );
28
+
29
+
30
+ function vkExUnit_add_description_options_page(){
31
+ ?>
32
+ <h3><?php _e('Meta Description', 'vkExUnit'); ?></h3>
33
+ <div id="meta_description" class="sectionBox">
34
+ <table class="form-table">
35
+ <tr><th><?php _e('Meta Description','vkExUnit');?></th>
36
+ <td>
37
+
38
+ <?php _e('What you have to complete the "excerpt" column of the edit screen of each page will be reflected in the description of the meta tag.','vkExUnit') ?><br/>
39
+ <?php _e('Description of meta tags in the search results screen of search sites such as Google, will be Displayed, such as the bottom of the site title. If the excerpt column is blank, is 240 characters than text beginning of a sentence has become a specification that is applied as a description.','vkExUnit') ?><br/>
40
+ <?php _e('The meta description of the top page is subject to the catchphrase of the site. However, its contents will be reflected if the excerpt is entered in fixed page that was set on the top page.','vkExUnit') ?><br/>
41
+ * <?php _e('If "excerpt" column is not found, Click "Display Option" of page top at each article edit page, and check the expert column display.','vkExUnit') ?><br/>
42
+ </td></tr>
43
+ </table>
44
+ </div>
45
+ <?php
46
+ }
47
+
48
+
49
+ /*-------------------------------------------*/
50
+ /* head_description
51
+ /*-------------------------------------------*/
52
+ add_filter( 'wp_head', 'vkExUnit_render_HeadDescription', 5 );
53
+ function vkExUnit_render_HeadDescription() {
54
+
55
+ echo '<meta name="description" content="' . vkExUnit_get_pageDescription() . '" />';
56
+ }
plugins/meta_keyword.php ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * VkExUnit meta_keyword.php
4
+ * Set meta tag of keyword for single page each
5
+ *
6
+ * @package VkExUnit
7
+ * @author shoji imamura<imamura@vektor-inc.co.jp>
8
+ * @version 0.0.0.0
9
+ * @since 26/Jun/2015
10
+ */
11
+
12
+ class vExUnit_meta_keywords {
13
+ // singleton instance
14
+ private static $instance;
15
+
16
+ public static function instance() {
17
+ if ( isset( self::$instance ) )
18
+ return self::$instance;
19
+
20
+ self::$instance = new vExUnit_meta_keywords;
21
+ self::$instance->run_init();
22
+ return self::$instance;
23
+ }
24
+
25
+ private function __construct() {
26
+ }
27
+
28
+ protected function run_init() {
29
+ add_action('admin_init', array($this, 'option_init' ));
30
+ add_action('admin_menu', array($this, 'add_custom_field'));
31
+ add_action('save_post' , array($this, 'save_custom_field'));
32
+ add_action('wp_head', array($this, 'set_HeadKeywords' ), 1);
33
+ }
34
+
35
+ public function option_init() {
36
+ vkExUnit_register_setting(
37
+ __('Meta Keywords', 'vkExUnit'), // tab label.
38
+ 'vkExUnit_common_keywords', // name attr
39
+ array( $this, 'sanitize_config' ), // sanitaise function name
40
+ array( $this, 'render_configPage' ) // setting_page function name
41
+ );
42
+ }
43
+
44
+ public function get_default_option(){
45
+ $option = '';
46
+ return $option;
47
+ }
48
+
49
+ public function sanitize_config( $option ){
50
+ $option = preg_replace('/^,*(.+)$/', '$1', $option);
51
+ $option = preg_replace('/,*$/', '', $option);
52
+ return $option;
53
+ }
54
+
55
+
56
+ public static function get_option(){
57
+ return get_option( 'vkExUnit_common_keywords', '' );
58
+ }
59
+
60
+
61
+ public function render_configPage(){
62
+ ?>
63
+ <h3><?php _e('Meta Keyword', 'vkExUnit'); ?></h3>
64
+ <div id="meta_keyword" class="sectionBox">
65
+ <table class="form-table">
66
+ <tr><th><?php _e('Common Keywords','vkExUnit'); ?></th>
67
+ <td><?php _e('Keywords for meta tag. This words will set Meta Keyword with post keywords. if you want multiple keywords, enter with separator of ",".','vkExUnit'); ?><br />
68
+ <input type="text" name="vkExUnit_common_keywords" id="commonKeyWords" value="<?php echo self::get_option(); ?>" style="width:90%;" /><br />
69
+
70
+ * <?php _e('This is not seriously, Because the SearchEngine does not care this.','vkExUnit') ?><br/>
71
+ * <?php _e('For each page individual keyword is enter at the edit screen of each article. 10 keywords maximum, together with a each article keywords is desirable.','vkExUnit') ?><br/>
72
+ * <?php _e('"," separator at end of the last keyword is do not need.','vkExUnit') ?><br/>
73
+ <?php _e('Example: WordPress,template,theme,free,GPL','vkExUnit'); ?></td></tr>
74
+ </table>
75
+ <?php submit_button(); ?>
76
+ </div>
77
+ <?php
78
+ }
79
+
80
+
81
+ public function add_custom_field(){
82
+ $post_types = get_post_types(array(),'objects');
83
+ foreach($post_types as $post){
84
+ if($post->_builtin) continue;
85
+ if(!$post->public) continue;
86
+ add_meta_box('div1', __('Meta Keywords', 'vkExUnit'), array( $this, 'render_meta_box' ), $post->name, 'normal', 'high');
87
+ }
88
+ add_meta_box('div1', __('Meta Keywords', 'vkExUnit'), array( $this, 'render_meta_box' ), 'page', 'normal', 'high');
89
+ add_meta_box('div1', __('Meta Keywords', 'vkExUnit'), array( $this, 'render_meta_box' ), 'post', 'normal', 'high');
90
+ }
91
+
92
+ public function render_meta_box(){
93
+ global $post;
94
+ echo '<input type="hidden" name="_nonce_vkExUnit__custom_field_metaKeyword" id="_nonce_vkExUnit__custom_field_metaKeyword" value="'.wp_create_nonce(plugin_basename(__FILE__)).'" />';
95
+ echo '<label class="hidden" for="vkExUnit_metaKeyword">'.__('Meta Keywords', 'biz-vektor').'</label><input type="text" id="vkExUnit_metaKeyword" name="vkExUnit_metaKeyword" size="50" value="'.get_post_meta($post->ID, 'vkExUnit_metaKeyword', true).'" />';
96
+ echo '<p>'.__('To distinguish between individual keywords, please enter a , delimiter (optional).', 'vkExUnit').'<br />';
97
+ $theme_option_seo_link = '<a href="'.get_admin_url().'/admin.php?page=vkExUnit_main_setting#vkExUnit_common_keywords" target="_blank">'.vkExUnit_get_name().' '.__('Main setting', 'vkExUnit').'</a>';
98
+ echo sprintf(__('* keywords common to the entire site can be set from %s.', 'vkExUnit'),$theme_option_seo_link);
99
+ echo '</p>';
100
+ }
101
+
102
+ public function save_custom_field($post_id){
103
+ $metaKeyword = isset($_POST['_nonce_vkExUnit__custom_field_metaKeyword']) ? htmlspecialchars($_POST['_nonce_vkExUnit__custom_field_metaKeyword']) : null;
104
+
105
+ // if autosave is to deny
106
+ if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
107
+ return $post_id;
108
+
109
+ if(!wp_verify_nonce($metaKeyword, plugin_basename(__FILE__))){
110
+ return $post_id;
111
+ }
112
+ if('page' == $_POST['vkExUnit_metaKeyword']){
113
+ if(!current_user_can('edit_page', $post_id)) return $post_id;
114
+ }else{
115
+ if(!current_user_can('edit_post', $post_id)) return $post_id;
116
+ }
117
+
118
+ $data = $_POST['vkExUnit_metaKeyword'];
119
+
120
+ if(get_post_meta($post_id, 'vkExUnit_metaKeyword') == ""){
121
+ add_post_meta($post_id, 'vkExUnit_metaKeyword', $data, true);
122
+ }elseif($data != get_post_meta($post_id, 'vkExUnit_metaKeyword', true)){
123
+ update_post_meta($post_id, 'vkExUnit_metaKeyword', $data);
124
+ }elseif($data == ""){
125
+ delete_post_meta($post_id, 'vkExUnit_metaKeyword', get_post_meta($post_id, 'vkExUnit_metaKeyword', true));
126
+ }
127
+ }
128
+
129
+ public function get_postKeyword(){
130
+ $post_id = get_the_id();
131
+
132
+ if(empty($post_id))
133
+ return null;
134
+
135
+ $keyword = get_post_meta($post_id, 'vkExUnit_metaKeyword', true);
136
+ return $keyword;
137
+ }
138
+
139
+ public function set_HeadKeywords(){
140
+ $commonKeyWords = self::get_option();
141
+ // get custom field
142
+ $entryKeyWords = self::get_postKeyword();
143
+ $keywords = array();
144
+ if($commonKeyWords){ $keywords[] = $commonKeyWords; }
145
+ if($entryKeyWords){ $keywords[] = $entryKeyWords; }
146
+ $key = implode( ',', $keywords);
147
+ // print individual keywords
148
+ if(!$key){ return; }
149
+ echo '<meta name="keywords" content="' . $key. '" />'."\n";
150
+ }
151
+
152
+ }
153
+
154
+ vExUnit_meta_keywords::instance();
plugins/news_from_exUnit.php ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function vkExUnit_news_body()
3
+ {
4
+
5
+ include_once(ABSPATH . WPINC . '/feed.php');
6
+
7
+ if ( 'ja' == get_locale() ) {
8
+ $exUnit_feed_url = 'http://ex-unit.bizvektor.com/ja/?feed';
9
+ } else {
10
+ $exUnit_feed_url = 'http://ex-unit.bizvektor.com/?feed';
11
+ }
12
+
13
+ $my_feeds = array(
14
+ array('feed_url' => $exUnit_feed_url)
15
+ );
16
+
17
+
18
+ foreach ( $my_feeds as $feed )
19
+ {
20
+ $rss = fetch_feed( $feed["feed_url"] );
21
+
22
+ if ( !is_wp_error($rss) )
23
+ {
24
+ $output = '';
25
+
26
+ $maxitems = $rss->get_item_quantity( 5 ); //number of news to display (maximum)
27
+ $rss_items = $rss->get_items( 0, $maxitems );
28
+
29
+ $output .= '<div class="rss-widget">';
30
+
31
+ $output .= '<div class="logo_exUnit">';
32
+ $output .= '<img src="'.site_url().'/wp-content/plugins/vk-all-in-one-expansion-unit/images/head_logo_ExUnit.png'.'" alt="VK ExUnit" style="width:200px;" /></div>';
33
+ $output .= '<ul>';
34
+
35
+ if ( $maxitems == 0 )
36
+ {
37
+ $output .= '<li>';
38
+ $output .= __('Sorry, there is no post', 'vkExUnit');
39
+ $output .= '</li>';
40
+ }
41
+ else
42
+ {
43
+ foreach ( $rss_items as $item )
44
+ {
45
+ $test_date = $item->get_local_date();
46
+ $content = $item->get_content();
47
+
48
+ if( isset($test_date) && !is_null($test_date) )
49
+ $item_date = $item->get_date( get_option('date_format') ) . '<br />';
50
+ else
51
+ $item_date = '';
52
+
53
+ $output .= '<li style="color:#777;">';
54
+ $output .= $item_date;
55
+ $output .= '<a href="' . esc_url( $item->get_permalink() ) . '" title="' . $item_date . '">';
56
+ $output .= esc_html( $item->get_title() );
57
+ $output .= '</a>';
58
+ $output .= '</li>';
59
+ }
60
+ }
61
+
62
+ $output .= '</ul>';
63
+ $output .= '</div>';
64
+
65
+ echo $output;
66
+ }
67
+ }
68
+ }
plugins/other_widget/widget-new-posts.php CHANGED
@@ -15,7 +15,7 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
15
  }
16
 
17
  function widget($args, $instance) {
18
- echo '<aside class="widget">';
19
  echo '<h1 class="widget-title subSection-title">';
20
  if ( isset($instance['label']) && $instance['label'] ) {
21
  echo $instance['label'];
@@ -27,11 +27,27 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
27
  $count = ( isset($instance['count']) && $instance['count'] ) ? $instance['count'] : 10;
28
  $post_type = ( isset($instance['post_type']) && $instance['post_type'] ) ? $instance['post_type'] : 'post';
29
 
30
- $post_loop = new WP_Query( array(
31
  'post_type' => $post_type,
32
  'posts_per_page' => $count,
33
  'paged' => 1,
34
- ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  if ($post_loop->have_posts()):
37
  while ( $post_loop->have_posts() ) : $post_loop->the_post(); ?>
@@ -64,7 +80,8 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
64
  $defaults = array(
65
  'count' => 10,
66
  'label' => __('Recent Posts', 'vkExUnit' ),
67
- 'post_type' => 'post'
 
68
  );
69
 
70
  $instance = wp_parse_args((array) $instance, $defaults);
@@ -74,18 +91,25 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
74
  <?php //タイトル ?>
75
  <label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:'); ?></label><br/>
76
  <input type="text" id="<?php echo $this->get_field_id('label'); ?>-title" name="<?php echo $this->get_field_name('label'); ?>" value="<?php echo $instance['label']; ?>" />
77
- <br/>
78
 
79
  <?php //表示件数 ?>
80
  <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e('Display count','vkExUnit'); ?>:</label><br/>
81
  <input type="text" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" value="<?php echo $instance['count']; ?>" />
82
- <br />
83
 
84
  <?php //投稿タイプ ?>
85
  <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Slug for the custom type you want to display', 'vkExUnit') ?>:</label><br />
86
  <input type="text" id="<?php echo $this->get_field_id('post_type'); ?>" name="<?php echo $this->get_field_name('post_type'); ?>" value="<?php echo esc_attr($instance['post_type']) ?>" />
87
-
88
- <?php
 
 
 
 
 
 
 
89
  }
90
 
91
  function update ($new_instance, $old_instance) {
@@ -95,6 +119,7 @@ class WP_Widget_vkExUnit_post_list extends WP_Widget {
95
  $instance['count'] = $new_instance['count'];
96
  $instance['label'] = $new_instance['label'];
97
  $instance['post_type'] = !empty($new_instance['post_type']) ? strip_tags($new_instance['post_type']) : 'post';
 
98
 
99
  return $instance;
100
  }
15
  }
16
 
17
  function widget($args, $instance) {
18
+ echo '<aside class="widget widget_newPosts">';
19
  echo '<h1 class="widget-title subSection-title">';
20
  if ( isset($instance['label']) && $instance['label'] ) {
21
  echo $instance['label'];
27
  $count = ( isset($instance['count']) && $instance['count'] ) ? $instance['count'] : 10;
28
  $post_type = ( isset($instance['post_type']) && $instance['post_type'] ) ? $instance['post_type'] : 'post';
29
 
30
+ $args = array(
31
  'post_type' => $post_type,
32
  'posts_per_page' => $count,
33
  'paged' => 1,
34
+ );
35
+
36
+ if(isset($instance['terms']) && $instance['terms']){
37
+ $taxonomies = get_taxonomies(array());
38
+ $args['tax_query'] = array(
39
+ 'relation' => 'OR',
40
+ );
41
+ foreach($taxonomies as $taxonomy){
42
+ $args['tax_query'][] = array(
43
+ 'taxonomy' => $taxonomy,
44
+ 'field' => 'id',
45
+ 'terms' => $instance['terms']
46
+ );
47
+ }
48
+ }
49
+ $post_loop = new WP_Query( $args );
50
+
51
 
52
  if ($post_loop->have_posts()):
53
  while ( $post_loop->have_posts() ) : $post_loop->the_post(); ?>
80
  $defaults = array(
81
  'count' => 10,
82
  'label' => __('Recent Posts', 'vkExUnit' ),
83
+ 'post_type' => 'post',
84
+ 'terms' => ''
85
  );
86
 
87
  $instance = wp_parse_args((array) $instance, $defaults);
91
  <?php //タイトル ?>
92
  <label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:'); ?></label><br/>
93
  <input type="text" id="<?php echo $this->get_field_id('label'); ?>-title" name="<?php echo $this->get_field_name('label'); ?>" value="<?php echo $instance['label']; ?>" />
94
+ <br/><br />
95
 
96
  <?php //表示件数 ?>
97
  <label for="<?php echo $this->get_field_id('count'); ?>"><?php _e('Display count','vkExUnit'); ?>:</label><br/>
98
  <input type="text" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" value="<?php echo $instance['count']; ?>" />
99
+ <br /><br />
100
 
101
  <?php //投稿タイプ ?>
102
  <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Slug for the custom type you want to display', 'vkExUnit') ?>:</label><br />
103
  <input type="text" id="<?php echo $this->get_field_id('post_type'); ?>" name="<?php echo $this->get_field_name('post_type'); ?>" value="<?php echo esc_attr($instance['post_type']) ?>" />
104
+ <br/><br/>
105
+
106
+ <?php // Terms ?>
107
+ <label for="<?php echo $this->get_field_id('terms'); ?>"><?php _e('taxonomy ID', 'vkExUnit') ?>:</label><br />
108
+ <input type="text" id="<?php echo $this->get_field_id('terms'); ?>" name="<?php echo $this->get_field_name('terms'); ?>" value="<?php echo esc_attr($instance['terms']) ?>" /><br />
109
+ <?php _e('if you need filtering by term, add the term ID separate by ",".', 'vkExUnit');
110
+ echo "<br/>";
111
+ _e('if empty this area, I will do not filtering.', 'vkExUnit');
112
+ echo "<br/><br/>";
113
  }
114
 
115
  function update ($new_instance, $old_instance) {
119
  $instance['count'] = $new_instance['count'];
120
  $instance['label'] = $new_instance['label'];
121
  $instance['post_type'] = !empty($new_instance['post_type']) ? strip_tags($new_instance['post_type']) : 'post';
122
+ $instance['terms'] = preg_replace('/([^0-9,]+)/', '', $new_instance['terms']);
123
 
124
  return $instance;
125
  }
plugins/other_widget/widget-profile.php CHANGED
@@ -138,7 +138,7 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
138
 
139
  function widget($args, $instance) {
140
  // From here Display a widget
141
- echo PHP_EOL.'<aside class="widget">'.PHP_EOL;
142
 
143
  if ( isset($instance['label']) && $instance['label'] ) {
144
  echo '<h3 class="widget-title subSection-title">';
138
 
139
  function widget($args, $instance) {
140
  // From here Display a widget
141
+ echo PHP_EOL.'<aside class="widget widget_profile">'.PHP_EOL;
142
 
143
  if ( isset($instance['label']) && $instance['label'] ) {
144
  echo '<h3 class="widget-title subSection-title">';
plugins/sns/function_follow.php CHANGED
@@ -1,24 +1,46 @@
1
  <?php
2
 
3
- add_filter( 'the_content', 'vkExUnit_add_follow');
4
- // is_single()
5
 
6
  function vkExUnit_add_follow($content){
7
- if (is_single()) :
8
- $options = vkExUnit_get_sns_options();
9
- if(!$options['enableFollowMe']){ return $content; }
10
-
11
- $title = __('Follow me','vkExUnit').'!';
12
- $title = apply_filters( 'vkExUnit_followMe_title', $title );
13
-
14
- // https://about.twitter.com/resources/buttons#follow
15
- $follow_html = '<div class="followSet vkContentAddSection">'."\n";
16
- $follow_html .= '<h3 class="followSet_title">'.$title.'</h3>';
17
- $follow_html .= '<div class="follow_btn fb-like" data-href="'.esc_url( $options['fbPageUrl'] ).'" data-layout="button" data-action="like" data-show-faces="false" data-share="true"></div>'."\n";
18
- $follow_html .= '<div class="follow_btn follow_twitter"><a href="https://twitter.com/'.esc_html( $options['twitterId'] ).'" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="false">@'.esc_html( $options['twitterId'] ).'</a></div>'."\n";
19
- $follow_html .= '</div><!-- [ /.followSet ] -->'."\n";
20
- $content .= $follow_html;
21
-
22
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  return $content;
24
  }
1
  <?php
2
 
3
+ add_filter( 'the_content', 'vkExUnit_add_follow');
 
4
 
5
  function vkExUnit_add_follow($content){
6
+ $postType = vkExUnit_get_post_type();
7
+
8
+ if ( is_single() && $postType['slug'] == 'post' ) :
9
+
10
+ $options = vkExUnit_get_sns_options();
11
+ if(!$options['enableFollowMe']){ return $content; }
12
+
13
+ if (isset($options['followMe_title']) && $options['followMe_title'] ) {
14
+ $title = $options['followMe_title'];
15
+ } else {
16
+ $title = __('Follow me','vkExUnit').'!';
17
+ }
18
+
19
+ // https://about.twitter.com/resources/buttons#follow
20
+ $follow_html = '';
21
+
22
+ $fbPageUrl = (isset($options['fbPageUrl'])) ? $options['fbPageUrl'] : '';
23
+ $twitterId = (isset($options['twitterId'])) ? $options['twitterId'] : '';
24
+
25
+ if ( $fbPageUrl || $twitterId ) {
26
+ $follow_html .= '<div class="followSet vkContentAddSection">'."\n";
27
+ $follow_html .= '<h3 class="followSet_title">'.$title.'</h3>';
28
+ }
29
+
30
+ if ( $fbPageUrl ) {
31
+ $follow_html .= '<div class="follow_btn fb-like" data-href="'.esc_url( $options['fbPageUrl'] ).'" data-layout="button" data-action="like" data-show-faces="false" data-share="true"></div>'."\n";
32
+ }
33
+
34
+ if ( $twitterId ) {
35
+ $follow_html .= '<div class="follow_btn follow_twitter"><a href="https://twitter.com/'.esc_html( $options['twitterId'] ).'" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="false">@'.esc_html( $options['twitterId'] ).'</a></div>'."\n";
36
+ }
37
+
38
+ if ( $fbPageUrl || $twitterId ) {
39
+ $follow_html .= '</div><!-- [ /.followSet ] -->'."\n";
40
+ }
41
+
42
+ $content .= $follow_html;
43
+
44
+ endif; // if ( $postType == 'post' && is_single() ) :
45
  return $content;
46
  }
plugins/sns/function_meta_box.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class vkExUnit_sns_metabox {
4
+
5
+ private static $instance;
6
+
7
+ public static $allowed_post_types = array( 'post', 'page' );
8
+
9
+
10
+ public static function instance() {
11
+ if ( isset( self::$instance ) )
12
+ return self::$instance;
13
+
14
+ self::$instance = new vkExUnit_sns_metabox;
15
+ self::$instance->run_init();
16
+ return self::$instance;
17
+ }
18
+
19
+
20
+ protected function run_init() {
21
+ add_action('admin_menu', array($this, 'add_custom_field'));
22
+ add_action('save_post' , array($this, 'save_custom_field'));
23
+ }
24
+
25
+
26
+ public function add_custom_field(){
27
+ foreach( self::$allowed_post_types as $post_type ){
28
+ add_meta_box('vkExUnit_SnsTitle', __('Sns Title', 'vkExUnit'), array( $this, 'render_meta_box' ), $post_type, 'normal', 'high');
29
+ }
30
+ }
31
+
32
+
33
+ public function render_meta_box(){
34
+ global $post;
35
+ $disable_autoeyecatch = get_post_meta(get_the_id(), 'vkExUnit_sns_title', true);
36
+
37
+ echo '<input type="hidden" name="_nonce_vkExUnit_sns_title" id="_nonce_vkExUnit_sns_title_noonce" value="'.wp_create_nonce(plugin_basename(__FILE__)).'" />';
38
+ echo '<input type=text name="vkExUnit_sns_title" value="'. $disable_autoeyecatch .'" size=50 />';
39
+ echo '<p>'. __('if filled this area then override title of OGP and Twitter Card', 'vkExUnit').'</p>';
40
+
41
+ }
42
+
43
+
44
+ public function save_custom_field($post_id){
45
+
46
+ $metaKeyword = isset($_POST['_nonce_vkExUnit_sns_title']) ? htmlspecialchars($_POST['_nonce_vkExUnit_sns_title']) : null;
47
+
48
+ // if autosave then deny
49
+ if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
50
+ return $post_id;
51
+
52
+ if(!wp_verify_nonce($metaKeyword, plugin_basename(__FILE__))){
53
+ return $post_id;
54
+ }
55
+
56
+ delete_post_meta($post_id, 'vkExUnit_sns_title');
57
+ if( isset($_POST['vkExUnit_sns_title']) ){
58
+ add_post_meta($post_id, 'vkExUnit_sns_title', $_POST['vkExUnit_sns_title'] );
59
+ }
60
+ }
61
+ }
62
+
63
+
64
+ vkExUnit_sns_metabox::instance();
plugins/sns/function_og.php CHANGED
@@ -8,6 +8,15 @@ add_post_type_support( 'page', 'excerpt' ); // add excerpt
8
  add_action('wp_head', 'vkExUnit_print_og',20 );
9
  function vkExUnit_print_og() {
10
 
 
 
 
 
 
 
 
 
 
11
  //$ogImage = $vkExUnit_sns_options['ogImage'];
12
  //$fbAppId = $vkExUnit_sns_options['fbAppId'];
13
  global $wp_query;
@@ -22,7 +31,7 @@ function vkExUnit_print_og() {
22
  $vkExUnitOGP = '<!-- [ '.vkExUnit_get_name().' OG ] -->'."\n";
23
  $vkExUnitOGP .= '<meta property="og:site_name" content="'.get_bloginfo('name').'" />'."\n";
24
  $vkExUnitOGP .= '<meta property="og:url" content="'.$linkUrl.'" />'."\n";
25
- $vkExUnitOGP .= '<meta property="og:title" content="'.vkExUnit_get_wp_head_title().'" />'."\n";
26
  $vkExUnitOGP .= '<meta property="og:description" content="'.vkExUnit_get_pageDescription().'" />'."\n";
27
  if (isset($vkExUnit_sns_options['fbAppId']) && $vkExUnit_sns_options['fbAppId']){
28
  $vkExUnitOGP = $vkExUnitOGP.'<meta property="fb:app_id" content="'.$vkExUnit_sns_options['fbAppId'].'" />'."\n";
8
  add_action('wp_head', 'vkExUnit_print_og',20 );
9
  function vkExUnit_print_og() {
10
 
11
+
12
+ $title = '';
13
+ if(is_single() || is_page()){
14
+ $title = get_post_meta(get_the_id(), 'vkExUnit_sns_title', true);
15
+ }
16
+ if(!$title){
17
+ $title = vkExUnit_get_wp_head_title();
18
+ }
19
+
20
  //$ogImage = $vkExUnit_sns_options['ogImage'];
21
  //$fbAppId = $vkExUnit_sns_options['fbAppId'];
22
  global $wp_query;
31
  $vkExUnitOGP = '<!-- [ '.vkExUnit_get_name().' OG ] -->'."\n";
32
  $vkExUnitOGP .= '<meta property="og:site_name" content="'.get_bloginfo('name').'" />'."\n";
33
  $vkExUnitOGP .= '<meta property="og:url" content="'.$linkUrl.'" />'."\n";
34
+ $vkExUnitOGP .= '<meta property="og:title" content="'.$title.'" />'."\n";
35
  $vkExUnitOGP .= '<meta property="og:description" content="'.vkExUnit_get_pageDescription().'" />'."\n";
36
  if (isset($vkExUnit_sns_options['fbAppId']) && $vkExUnit_sns_options['fbAppId']){
37
  $vkExUnitOGP = $vkExUnitOGP.'<meta property="fb:app_id" content="'.$vkExUnit_sns_options['fbAppId'].'" />'."\n";
plugins/sns/function_snsBtns.php CHANGED
@@ -16,7 +16,13 @@ function vkExUnit_add_snsBtns($content){
16
  } else {
17
  $linkUrl = get_permalink();
18
  }
19
- $pageTitle = urlencode(vkExUnit_get_wp_head_title());
 
 
 
 
 
 
20
  $socialSet = '<div class="socialSet vkContentAddSection"><ul>';
21
  // facebook
22
  $socialSet .= '<li class="sb_facebook sb_icon"><a href="http://www.facebook.com/sharer.php?src=bm&u='.$linkUrl.'&amp;t='.$pageTitle.'" target="_blank"" ><span class="vk_icon_w_r_sns_fb icon_sns"></span><span class="sns_txt">Facebook</span></a></li>';
16
  } else {
17
  $linkUrl = get_permalink();
18
  }
19
+ $pageTitle = '';
20
+ if(is_single() || is_page()){
21
+ $pageTitle = get_post_meta(get_the_id(), 'vkExUnit_sns_title', true);
22
+ }
23
+ if(!$pageTitle){
24
+ $pageTitle = urlencode(vkExUnit_get_wp_head_title());
25
+ }
26
  $socialSet = '<div class="socialSet vkContentAddSection"><ul>';
27
  // facebook
28
  $socialSet .= '<li class="sb_facebook sb_icon"><a href="http://www.facebook.com/sharer.php?src=bm&u='.$linkUrl.'&amp;t='.$pageTitle.'" target="_blank"" ><span class="vk_icon_w_r_sns_fb icon_sns"></span><span class="sns_txt">Facebook</span></a></li>';
plugins/sns/function_twitterCard.php CHANGED
@@ -15,7 +15,15 @@ if ( ( is_single() || is_page() ) && has_post_thumbnail() ) {
15
  $card_image_url = $image_url[0];
16
  } else {
17
  $card_image_url = (isset($vkExUnit_sns_options['ogImage'])) ? $vkExUnit_sns_options['ogImage'] : '';
18
- }
 
 
 
 
 
 
 
 
19
  // domain
20
  preg_match( '/https?:\/\/(.+?)\//i', admin_url(), $match );
21
  // image size
@@ -23,7 +31,7 @@ if ( isset($vkExUnit_sns_options['twitterId']) && $vkExUnit_sns_options['twitter
23
  <!-- [ <?php echo vkExUnit_get_name(); ?> twitter card ] -->
24
  <meta name="twitter:card" content="summary_large_image">
25
  <meta name="twitter:description" content="<?php echo vkExUnit_get_pageDescription(); ?>">
26
- <meta name="twitter:title" content="<?php echo vkExUnit_get_wp_head_title(); ?>">
27
  <meta name="twitter:url" content="<?php echo $linkUrl ?>">
28
  <meta name="twitter:image" content="<?php echo esc_url($card_image_url);?>">
29
  <meta name="twitter:domain" content="<?php echo $match[1] ?>">
15
  $card_image_url = $image_url[0];
16
  } else {
17
  $card_image_url = (isset($vkExUnit_sns_options['ogImage'])) ? $vkExUnit_sns_options['ogImage'] : '';
18
+ }
19
+
20
+ $title = '';
21
+ if(is_single() || is_page()){
22
+ $title = get_post_meta(get_the_id(), 'vkExUnit_sns_title', true);
23
+ }
24
+ if(!$title){
25
+ $title = vkExUnit_get_wp_head_title();
26
+ }
27
  // domain
28
  preg_match( '/https?:\/\/(.+?)\//i', admin_url(), $match );
29
  // image size
31
  <!-- [ <?php echo vkExUnit_get_name(); ?> twitter card ] -->
32
  <meta name="twitter:card" content="summary_large_image">
33
  <meta name="twitter:description" content="<?php echo vkExUnit_get_pageDescription(); ?>">
34
+ <meta name="twitter:title" content="<?php echo $title; ?>">
35
  <meta name="twitter:url" content="<?php echo $linkUrl ?>">
36
  <meta name="twitter:image" content="<?php echo esc_url($card_image_url);?>">
37
  <meta name="twitter:domain" content="<?php echo $match[1] ?>">
plugins/sns/sns.php CHANGED
@@ -40,7 +40,8 @@ function vkExUnit_get_sns_options_default() {
40
  'enableOGTags' => true,
41
  'enableTwitterCardTags' => true,
42
  'enableSnsBtns' => true,
43
- 'enableFollowMe' => true
 
44
  );
45
  return apply_filters( 'vkExUnit_sns_options_default', $default_options );
46
  }
@@ -60,6 +61,7 @@ function vkExUnit_sns_options_validate( $input ) {
60
  $output['enableTwitterCardTags'] = ( isset($input['enableTwitterCardTags']) && isset($input['enableTwitterCardTags']) == 'true' )? true: false;
61
  $output['enableSnsBtns'] = ( isset($input['enableSnsBtns']) && isset($input['enableSnsBtns']) == 'true' )? true: false;
62
  $output['enableFollowMe'] = ( isset($input['enableFollowMe']) && isset($input['enableFollowMe']) == 'true' )? true: false;
 
63
 
64
  return apply_filters( 'vkExUnit_sns_options_validate', $output, $input, $defaults );
65
  }
@@ -107,6 +109,8 @@ if ($vkExUnit_sns_options['enableTwitterCardTags'] == true)
107
  if ($vkExUnit_sns_options['enableFollowMe'] == true)
108
  require vkExUnit_get_directory() . '/plugins/sns/function_follow.php';
109
 
 
 
110
  /*-------------------------------------------*/
111
  /* Add setting page
112
  /*-------------------------------------------*/
40
  'enableOGTags' => true,
41
  'enableTwitterCardTags' => true,
42
  'enableSnsBtns' => true,
43
+ 'enableFollowMe' => true,
44
+ 'followMe_title' => 'Follow me!',
45
  );
46
  return apply_filters( 'vkExUnit_sns_options_default', $default_options );
47
  }
61
  $output['enableTwitterCardTags'] = ( isset($input['enableTwitterCardTags']) && isset($input['enableTwitterCardTags']) == 'true' )? true: false;
62
  $output['enableSnsBtns'] = ( isset($input['enableSnsBtns']) && isset($input['enableSnsBtns']) == 'true' )? true: false;
63
  $output['enableFollowMe'] = ( isset($input['enableFollowMe']) && isset($input['enableFollowMe']) == 'true' )? true: false;
64
+ $output['followMe_title'] = $input['followMe_title'];
65
 
66
  return apply_filters( 'vkExUnit_sns_options_validate', $output, $input, $defaults );
67
  }
109
  if ($vkExUnit_sns_options['enableFollowMe'] == true)
110
  require vkExUnit_get_directory() . '/plugins/sns/function_follow.php';
111
 
112
+ require vkExUnit_get_directory() . '/plugins/sns/function_meta_box.php';
113
+
114
  /*-------------------------------------------*/
115
  /* Add setting page
116
  /*-------------------------------------------*/
plugins/sns/sns_admin.php CHANGED
@@ -34,7 +34,7 @@
34
  </tr>
35
  <tr>
36
  <th><?php _e('twitter ID', 'vkExUnit'); ?></th>
37
- <td><input type="text" name="vkExUnit_sns_options[twitterId]" id="twitterId" value="<?php echo esc_attr( $options['twitterId'] ); ?>" /></td>
38
  </tr>
39
 
40
  <tr>
@@ -59,10 +59,15 @@
59
 
60
  <tr>
61
  <th><label for="enableFollowMe"><?php _e('Follow me box', 'vkExUnit'); ?></label></th>
62
- <td><label><input type="checkbox" name="vkExUnit_sns_options[enableFollowMe]" id="enableFollowMe" value="true" <?php echo ( $options['enableFollowMe'] )? 'checked': ''; ?> /><?php _e('Print the Follow me box', 'vkExUnit');?></label></td>
 
 
 
 
 
63
  </tr>
64
 
65
  </table>
66
 
67
- <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="変更を保存" /></p>
68
  </div>
34
  </tr>
35
  <tr>
36
  <th><?php _e('twitter ID', 'vkExUnit'); ?></th>
37
+ <td>@<input type="text" name="vkExUnit_sns_options[twitterId]" id="twitterId" value="<?php echo esc_attr( $options['twitterId'] ); ?>" /></td>
38
  </tr>
39
 
40
  <tr>
59
 
60
  <tr>
61
  <th><label for="enableFollowMe"><?php _e('Follow me box', 'vkExUnit'); ?></label></th>
62
+ <td><label><input type="checkbox" name="vkExUnit_sns_options[enableFollowMe]" id="enableFollowMe" value="true" <?php echo ( $options['enableFollowMe'] )? 'checked': ''; ?> /><?php _e('Print the Follow me box', 'vkExUnit');?></label>
63
+ <dl>
64
+ <dt><?php _e('Follow me box title', 'vkExUnit'); ?></dt>
65
+ <dd><input type="text" name="vkExUnit_sns_options[followMe_title]" id="followMe_title" value="<?php echo esc_attr( $options['followMe_title'] ); ?>" /></dd>
66
+ </dl>
67
+ </td>
68
  </tr>
69
 
70
  </table>
71
 
72
+ <?php submit_button(); ?>
73
  </div>
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: 4.2
6
  Tested up to: 4.2
7
- Stable tag: 0.1.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -67,6 +67,12 @@ e.g.
67
 
68
  == Changelog ==
69
 
 
 
 
 
 
 
70
  = 0.1.6.6 =
71
  * Profile Widget bug fix.
72
 
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 4.2
6
  Tested up to: 4.2
7
+ Stable tag: 1.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
67
 
68
  == Changelog ==
69
 
70
+ = 1.0.0
71
+ * [ Add functions ] Insert ads to post contents.
72
+ * [ Add functions ] Heading of "Follow me box" can now be changed.
73
+ * [ Add functions ] Added the setting of share and OG page title.
74
+ * [ bug fix ] Translation leakage
75
+
76
  = 0.1.6.6 =
77
  * Profile Widget bug fix.
78
 
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: VK All in One Expansion Unit
4
  Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
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: 0.1.6.6
7
  Author: Vektor,Inc.
8
  Author URI: http://vektor-inc.co.jp
9
  License: GPL2
@@ -81,8 +81,9 @@ require vkExUnit_get_directory() . '/common_init.php';
81
  $options = vkExUnit_get_common_options();
82
  require vkExUnit_get_directory() . '/common_helpers.php';
83
 
84
- //require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
85
- require vkExUnit_get_directory() . '/plugins/dashboard_info_widget/dashboard-info-widget.php';
 
86
 
87
 
88
  if ( isset($options['active_wpTitle']) && $options['active_wpTitle'] )
@@ -98,13 +99,13 @@ if ( isset($options['active_relatedPosts']) && $options['active_relatedPosts'] )
98
  require vkExUnit_get_directory() . '/plugins/related_posts/related_posts.php';
99
 
100
  if ( isset($options['active_metaDescription']) && $options['active_metaDescription'] )
101
- require vkExUnit_get_directory() . '/plugins/meta_description/meta_description.php';
102
 
103
  if ( isset($options['active_icon']) && $options['active_icon'] )
104
  require vkExUnit_get_directory() . '/plugins/icons.php';
105
 
106
  if ( isset($options['active_metaKeyword']) && $options['active_metaKeyword'] )
107
- require vkExUnit_get_directory() . '/plugins/meta_keyword/meta_keyword.php';
108
 
109
  if ( isset($options['active_otherWidgets']) && $options['active_otherWidgets'] )
110
  require vkExUnit_get_directory() . '/plugins/other_widget/other_widget.php';
@@ -120,6 +121,9 @@ if ( isset($options['active_childPageIndex']) && $options['active_childPageIndex
120
 
121
  if ( isset($options['active_sitemap_page']) && $options['active_sitemap_page'] )
122
  require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
 
 
 
123
 
124
  // page custom field
125
  if ( isset($options['active_childPageIndex']) && $options['active_childPageIndex'] || isset($options['active_sitemap_page']) && $options['active_sitemap_page'] )
@@ -174,6 +178,7 @@ function vkExUnit_addfontawesome(){
174
  }
175
  }
176
 
 
177
  add_action( 'admin_print_styles-toplevel_page_vkExUnit_setting_page', 'vkExUnit_admin_enq');
178
  add_action( 'admin_print_styles-vk-ex-unit_page_vkExUnit_main_setting', 'vkExUnit_admin_enq');
179
  function vkExUnit_admin_enq(){
@@ -184,11 +189,11 @@ function vkExUnit_admin_enq(){
184
  /* 管理画面_admin_head JavaScriptのデバッグコンソールにhook_suffixの値を出力
185
  /*-------------------------------------------*/
186
 
187
- // add_action("admin_head", 'suffix2console');
188
- // function suffix2console() {
189
- // global $hook_suffix;
190
- // if (is_user_logged_in()) {
191
- // $str = "<script type=\"text/javascript\">console.log('%s')</script>";
192
- // printf($str, $hook_suffix);
193
- // }
194
- // }
3
  Plugin Name: VK All in One Expansion Unit
4
  Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
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: 1.0.2
7
  Author: Vektor,Inc.
8
  Author URI: http://vektor-inc.co.jp
9
  License: GPL2
81
  $options = vkExUnit_get_common_options();
82
  require vkExUnit_get_directory() . '/common_helpers.php';
83
 
84
+ require vkExUnit_get_directory() . '/plugins/news_from_exUnit.php';
85
+ require vkExUnit_get_directory() . '/plugins/footer_copyright_change.php';
86
+ require vkExUnit_get_directory() . '/plugins/dashboard_info_widget.php';
87
 
88
 
89
  if ( isset($options['active_wpTitle']) && $options['active_wpTitle'] )
99
  require vkExUnit_get_directory() . '/plugins/related_posts/related_posts.php';
100
 
101
  if ( isset($options['active_metaDescription']) && $options['active_metaDescription'] )
102
+ require vkExUnit_get_directory() . '/plugins/meta_description.php';
103
 
104
  if ( isset($options['active_icon']) && $options['active_icon'] )
105
  require vkExUnit_get_directory() . '/plugins/icons.php';
106
 
107
  if ( isset($options['active_metaKeyword']) && $options['active_metaKeyword'] )
108
+ require vkExUnit_get_directory() . '/plugins/meta_keyword.php';
109
 
110
  if ( isset($options['active_otherWidgets']) && $options['active_otherWidgets'] )
111
  require vkExUnit_get_directory() . '/plugins/other_widget/other_widget.php';
121
 
122
  if ( isset($options['active_sitemap_page']) && $options['active_sitemap_page'] )
123
  require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
124
+
125
+ if ( isset($options['active_insert_ads']) && $options['active_insert_ads'] )
126
+ require vkExUnit_get_directory() . '/plugins/insert_ads.php';
127
 
128
  // page custom field
129
  if ( isset($options['active_childPageIndex']) && $options['active_childPageIndex'] || isset($options['active_sitemap_page']) && $options['active_sitemap_page'] )
178
  }
179
  }
180
 
181
+ add_action( 'admin_print_styles-index.php', 'vkExUnit_admin_enq');
182
  add_action( 'admin_print_styles-toplevel_page_vkExUnit_setting_page', 'vkExUnit_admin_enq');
183
  add_action( 'admin_print_styles-vk-ex-unit_page_vkExUnit_main_setting', 'vkExUnit_admin_enq');
184
  function vkExUnit_admin_enq(){
189
  /* 管理画面_admin_head JavaScriptのデバッグコンソールにhook_suffixの値を出力
190
  /*-------------------------------------------*/
191
 
192
+ add_action("admin_head", 'suffix2console');
193
+ function suffix2console() {
194
+ global $hook_suffix;
195
+ if (is_user_logged_in()) {
196
+ $str = "<script type=\"text/javascript\">console.log('%s')</script>";
197
+ printf($str, $hook_suffix);
198
+ }
199
+ }
vkExUnit_admin.php CHANGED
@@ -1,5 +1,9 @@
1
- <h2>VK All in One Expansion Unit Settings.</h2>
 
 
 
2
 
 
3
  <form method="post" action="options.php">
4
  <?php
5
  settings_fields( 'vkExUnit_common_options_fields' );
@@ -9,7 +13,8 @@
9
  <table class="wp-list-table widefat plugins" style="width:auto;">
10
  <thead>
11
  <tr>
12
- <th scope='col' id='cb' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-1"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-1" type="checkbox" /></th><th scope='col' id='name' class='manage-column column-name'><?php _e('Function','vkExUnit');?></th><th scope='col' id='description' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> </tr>
 
13
  </thead>
14
 
15
  <tbody id="the-list">
@@ -327,13 +332,44 @@
327
  </td>
328
  </tr>
329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  </tbody>
331
 
332
  <tfoot>
 
333
  <tr>
334
- <th scope='col' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-2"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-2" type="checkbox" /></th><th scope='col' class='manage-column column-name'><?php _e('Function', 'vkExUnit');?></th><th scope='col' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th> </tr>
 
335
  </tfoot>
336
 
337
  </table>
338
  <?php submit_button(); ?>
339
- </form>
 
 
 
 
 
1
+ <div class="wrap vkExUnit_admin_page">
2
+ <h2>
3
+ <span class="pageTitleTxt">VK All in One Expansion Unit <?php _e('Enable setting','vkExUnit');?></span>
4
+ </h2>
5
 
6
+ <div class="adminMain">
7
  <form method="post" action="options.php">
8
  <?php
9
  settings_fields( 'vkExUnit_common_options_fields' );
13
  <table class="wp-list-table widefat plugins" style="width:auto;">
14
  <thead>
15
  <tr>
16
+ <th scope='col' id='cb' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-1"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-1" type="checkbox" /></th><th scope='col' id='name' class='manage-column column-name'><?php _e('Function','vkExUnit');?></th><th scope='col' id='description' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th>
17
+ </tr>
18
  </thead>
19
 
20
  <tbody id="the-list">
332
  </td>
333
  </tr>
334
 
335
+
336
+
337
+ <!-- [ Insert ads ] -->
338
+ <tr<?php echo (isset($options['active_insert_ads']) && $options['active_insert_ads'])? ' class="active"': ' class="inactive"'; ?>>
339
+ <th scope='row' class='check-column'>
340
+ <label class='screen-reader-text' for='checkbox_insert_ads' >
341
+ <?php _e('Insert ads', 'vkExUnit'); ?>
342
+ </label>
343
+ <input type="checkbox" name="vkExUnit_common_options[active_insert_ads]" id="checkbox_insert_ads" value="true" <?php echo (isset($options['active_insert_ads']) && $options['active_insert_ads'])? 'checked': ''; ?> />
344
+ </th>
345
+ <td class='plugin-title'>
346
+ <strong><?php _e('Insert ads', 'vkExUnit'); ?></strong>
347
+ <span>
348
+ <a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_Ads';?>">
349
+ <?php _e('Setting','vkExUnit');?>
350
+ </a></span>
351
+ </td>
352
+ <td class='column-description desc'>
353
+ <div class='plugin-description'>
354
+ <p><?php _e('Insert ads to content.', 'vkExUnit'); ?></p>
355
+ </div><!-- [ /.plugin-description ] -->
356
+ </td>
357
+ </tr>
358
+
359
  </tbody>
360
 
361
  <tfoot>
362
+
363
  <tr>
364
+ <th scope='col' class='manage-column column-cb check-column'><label class="screen-reader-text" for="cb-select-all-2"><?php _e('Select all','vkExUnit');?></label><input id="cb-select-all-2" type="checkbox" /></th><th scope='col' class='manage-column column-name'><?php _e('Function', 'vkExUnit');?></th><th scope='col' class='manage-column column-description'><?php _e('Description','vkExUnit');?></th>
365
+ </tr>
366
  </tfoot>
367
 
368
  </table>
369
  <?php submit_button(); ?>
370
+ </form>
371
+ </div><!-- [ /.adminMain ] -->
372
+ <div class="adminSub">
373
+ <div class="exUnit_infoBox"><?php vkExUnit_news_body(); ?></div>
374
+ </div><!-- [ /.adminSub ] -->
375
+ </div>