Version Description
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 3.7.1 |
Comparing to | |
See all releases |
Code changes from version 3.7.0 to 3.7.1
- common_helpers.php +58 -58
- common_init.php +1 -1
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +145 -134
- packages.php +19 -19
- plugins/disable_dashbord.php +6 -0
- plugins/sns/function_og.php +1 -1
- plugins/sns/function_twitterCard.php +10 -10
- readme.txt +1 -1
- vkExUnit.php +6 -3
common_helpers.php
CHANGED
@@ -98,6 +98,64 @@ function vkExUnit_get_post_type() {
|
|
98 |
$postType = apply_filters( 'vkExUnit_postType_custom',$postType );
|
99 |
return $postType;
|
100 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
/*-------------------------------------------*/
|
102 |
/* Head title
|
103 |
/*-------------------------------------------*/
|
@@ -227,64 +285,6 @@ function vkExUnit_get_pageDescription() {
|
|
227 |
return $pageDescription;
|
228 |
}
|
229 |
|
230 |
-
/*-------------------------------------------*/
|
231 |
-
/* Archive title
|
232 |
-
/*-------------------------------------------*/
|
233 |
-
|
234 |
-
function vkExUnit_get_the_archive_title() {
|
235 |
-
if ( is_category() ) {
|
236 |
-
$title = single_cat_title( '', false );
|
237 |
-
} elseif ( is_tag() ) {
|
238 |
-
$title = single_tag_title( '', false );
|
239 |
-
} elseif ( is_author() ) {
|
240 |
-
$title = sprintf( __( 'Author: %s', 'vkExUnit' ), '<span class="vcard">' . get_the_author() . '</span>' );
|
241 |
-
} elseif ( is_year() ) {
|
242 |
-
$title = get_the_date( _x( 'Y', 'yearly archives date format', 'vkExUnit' ) );
|
243 |
-
} elseif ( is_month() ) {
|
244 |
-
$title = get_the_date( _x( 'F Y', 'monthly archives date format', 'vkExUnit' ) );
|
245 |
-
} elseif ( is_day() ) {
|
246 |
-
$title = get_the_date( _x( 'F j, Y', 'daily archives date format', 'vkExUnit' ) );
|
247 |
-
} elseif ( is_tax( 'post_format' ) ) {
|
248 |
-
if ( is_tax( 'post_format', 'post-format-aside' ) ) {
|
249 |
-
$title = _x( 'Asides', 'post format archive title' );
|
250 |
-
} elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) {
|
251 |
-
$title = _x( 'Galleries', 'post format archive title' );
|
252 |
-
} elseif ( is_tax( 'post_format', 'post-format-image' ) ) {
|
253 |
-
$title = _x( 'Images', 'post format archive title' );
|
254 |
-
} elseif ( is_tax( 'post_format', 'post-format-video' ) ) {
|
255 |
-
$title = _x( 'Videos', 'post format archive title' );
|
256 |
-
} elseif ( is_tax( 'post_format', 'post-format-quote' ) ) {
|
257 |
-
$title = _x( 'Quotes', 'post format archive title' );
|
258 |
-
} elseif ( is_tax( 'post_format', 'post-format-link' ) ) {
|
259 |
-
$title = _x( 'Links', 'post format archive title' );
|
260 |
-
} elseif ( is_tax( 'post_format', 'post-format-status' ) ) {
|
261 |
-
$title = _x( 'Statuses', 'post format archive title' );
|
262 |
-
} elseif ( is_tax( 'post_format', 'post-format-audio' ) ) {
|
263 |
-
$title = _x( 'Audio', 'post format archive title' );
|
264 |
-
} elseif ( is_tax( 'post_format', 'post-format-chat' ) ) {
|
265 |
-
$title = _x( 'Chats', 'post format archive title' );
|
266 |
-
}
|
267 |
-
} elseif ( is_post_type_archive() ) {
|
268 |
-
$title = post_type_archive_title( '', false );
|
269 |
-
} elseif ( is_tax() ) {
|
270 |
-
$title = single_term_title( '', false );
|
271 |
-
} elseif ( is_home() && ! is_front_page() ) {
|
272 |
-
$vkExUnit_page_for_posts = vkExUnit_get_page_for_posts();
|
273 |
-
$title = $vkExUnit_page_for_posts['post_top_name'];
|
274 |
-
} else {
|
275 |
-
global $wp_query;
|
276 |
-
// get post type
|
277 |
-
$postType = $wp_query->query_vars['post_type'];
|
278 |
-
if ( $postType ) {
|
279 |
-
$title = get_post_type_object( $postType )->labels->name;
|
280 |
-
} else {
|
281 |
-
$title = __( 'Archives', 'vkExUnit' );
|
282 |
-
}
|
283 |
-
}
|
284 |
-
|
285 |
-
return apply_filters( 'vkExUnit_get_the_archive_title', $title );
|
286 |
-
}
|
287 |
-
|
288 |
function vkExUnit_is_excerpt() {
|
289 |
global $wp_current_filter;
|
290 |
if ( in_array( 'get_the_excerpt', (array) $wp_current_filter ) ) { return true; }
|
98 |
$postType = apply_filters( 'vkExUnit_postType_custom',$postType );
|
99 |
return $postType;
|
100 |
}
|
101 |
+
/*-------------------------------------------*/
|
102 |
+
/* Archive title
|
103 |
+
/*-------------------------------------------*/
|
104 |
+
|
105 |
+
function vkExUnit_get_the_archive_title() {
|
106 |
+
if ( is_category() ) {
|
107 |
+
$title = single_cat_title( '', false );
|
108 |
+
} elseif ( is_tag() ) {
|
109 |
+
$title = single_tag_title( '', false );
|
110 |
+
} elseif ( is_author() ) {
|
111 |
+
$title = sprintf( __( 'Author: %s', 'vkExUnit' ), '<span class="vcard">' . get_the_author() . '</span>' );
|
112 |
+
} elseif ( is_year() ) {
|
113 |
+
$title = get_the_date( _x( 'Y', 'yearly archives date format', 'vkExUnit' ) );
|
114 |
+
} elseif ( is_month() ) {
|
115 |
+
$title = get_the_date( _x( 'F Y', 'monthly archives date format', 'vkExUnit' ) );
|
116 |
+
} elseif ( is_day() ) {
|
117 |
+
$title = get_the_date( _x( 'F j, Y', 'daily archives date format', 'vkExUnit' ) );
|
118 |
+
} elseif ( is_tax( 'post_format' ) ) {
|
119 |
+
if ( is_tax( 'post_format', 'post-format-aside' ) ) {
|
120 |
+
$title = _x( 'Asides', 'post format archive title' );
|
121 |
+
} elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) {
|
122 |
+
$title = _x( 'Galleries', 'post format archive title' );
|
123 |
+
} elseif ( is_tax( 'post_format', 'post-format-image' ) ) {
|
124 |
+
$title = _x( 'Images', 'post format archive title' );
|
125 |
+
} elseif ( is_tax( 'post_format', 'post-format-video' ) ) {
|
126 |
+
$title = _x( 'Videos', 'post format archive title' );
|
127 |
+
} elseif ( is_tax( 'post_format', 'post-format-quote' ) ) {
|
128 |
+
$title = _x( 'Quotes', 'post format archive title' );
|
129 |
+
} elseif ( is_tax( 'post_format', 'post-format-link' ) ) {
|
130 |
+
$title = _x( 'Links', 'post format archive title' );
|
131 |
+
} elseif ( is_tax( 'post_format', 'post-format-status' ) ) {
|
132 |
+
$title = _x( 'Statuses', 'post format archive title' );
|
133 |
+
} elseif ( is_tax( 'post_format', 'post-format-audio' ) ) {
|
134 |
+
$title = _x( 'Audio', 'post format archive title' );
|
135 |
+
} elseif ( is_tax( 'post_format', 'post-format-chat' ) ) {
|
136 |
+
$title = _x( 'Chats', 'post format archive title' );
|
137 |
+
}
|
138 |
+
} elseif ( is_post_type_archive() ) {
|
139 |
+
$title = post_type_archive_title( '', false );
|
140 |
+
} elseif ( is_tax() ) {
|
141 |
+
$title = single_term_title( '', false );
|
142 |
+
} elseif ( is_home() && ! is_front_page() ) {
|
143 |
+
$vkExUnit_page_for_posts = vkExUnit_get_page_for_posts();
|
144 |
+
$title = $vkExUnit_page_for_posts['post_top_name'];
|
145 |
+
} else {
|
146 |
+
global $wp_query;
|
147 |
+
// get post type
|
148 |
+
$postType = $wp_query->query_vars['post_type'];
|
149 |
+
if ( $postType ) {
|
150 |
+
$title = get_post_type_object( $postType )->labels->name;
|
151 |
+
} else {
|
152 |
+
$title = __( 'Archives', 'vkExUnit' );
|
153 |
+
}
|
154 |
+
}
|
155 |
+
|
156 |
+
return apply_filters( 'vkExUnit_get_the_archive_title', $title );
|
157 |
+
}
|
158 |
+
|
159 |
/*-------------------------------------------*/
|
160 |
/* Head title
|
161 |
/*-------------------------------------------*/
|
285 |
return $pageDescription;
|
286 |
}
|
287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
function vkExUnit_is_excerpt() {
|
289 |
global $wp_current_filter;
|
290 |
if ( in_array( 'get_the_excerpt', (array) $wp_current_filter ) ) { return true; }
|
common_init.php
CHANGED
@@ -25,7 +25,7 @@ function vkExUnit_get_common_options_default() {
|
|
25 |
'active_sns' => true,
|
26 |
'active_ga' => true,
|
27 |
'active_relatedPosts' => true,
|
28 |
-
'active_call_to_action' =>
|
29 |
'delete_options_at_deactivate' => false,
|
30 |
'delete_options_with_bizvektors_common' => true,
|
31 |
);
|
25 |
'active_sns' => true,
|
26 |
'active_ga' => true,
|
27 |
'active_relatedPosts' => true,
|
28 |
+
'active_call_to_action' => true,
|
29 |
'delete_options_at_deactivate' => false,
|
30 |
'delete_options_with_bizvektors_common' => true,
|
31 |
);
|
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-
|
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"
|
@@ -25,93 +25,93 @@ msgid "Activated Packages is noting. please activate some package."
|
|
25 |
msgstr ""
|
26 |
"有効化されているパッケージがありません。何かの機能を有効化してください。"
|
27 |
|
28 |
-
#: ../common_helpers.php:
|
29 |
#, php-format
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
-
|
33 |
-
#: ../common_helpers.php:140
|
34 |
-
msgid "Not found"
|
35 |
-
msgstr "見つかりません"
|
36 |
-
|
37 |
-
#: ../common_helpers.php:149 ../common_helpers.php:221
|
38 |
-
#, php-format
|
39 |
-
msgid "Page of %s"
|
40 |
-
msgstr "%sページ目"
|
41 |
-
|
42 |
-
#: ../common_helpers.php:181 ../common_helpers.php:189
|
43 |
-
#, php-format
|
44 |
-
msgid "About %s"
|
45 |
-
msgstr "%s について"
|
46 |
|
47 |
-
#: ../common_helpers.php:
|
48 |
msgid "Y"
|
49 |
msgstr "年"
|
50 |
|
51 |
-
#: ../common_helpers.php:
|
52 |
-
#: ../common_helpers.php:202 ../common_helpers.php:206
|
53 |
-
#, php-format
|
54 |
-
msgid "Article of %s."
|
55 |
-
msgstr "%s の記事"
|
56 |
-
|
57 |
-
#: ../common_helpers.php:197 ../common_helpers.php:244
|
58 |
msgid "F Y"
|
59 |
msgstr "年月"
|
60 |
|
61 |
-
#: ../common_helpers.php:
|
62 |
-
#, php-format
|
63 |
-
msgid "Author: %s"
|
64 |
-
msgstr "著者: %s"
|
65 |
-
|
66 |
-
#: ../common_helpers.php:246
|
67 |
msgid "F j, Y"
|
68 |
msgstr "月日, 年"
|
69 |
|
70 |
-
#: ../common_helpers.php:
|
71 |
msgid "Asides"
|
72 |
msgstr "サイド"
|
73 |
|
74 |
-
#: ../common_helpers.php:
|
75 |
msgid "Galleries"
|
76 |
msgstr "ギャラリー"
|
77 |
|
78 |
-
#: ../common_helpers.php:
|
79 |
msgid "Images"
|
80 |
msgstr "画像"
|
81 |
|
82 |
-
#: ../common_helpers.php:
|
83 |
msgid "Videos"
|
84 |
msgstr "ビデオ"
|
85 |
|
86 |
-
#: ../common_helpers.php:
|
87 |
msgid "Quotes"
|
88 |
msgstr "引用"
|
89 |
|
90 |
-
#: ../common_helpers.php:
|
91 |
msgid "Links"
|
92 |
msgstr "リンク"
|
93 |
|
94 |
-
#: ../common_helpers.php:
|
95 |
msgid "Statuses"
|
96 |
msgstr "ステータス"
|
97 |
|
98 |
-
#: ../common_helpers.php:
|
99 |
msgid "Audio"
|
100 |
msgstr "オーディオ"
|
101 |
|
102 |
-
#: ../common_helpers.php:
|
103 |
msgid "Chats"
|
104 |
msgstr "チャット"
|
105 |
|
106 |
-
#: ../common_helpers.php:
|
107 |
msgid "Archives"
|
108 |
msgstr "アーカイブ"
|
109 |
|
110 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
msgid "Print Bootstrap css and js"
|
112 |
msgstr "Bootstrap の CSS と js を出力"
|
113 |
|
114 |
-
#: ../packages.php:
|
115 |
msgid ""
|
116 |
"If your using theme has already including Bootstrap, you deactivate this "
|
117 |
"item."
|
@@ -120,22 +120,22 @@ msgstr ""
|
|
120 |
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
121 |
"下さい。"
|
122 |
|
123 |
-
#: ../packages.php:
|
124 |
msgid "Print link fontawesome"
|
125 |
msgstr "fontawesome link タグを出力"
|
126 |
|
127 |
-
#: ../packages.php:
|
128 |
msgid "Print fontawesome link tag to html head."
|
129 |
msgstr ""
|
130 |
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
131 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
132 |
"さい。"
|
133 |
|
134 |
-
#: ../packages.php:
|
135 |
msgid "Favicon setting"
|
136 |
msgstr "ファビコン設定"
|
137 |
|
138 |
-
#: ../packages.php:
|
139 |
msgid "About favicon."
|
140 |
msgstr ""
|
141 |
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
@@ -160,57 +160,57 @@ msgstr "メタキーワードを出力"
|
|
160 |
msgid "Print meta Keyword to html head."
|
161 |
msgstr "ヘッダーにメタキーワードを出力します。"
|
162 |
|
163 |
-
#: ../packages.php:113 ../packages.php:
|
164 |
-
#: ../packages.php:
|
165 |
-
#: ../packages.php:
|
166 |
msgid "Setting"
|
167 |
msgstr "設定"
|
168 |
|
169 |
-
#: ../packages.php:
|
170 |
msgid "Print meta description"
|
171 |
msgstr "メタディスクリプションタグを出力"
|
172 |
|
173 |
-
#: ../packages.php:
|
174 |
msgid "Print meta description to html head."
|
175 |
msgstr ""
|
176 |
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
177 |
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
178 |
"している場合はチェックを外して下さい。"
|
179 |
|
180 |
-
#: ../packages.php:
|
181 |
msgid "Main setting page"
|
182 |
msgstr "メイン設定画面"
|
183 |
|
184 |
-
#: ../packages.php:
|
185 |
msgid "Print og tags to html head."
|
186 |
msgstr "OG タグを html head 内へ出力します。"
|
187 |
|
188 |
-
#: ../packages.php:
|
189 |
msgid "Print twitter card tags to html head."
|
190 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
191 |
|
192 |
-
#: ../packages.php:
|
193 |
msgid "Print social bookmark buttons."
|
194 |
msgstr "ソーシャルブックマークボタンを表示します。"
|
195 |
|
196 |
-
#: ../packages.php:
|
197 |
msgid "Facebook Page Plugin widget."
|
198 |
msgstr "Facebookページプラグインウィジェット"
|
199 |
|
200 |
-
#: ../packages.php:
|
201 |
msgid "Print Follow me box to content bottom."
|
202 |
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
203 |
|
204 |
-
#: ../packages.php:
|
205 |
#, php-format
|
206 |
msgid "* You can stop the function separately from the %s."
|
207 |
msgstr "%s から個別に機能を停止する事ができます。"
|
208 |
|
209 |
-
#: ../packages.php:
|
210 |
msgid "Social media cooperation"
|
211 |
msgstr "ソーシャルメディア連携"
|
212 |
|
213 |
-
#: ../packages.php:
|
214 |
msgid "Print Google Analytics tracking code."
|
215 |
msgstr ""
|
216 |
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
@@ -218,49 +218,49 @@ msgstr ""
|
|
218 |
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
219 |
"合はチェックを外して下さい。"
|
220 |
|
221 |
-
#: ../packages.php:
|
222 |
msgid "You can use various widgets."
|
223 |
msgstr ""
|
224 |
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
|
225 |
"「ウィジェット」の設定画面より行って下さい。"
|
226 |
|
227 |
-
#: ../packages.php:
|
228 |
msgid ""
|
229 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
230 |
"title."
|
231 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
232 |
|
233 |
-
#: ../packages.php:
|
234 |
msgid ""
|
235 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
236 |
msgstr ""
|
237 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
238 |
|
239 |
-
#: ../packages.php:
|
240 |
msgid "VK_Profile - display the profile entered in the widget."
|
241 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
242 |
|
243 |
-
#: ../packages.php:
|
244 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
245 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
246 |
|
247 |
-
#: ../packages.php:
|
248 |
msgid "VK_3PR area - display the 3PR area."
|
249 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
250 |
|
251 |
-
#: ../packages.php:
|
252 |
msgid "categories/tags list"
|
253 |
msgstr "カテゴリー/タグ リスト"
|
254 |
|
255 |
-
#: ../packages.php:
|
256 |
msgid "Displays a categories, tags or format list."
|
257 |
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
258 |
|
259 |
-
#: ../packages.php:
|
260 |
msgid "archive list"
|
261 |
msgstr "アーカイブリスト"
|
262 |
|
263 |
-
#: ../packages.php:
|
264 |
msgid ""
|
265 |
"Displays a list of archives. You can choose the post type and also to "
|
266 |
"display archives by month or by year."
|
@@ -268,34 +268,26 @@ msgstr ""
|
|
268 |
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
269 |
"プを選択できます。"
|
270 |
|
271 |
-
#: ../packages.php:
|
272 |
msgid "Widgets"
|
273 |
msgstr "ウィジェット"
|
274 |
|
275 |
-
#: ../packages.php:
|
276 |
msgid "CSS customize"
|
277 |
msgstr "CSSカスタマイズ"
|
278 |
|
279 |
-
#: ../packages.php:
|
280 |
msgid "You can set Customize CSS."
|
281 |
msgstr ""
|
282 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
283 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
284 |
"さい。"
|
285 |
|
286 |
-
#: ../packages.php:
|
287 |
-
msgid "Contact Section"
|
288 |
-
msgstr "お問い合わせ"
|
289 |
-
|
290 |
-
#: ../packages.php:227
|
291 |
-
msgid "Display Contact Section at after content."
|
292 |
-
msgstr "お問い合わせ情報を本文の下に表示する"
|
293 |
-
|
294 |
-
#: ../packages.php:244
|
295 |
msgid "Child page index"
|
296 |
msgstr "子ページの一覧表示"
|
297 |
|
298 |
-
#: ../packages.php:
|
299 |
msgid ""
|
300 |
"At the bottom of the specified page, it will display a list of the child "
|
301 |
"page."
|
@@ -303,28 +295,36 @@ msgstr ""
|
|
303 |
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
304 |
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
305 |
|
306 |
-
#: ../packages.php:
|
307 |
msgid "Page list from ancestor"
|
308 |
msgstr "先祖階層からの子ページリスト表示"
|
309 |
|
310 |
-
#: ../packages.php:
|
311 |
msgid "Display Page list from ancestor at after content."
|
312 |
msgstr ""
|
313 |
"現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
|
314 |
|
315 |
-
#: ../packages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
msgid "Display HTML Site Map"
|
317 |
msgstr "HTMLサイトマップの表示"
|
318 |
|
319 |
-
#: ../packages.php:
|
320 |
msgid "It displays a HTML Site Map to the specified page."
|
321 |
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
322 |
|
323 |
-
#: ../packages.php:
|
324 |
msgid "Display the CTA at the end of the post content."
|
325 |
msgstr "投稿内容の最後にCTAを表示します。"
|
326 |
|
327 |
-
#: ../packages.php:
|
328 |
msgid ""
|
329 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
330 |
"user behavior."
|
@@ -332,7 +332,7 @@ msgstr ""
|
|
332 |
"CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
|
333 |
"情報を表示します。"
|
334 |
|
335 |
-
#: ../packages.php:
|
336 |
msgid ""
|
337 |
"As an example, text message and a link button for induction to the free "
|
338 |
"sample download page."
|
@@ -340,66 +340,81 @@ msgstr ""
|
|
340 |
"例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
|
341 |
"ンなどです。"
|
342 |
|
343 |
-
#: ../packages.php:
|
344 |
msgid "Call To Action"
|
345 |
msgstr "Call To Action"
|
346 |
|
347 |
-
#: ../packages.php:
|
348 |
msgid "Contents setting"
|
349 |
msgstr "CTA表示内容設定"
|
350 |
|
351 |
-
#: ../packages.php:
|
352 |
#: ../plugins/insert_ads.php:119
|
353 |
msgid "Insert ads"
|
354 |
msgstr "広告の挿入"
|
355 |
|
356 |
-
#: ../packages.php:
|
357 |
msgid "Insert ads to content."
|
358 |
msgstr "記事に広告を挿入します"
|
359 |
|
360 |
-
#: ../packages.php:
|
361 |
msgid "Related posts"
|
362 |
msgstr "関連記事を表示"
|
363 |
|
364 |
-
#: ../packages.php:
|
365 |
msgid "Print Related posts lists to post content bottom."
|
366 |
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
367 |
|
368 |
-
#: ../packages.php:
|
369 |
msgid "Automatic Eye Catch insert"
|
370 |
msgstr "アイキャッチ画像自動挿入"
|
371 |
|
372 |
-
#: ../packages.php:
|
373 |
msgid "Display Eye Catch image at before content."
|
374 |
msgstr ""
|
375 |
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
376 |
"す。"
|
377 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
378 |
#: ../vkExUnit_admin.php:3
|
379 |
msgid "Enable setting"
|
380 |
msgstr "有効化設定"
|
381 |
|
382 |
-
#: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:
|
383 |
msgid "Select all"
|
384 |
msgstr "全てを選択"
|
385 |
|
386 |
-
#: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:
|
387 |
msgid "Function"
|
388 |
msgstr "有効化"
|
389 |
|
390 |
-
#: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:
|
391 |
msgid "Description"
|
392 |
msgstr "説明"
|
393 |
|
394 |
-
#: ../vkExUnit_admin.php:
|
395 |
msgid "Extension Setting"
|
396 |
msgstr "拡張設定"
|
397 |
|
398 |
-
#: ../vkExUnit_admin.php:
|
399 |
msgid "Plugin setting options"
|
400 |
msgstr "プラグイン設定オプション"
|
401 |
|
402 |
-
#: ../vkExUnit_admin.php:
|
403 |
msgid "Delete myOptions when deactivate me."
|
404 |
msgstr "プラグインを無効化する際にDBに保存したオプション項目を削除します。"
|
405 |
|
@@ -411,7 +426,7 @@ msgstr "アイキャッチ自動挿入"
|
|
411 |
msgid "Do not set eyecatch image automatic."
|
412 |
msgstr "アイキャッチ画像を自動挿入しない"
|
413 |
|
414 |
-
#: ../plugins/child_page_index.php:
|
415 |
#: ../plugins/other_widget/widget-3pr-area.php:270
|
416 |
#: ../plugins/other_widget/widget-3pr-area.php:312
|
417 |
#: ../plugins/other_widget/widget-3pr-area.php:355
|
@@ -707,7 +722,7 @@ msgid "Follow common setting"
|
|
707 |
msgstr "共通設定を使用"
|
708 |
|
709 |
#: ../plugins/call_to_action/class.call_to_action.php:90
|
710 |
-
#: ../plugins/call_to_action/class.call_to_action.php:
|
711 |
msgid "Disable display"
|
712 |
msgstr "表示しない"
|
713 |
|
@@ -809,11 +824,11 @@ msgstr "デザインをカスタマイズする場合は下のテキストエリ
|
|
809 |
msgid "Save CSS"
|
810 |
msgstr "CSSを保存する"
|
811 |
|
812 |
-
#: ../plugins/css_customize/css_customize.php:
|
813 |
msgid "Your custom CSS was saved."
|
814 |
msgstr "CSSが保存されました"
|
815 |
|
816 |
-
#: ../plugins/css_customize/css_customize.php:
|
817 |
msgid "Error occured. Please try again."
|
818 |
msgstr "何らかのエラー!! また試してみてください"
|
819 |
|
@@ -879,7 +894,7 @@ msgstr "3PR エリア1 設定"
|
|
879 |
#: ../plugins/other_widget/widget-3pr-area.php:48
|
880 |
#: ../plugins/other_widget/widget-3pr-area.php:98
|
881 |
#: ../plugins/other_widget/widget-3pr-area.php:149
|
882 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
883 |
#: ../plugins/other_widget/widget-pr-blocks.php:74
|
884 |
#: ../plugins/other_widget/widget-profile.php:40
|
885 |
#: ../plugins/sns/function_fbPagePlugin.php:79
|
@@ -944,30 +959,30 @@ msgstr "3PR エリア2 設定"
|
|
944 |
msgid "3PR area3 setting"
|
945 |
msgstr "3PR エリア3 設定"
|
946 |
|
|
|
947 |
#: ../plugins/other_widget/widget-archives.php:54
|
948 |
-
#: ../plugins/other_widget/widget-archives.php:55
|
949 |
msgid "Monthly archives"
|
950 |
msgstr "月別アーカイブ"
|
951 |
|
952 |
-
#: ../plugins/other_widget/widget-archives.php:
|
953 |
-
#: ../plugins/other_widget/widget-new-posts.php:146
|
954 |
#: ../plugins/other_widget/widget-new-posts.php:147
|
|
|
955 |
msgid "Title"
|
956 |
msgstr "タイトル"
|
957 |
|
958 |
-
#: ../plugins/other_widget/widget-archives.php:
|
959 |
msgid "Post type"
|
960 |
msgstr "ポストタイプ"
|
961 |
|
962 |
-
#: ../plugins/other_widget/widget-archives.php:
|
963 |
msgid "Monthly"
|
964 |
msgstr "月別"
|
965 |
|
966 |
-
#: ../plugins/other_widget/widget-archives.php:
|
967 |
msgid "Yearly"
|
968 |
msgstr "年別"
|
969 |
|
970 |
-
#: ../plugins/other_widget/widget-archives.php:
|
971 |
msgid "archive"
|
972 |
msgstr "アーカイブ"
|
973 |
|
@@ -982,7 +997,7 @@ msgstr "表示しているページの先祖階層からの子ページリスト
|
|
982 |
|
983 |
#: ../plugins/other_widget/widget-new-posts.php:11
|
984 |
#: ../plugins/other_widget/widget-new-posts.php:29
|
985 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
986 |
msgid "Recent Posts"
|
987 |
msgstr "最新記事"
|
988 |
|
@@ -990,44 +1005,44 @@ msgstr "最新記事"
|
|
990 |
msgid "Displays a list of your most recent posts"
|
991 |
msgstr "最新の投稿記事リストを表示します。"
|
992 |
|
993 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
994 |
msgid "Display Format"
|
995 |
msgstr "表示形式"
|
996 |
|
997 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
998 |
msgid "Thumbnail"
|
999 |
msgstr "サムネイル画像"
|
1000 |
|
1001 |
-
#: ../plugins/other_widget/widget-new-posts.php:146
|
1002 |
#: ../plugins/other_widget/widget-new-posts.php:147
|
|
|
1003 |
msgid "Date"
|
1004 |
msgstr "日付"
|
1005 |
|
1006 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
1007 |
#: ../plugins/other_widget/widget-taxonomies.php:47
|
1008 |
#: ../plugins/other_widget/widget-taxonomies.php:48
|
1009 |
msgid "Category"
|
1010 |
msgstr "カテゴリー"
|
1011 |
|
1012 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
1013 |
msgid "Display count"
|
1014 |
msgstr "表示する記事数"
|
1015 |
|
1016 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
1017 |
msgid "Slug for the custom type you want to display"
|
1018 |
msgstr "表示したい記事タイプ"
|
1019 |
|
1020 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
1021 |
msgid "taxonomy ID"
|
1022 |
msgstr "カテゴリー(タクソノミー)ID"
|
1023 |
|
1024 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
1025 |
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
1026 |
msgstr ""
|
1027 |
"特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
|
1028 |
"します。"
|
1029 |
|
1030 |
-
#: ../plugins/other_widget/widget-new-posts.php:
|
1031 |
msgid "if empty this area, I will do not filtering."
|
1032 |
msgstr "空欄の場合はフィルタリングは行いません。"
|
1033 |
|
@@ -1246,7 +1261,7 @@ msgstr "複数のページを除外する場合は , (コンマ)で区切っ
|
|
1246 |
msgid "HTML Sitemap"
|
1247 |
msgstr "HTMLサイトマップ"
|
1248 |
|
1249 |
-
#: ../plugins/sitemap_page/sitemap_page.php:
|
1250 |
msgid "Display a HTML sitemap"
|
1251 |
msgstr "HTMLサイトマップの表示"
|
1252 |
|
@@ -1412,14 +1427,10 @@ msgstr "メイン設定"
|
|
1412 |
msgid "News from VK All in One Expansion Unit"
|
1413 |
msgstr "VK All in One Expansion Unit からのお知らせ"
|
1414 |
|
1415 |
-
#: ../plugins_admin/news_from_exUnit.php:
|
1416 |
msgid "Sorry, there is no post"
|
1417 |
msgstr "お知らせはありません。"
|
1418 |
|
1419 |
-
#, fuzzy
|
1420 |
-
#~ msgid "Disable ping back"
|
1421 |
-
#~ msgstr "表示しない"
|
1422 |
-
|
1423 |
#~ msgid "* It is necessary to set the Theme options page."
|
1424 |
#~ msgstr "* テーマオプションページで設定する必要があります。"
|
1425 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-10-28 18:53+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"
|
25 |
msgstr ""
|
26 |
"有効化されているパッケージがありません。何かの機能を有効化してください。"
|
27 |
|
28 |
+
#: ../common_helpers.php:111
|
29 |
#, php-format
|
30 |
+
msgid "Author: %s"
|
31 |
+
msgstr "著者: %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
+
#: ../common_helpers.php:113 ../common_helpers.php:251
|
34 |
msgid "Y"
|
35 |
msgstr "年"
|
36 |
|
37 |
+
#: ../common_helpers.php:115 ../common_helpers.php:255
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
msgid "F Y"
|
39 |
msgstr "年月"
|
40 |
|
41 |
+
#: ../common_helpers.php:117
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid "F j, Y"
|
43 |
msgstr "月日, 年"
|
44 |
|
45 |
+
#: ../common_helpers.php:120
|
46 |
msgid "Asides"
|
47 |
msgstr "サイド"
|
48 |
|
49 |
+
#: ../common_helpers.php:122
|
50 |
msgid "Galleries"
|
51 |
msgstr "ギャラリー"
|
52 |
|
53 |
+
#: ../common_helpers.php:124
|
54 |
msgid "Images"
|
55 |
msgstr "画像"
|
56 |
|
57 |
+
#: ../common_helpers.php:126
|
58 |
msgid "Videos"
|
59 |
msgstr "ビデオ"
|
60 |
|
61 |
+
#: ../common_helpers.php:128
|
62 |
msgid "Quotes"
|
63 |
msgstr "引用"
|
64 |
|
65 |
+
#: ../common_helpers.php:130
|
66 |
msgid "Links"
|
67 |
msgstr "リンク"
|
68 |
|
69 |
+
#: ../common_helpers.php:132
|
70 |
msgid "Statuses"
|
71 |
msgstr "ステータス"
|
72 |
|
73 |
+
#: ../common_helpers.php:134
|
74 |
msgid "Audio"
|
75 |
msgstr "オーディオ"
|
76 |
|
77 |
+
#: ../common_helpers.php:136
|
78 |
msgid "Chats"
|
79 |
msgstr "チャット"
|
80 |
|
81 |
+
#: ../common_helpers.php:152 ../plugins/other_widget/widget-taxonomies.php:81
|
82 |
msgid "Archives"
|
83 |
msgstr "アーカイブ"
|
84 |
|
85 |
+
#: ../common_helpers.php:195
|
86 |
+
#, php-format
|
87 |
+
msgid "Search Results for : %s"
|
88 |
+
msgstr "検索結果 : %s"
|
89 |
+
|
90 |
+
#: ../common_helpers.php:198
|
91 |
+
msgid "Not found"
|
92 |
+
msgstr "見つかりません"
|
93 |
+
|
94 |
+
#: ../common_helpers.php:207 ../common_helpers.php:279
|
95 |
+
#, php-format
|
96 |
+
msgid "Page of %s"
|
97 |
+
msgstr "%sページ目"
|
98 |
+
|
99 |
+
#: ../common_helpers.php:239 ../common_helpers.php:247
|
100 |
+
#, php-format
|
101 |
+
msgid "About %s"
|
102 |
+
msgstr "%s について"
|
103 |
+
|
104 |
+
#: ../common_helpers.php:252 ../common_helpers.php:256
|
105 |
+
#: ../common_helpers.php:260 ../common_helpers.php:264
|
106 |
+
#, php-format
|
107 |
+
msgid "Article of %s."
|
108 |
+
msgstr "%s の記事"
|
109 |
+
|
110 |
+
#: ../packages.php:68
|
111 |
msgid "Print Bootstrap css and js"
|
112 |
msgstr "Bootstrap の CSS と js を出力"
|
113 |
|
114 |
+
#: ../packages.php:69
|
115 |
msgid ""
|
116 |
"If your using theme has already including Bootstrap, you deactivate this "
|
117 |
"item."
|
120 |
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
121 |
"下さい。"
|
122 |
|
123 |
+
#: ../packages.php:78
|
124 |
msgid "Print link fontawesome"
|
125 |
msgstr "fontawesome link タグを出力"
|
126 |
|
127 |
+
#: ../packages.php:79
|
128 |
msgid "Print fontawesome link tag to html head."
|
129 |
msgstr ""
|
130 |
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
131 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
132 |
"さい。"
|
133 |
|
134 |
+
#: ../packages.php:88
|
135 |
msgid "Favicon setting"
|
136 |
msgstr "ファビコン設定"
|
137 |
|
138 |
+
#: ../packages.php:89
|
139 |
msgid "About favicon."
|
140 |
msgstr ""
|
141 |
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
160 |
msgid "Print meta Keyword to html head."
|
161 |
msgstr "ヘッダーにメタキーワードを出力します。"
|
162 |
|
163 |
+
#: ../packages.php:113 ../packages.php:152 ../packages.php:170
|
164 |
+
#: ../packages.php:200 ../packages.php:218 ../packages.php:260
|
165 |
+
#: ../packages.php:296 ../packages.php:319
|
166 |
msgid "Setting"
|
167 |
msgstr "設定"
|
168 |
|
169 |
+
#: ../packages.php:126
|
170 |
msgid "Print meta description"
|
171 |
msgstr "メタディスクリプションタグを出力"
|
172 |
|
173 |
+
#: ../packages.php:127
|
174 |
msgid "Print meta description to html head."
|
175 |
msgstr ""
|
176 |
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
177 |
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
178 |
"している場合はチェックを外して下さい。"
|
179 |
|
180 |
+
#: ../packages.php:136
|
181 |
msgid "Main setting page"
|
182 |
msgstr "メイン設定画面"
|
183 |
|
184 |
+
#: ../packages.php:138
|
185 |
msgid "Print og tags to html head."
|
186 |
msgstr "OG タグを html head 内へ出力します。"
|
187 |
|
188 |
+
#: ../packages.php:139
|
189 |
msgid "Print twitter card tags to html head."
|
190 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
191 |
|
192 |
+
#: ../packages.php:140
|
193 |
msgid "Print social bookmark buttons."
|
194 |
msgstr "ソーシャルブックマークボタンを表示します。"
|
195 |
|
196 |
+
#: ../packages.php:141
|
197 |
msgid "Facebook Page Plugin widget."
|
198 |
msgstr "Facebookページプラグインウィジェット"
|
199 |
|
200 |
+
#: ../packages.php:142
|
201 |
msgid "Print Follow me box to content bottom."
|
202 |
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
203 |
|
204 |
+
#: ../packages.php:144
|
205 |
#, php-format
|
206 |
msgid "* You can stop the function separately from the %s."
|
207 |
msgstr "%s から個別に機能を停止する事ができます。"
|
208 |
|
209 |
+
#: ../packages.php:148
|
210 |
msgid "Social media cooperation"
|
211 |
msgstr "ソーシャルメディア連携"
|
212 |
|
213 |
+
#: ../packages.php:167
|
214 |
msgid "Print Google Analytics tracking code."
|
215 |
msgstr ""
|
216 |
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
218 |
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
219 |
"合はチェックを外して下さい。"
|
220 |
|
221 |
+
#: ../packages.php:183
|
222 |
msgid "You can use various widgets."
|
223 |
msgstr ""
|
224 |
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
|
225 |
"「ウィジェット」の設定画面より行って下さい。"
|
226 |
|
227 |
+
#: ../packages.php:185
|
228 |
msgid ""
|
229 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
230 |
"title."
|
231 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
232 |
|
233 |
+
#: ../packages.php:186
|
234 |
msgid ""
|
235 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
236 |
msgstr ""
|
237 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
238 |
|
239 |
+
#: ../packages.php:187
|
240 |
msgid "VK_Profile - display the profile entered in the widget."
|
241 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
242 |
|
243 |
+
#: ../packages.php:188
|
244 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
245 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
246 |
|
247 |
+
#: ../packages.php:189
|
248 |
msgid "VK_3PR area - display the 3PR area."
|
249 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
250 |
|
251 |
+
#: ../packages.php:190
|
252 |
msgid "categories/tags list"
|
253 |
msgstr "カテゴリー/タグ リスト"
|
254 |
|
255 |
+
#: ../packages.php:190
|
256 |
msgid "Displays a categories, tags or format list."
|
257 |
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
258 |
|
259 |
+
#: ../packages.php:191 ../plugins/other_widget/widget-archives.php:9
|
260 |
msgid "archive list"
|
261 |
msgstr "アーカイブリスト"
|
262 |
|
263 |
+
#: ../packages.php:191 ../plugins/other_widget/widget-archives.php:14
|
264 |
msgid ""
|
265 |
"Displays a list of archives. You can choose the post type and also to "
|
266 |
"display archives by month or by year."
|
268 |
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
269 |
"プを選択できます。"
|
270 |
|
271 |
+
#: ../packages.php:196
|
272 |
msgid "Widgets"
|
273 |
msgstr "ウィジェット"
|
274 |
|
275 |
+
#: ../packages.php:214
|
276 |
msgid "CSS customize"
|
277 |
msgstr "CSSカスタマイズ"
|
278 |
|
279 |
+
#: ../packages.php:215
|
280 |
msgid "You can set Customize CSS."
|
281 |
msgstr ""
|
282 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
283 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
284 |
"さい。"
|
285 |
|
286 |
+
#: ../packages.php:233
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
msgid "Child page index"
|
288 |
msgstr "子ページの一覧表示"
|
289 |
|
290 |
+
#: ../packages.php:234
|
291 |
msgid ""
|
292 |
"At the bottom of the specified page, it will display a list of the child "
|
293 |
"page."
|
295 |
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
296 |
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
297 |
|
298 |
+
#: ../packages.php:245
|
299 |
msgid "Page list from ancestor"
|
300 |
msgstr "先祖階層からの子ページリスト表示"
|
301 |
|
302 |
+
#: ../packages.php:246
|
303 |
msgid "Display Page list from ancestor at after content."
|
304 |
msgstr ""
|
305 |
"現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
|
306 |
|
307 |
+
#: ../packages.php:256
|
308 |
+
msgid "Contact Section"
|
309 |
+
msgstr "お問い合わせ"
|
310 |
+
|
311 |
+
#: ../packages.php:257
|
312 |
+
msgid "Display Contact Section at after content."
|
313 |
+
msgstr "お問い合わせ情報を本文の下に表示する"
|
314 |
+
|
315 |
+
#: ../packages.php:274
|
316 |
msgid "Display HTML Site Map"
|
317 |
msgstr "HTMLサイトマップの表示"
|
318 |
|
319 |
+
#: ../packages.php:275
|
320 |
msgid "It displays a HTML Site Map to the specified page."
|
321 |
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
322 |
|
323 |
+
#: ../packages.php:284 ../plugins/call_to_action/view.adminsetting.php:10
|
324 |
msgid "Display the CTA at the end of the post content."
|
325 |
msgstr "投稿内容の最後にCTAを表示します。"
|
326 |
|
327 |
+
#: ../packages.php:286 ../plugins/call_to_action/view.adminsetting.php:11
|
328 |
msgid ""
|
329 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
330 |
"user behavior."
|
332 |
"CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
|
333 |
"情報を表示します。"
|
334 |
|
335 |
+
#: ../packages.php:288 ../plugins/call_to_action/view.adminsetting.php:12
|
336 |
msgid ""
|
337 |
"As an example, text message and a link button for induction to the free "
|
338 |
"sample download page."
|
340 |
"例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
|
341 |
"ンなどです。"
|
342 |
|
343 |
+
#: ../packages.php:292 ../plugins/call_to_action/view.adminsetting.php:6
|
344 |
msgid "Call To Action"
|
345 |
msgstr "Call To Action"
|
346 |
|
347 |
+
#: ../packages.php:301
|
348 |
msgid "Contents setting"
|
349 |
msgstr "CTA表示内容設定"
|
350 |
|
351 |
+
#: ../packages.php:315 ../plugins/insert_ads.php:37
|
352 |
#: ../plugins/insert_ads.php:119
|
353 |
msgid "Insert ads"
|
354 |
msgstr "広告の挿入"
|
355 |
|
356 |
+
#: ../packages.php:316
|
357 |
msgid "Insert ads to content."
|
358 |
msgstr "記事に広告を挿入します"
|
359 |
|
360 |
+
#: ../packages.php:332 ../plugins/related_posts/related_posts.php:57
|
361 |
msgid "Related posts"
|
362 |
msgstr "関連記事を表示"
|
363 |
|
364 |
+
#: ../packages.php:333
|
365 |
msgid "Print Related posts lists to post content bottom."
|
366 |
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
367 |
|
368 |
+
#: ../packages.php:343 ../vkExUnit_admin.php:28
|
369 |
msgid "Automatic Eye Catch insert"
|
370 |
msgstr "アイキャッチ画像自動挿入"
|
371 |
|
372 |
+
#: ../packages.php:344
|
373 |
msgid "Display Eye Catch image at before content."
|
374 |
msgstr ""
|
375 |
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
376 |
"す。"
|
377 |
|
378 |
+
#: ../packages.php:354
|
379 |
+
#, fuzzy
|
380 |
+
msgid "Disable ping back"
|
381 |
+
msgstr "表示しない"
|
382 |
+
|
383 |
+
#: ../packages.php:355
|
384 |
+
#, fuzzy
|
385 |
+
msgid "Disable xmlrpc ping back."
|
386 |
+
msgstr "表示しない"
|
387 |
+
|
388 |
+
#: ../packages.php:364 ../packages.php:365
|
389 |
+
#, fuzzy
|
390 |
+
msgid "Disable dashbord"
|
391 |
+
msgstr "表示しない"
|
392 |
+
|
393 |
#: ../vkExUnit_admin.php:3
|
394 |
msgid "Enable setting"
|
395 |
msgstr "有効化設定"
|
396 |
|
397 |
+
#: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:74
|
398 |
msgid "Select all"
|
399 |
msgstr "全てを選択"
|
400 |
|
401 |
+
#: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:74
|
402 |
msgid "Function"
|
403 |
msgstr "有効化"
|
404 |
|
405 |
+
#: ../vkExUnit_admin.php:16 ../vkExUnit_admin.php:74
|
406 |
msgid "Description"
|
407 |
msgstr "説明"
|
408 |
|
409 |
+
#: ../vkExUnit_admin.php:80
|
410 |
msgid "Extension Setting"
|
411 |
msgstr "拡張設定"
|
412 |
|
413 |
+
#: ../vkExUnit_admin.php:83
|
414 |
msgid "Plugin setting options"
|
415 |
msgstr "プラグイン設定オプション"
|
416 |
|
417 |
+
#: ../vkExUnit_admin.php:85
|
418 |
msgid "Delete myOptions when deactivate me."
|
419 |
msgstr "プラグインを無効化する際にDBに保存したオプション項目を削除します。"
|
420 |
|
426 |
msgid "Do not set eyecatch image automatic."
|
427 |
msgstr "アイキャッチ画像を自動挿入しない"
|
428 |
|
429 |
+
#: ../plugins/child_page_index.php:40
|
430 |
#: ../plugins/other_widget/widget-3pr-area.php:270
|
431 |
#: ../plugins/other_widget/widget-3pr-area.php:312
|
432 |
#: ../plugins/other_widget/widget-3pr-area.php:355
|
722 |
msgstr "共通設定を使用"
|
723 |
|
724 |
#: ../plugins/call_to_action/class.call_to_action.php:90
|
725 |
+
#: ../plugins/call_to_action/class.call_to_action.php:399
|
726 |
msgid "Disable display"
|
727 |
msgstr "表示しない"
|
728 |
|
824 |
msgid "Save CSS"
|
825 |
msgstr "CSSを保存する"
|
826 |
|
827 |
+
#: ../plugins/css_customize/css_customize.php:102
|
828 |
msgid "Your custom CSS was saved."
|
829 |
msgstr "CSSが保存されました"
|
830 |
|
831 |
+
#: ../plugins/css_customize/css_customize.php:105
|
832 |
msgid "Error occured. Please try again."
|
833 |
msgstr "何らかのエラー!! また試してみてください"
|
834 |
|
894 |
#: ../plugins/other_widget/widget-3pr-area.php:48
|
895 |
#: ../plugins/other_widget/widget-3pr-area.php:98
|
896 |
#: ../plugins/other_widget/widget-3pr-area.php:149
|
897 |
+
#: ../plugins/other_widget/widget-new-posts.php:150
|
898 |
#: ../plugins/other_widget/widget-pr-blocks.php:74
|
899 |
#: ../plugins/other_widget/widget-profile.php:40
|
900 |
#: ../plugins/sns/function_fbPagePlugin.php:79
|
959 |
msgid "3PR area3 setting"
|
960 |
msgstr "3PR エリア3 設定"
|
961 |
|
962 |
+
#: ../plugins/other_widget/widget-archives.php:53
|
963 |
#: ../plugins/other_widget/widget-archives.php:54
|
|
|
964 |
msgid "Monthly archives"
|
965 |
msgstr "月別アーカイブ"
|
966 |
|
967 |
+
#: ../plugins/other_widget/widget-archives.php:63
|
|
|
968 |
#: ../plugins/other_widget/widget-new-posts.php:147
|
969 |
+
#: ../plugins/other_widget/widget-new-posts.php:148
|
970 |
msgid "Title"
|
971 |
msgstr "タイトル"
|
972 |
|
973 |
+
#: ../plugins/other_widget/widget-archives.php:67
|
974 |
msgid "Post type"
|
975 |
msgstr "ポストタイプ"
|
976 |
|
977 |
+
#: ../plugins/other_widget/widget-archives.php:77
|
978 |
msgid "Monthly"
|
979 |
msgstr "月別"
|
980 |
|
981 |
+
#: ../plugins/other_widget/widget-archives.php:79
|
982 |
msgid "Yearly"
|
983 |
msgstr "年別"
|
984 |
|
985 |
+
#: ../plugins/other_widget/widget-archives.php:97
|
986 |
msgid "archive"
|
987 |
msgstr "アーカイブ"
|
988 |
|
997 |
|
998 |
#: ../plugins/other_widget/widget-new-posts.php:11
|
999 |
#: ../plugins/other_widget/widget-new-posts.php:29
|
1000 |
+
#: ../plugins/other_widget/widget-new-posts.php:137
|
1001 |
msgid "Recent Posts"
|
1002 |
msgstr "最新記事"
|
1003 |
|
1005 |
msgid "Displays a list of your most recent posts"
|
1006 |
msgstr "最新の投稿記事リストを表示します。"
|
1007 |
|
1008 |
+
#: ../plugins/other_widget/widget-new-posts.php:146
|
1009 |
msgid "Display Format"
|
1010 |
msgstr "表示形式"
|
1011 |
|
1012 |
+
#: ../plugins/other_widget/widget-new-posts.php:147
|
1013 |
msgid "Thumbnail"
|
1014 |
msgstr "サムネイル画像"
|
1015 |
|
|
|
1016 |
#: ../plugins/other_widget/widget-new-posts.php:147
|
1017 |
+
#: ../plugins/other_widget/widget-new-posts.php:148
|
1018 |
msgid "Date"
|
1019 |
msgstr "日付"
|
1020 |
|
1021 |
+
#: ../plugins/other_widget/widget-new-posts.php:148
|
1022 |
#: ../plugins/other_widget/widget-taxonomies.php:47
|
1023 |
#: ../plugins/other_widget/widget-taxonomies.php:48
|
1024 |
msgid "Category"
|
1025 |
msgstr "カテゴリー"
|
1026 |
|
1027 |
+
#: ../plugins/other_widget/widget-new-posts.php:155
|
1028 |
msgid "Display count"
|
1029 |
msgstr "表示する記事数"
|
1030 |
|
1031 |
+
#: ../plugins/other_widget/widget-new-posts.php:160
|
1032 |
msgid "Slug for the custom type you want to display"
|
1033 |
msgstr "表示したい記事タイプ"
|
1034 |
|
1035 |
+
#: ../plugins/other_widget/widget-new-posts.php:165
|
1036 |
msgid "taxonomy ID"
|
1037 |
msgstr "カテゴリー(タクソノミー)ID"
|
1038 |
|
1039 |
+
#: ../plugins/other_widget/widget-new-posts.php:167
|
1040 |
msgid "if you need filtering by term, add the term ID separate by \",\"."
|
1041 |
msgstr ""
|
1042 |
"特定のカテゴリーのみ表示したい場合は<br/>カンマ(,)区切りでカテゴリーIDを入力"
|
1043 |
"します。"
|
1044 |
|
1045 |
+
#: ../plugins/other_widget/widget-new-posts.php:169
|
1046 |
msgid "if empty this area, I will do not filtering."
|
1047 |
msgstr "空欄の場合はフィルタリングは行いません。"
|
1048 |
|
1261 |
msgid "HTML Sitemap"
|
1262 |
msgstr "HTMLサイトマップ"
|
1263 |
|
1264 |
+
#: ../plugins/sitemap_page/sitemap_page.php:223
|
1265 |
msgid "Display a HTML sitemap"
|
1266 |
msgstr "HTMLサイトマップの表示"
|
1267 |
|
1427 |
msgid "News from VK All in One Expansion Unit"
|
1428 |
msgstr "VK All in One Expansion Unit からのお知らせ"
|
1429 |
|
1430 |
+
#: ../plugins_admin/news_from_exUnit.php:31
|
1431 |
msgid "Sorry, there is no post"
|
1432 |
msgstr "お知らせはありません。"
|
1433 |
|
|
|
|
|
|
|
|
|
1434 |
#~ msgid "* It is necessary to set the Theme options page."
|
1435 |
#~ msgstr "* テーマオプションページで設定する必要があります。"
|
1436 |
|
packages.php
CHANGED
@@ -224,27 +224,9 @@ $required_packages[] = array(
|
|
224 |
'include' => 'css_customize/css_customize.php',
|
225 |
);
|
226 |
|
227 |
-
/*-------------------------------------------*/
|
228 |
-
/* Contact Section
|
229 |
-
/*-------------------------------------------*/
|
230 |
-
$required_packages[] = array(
|
231 |
-
'name' => 'contact_section',
|
232 |
-
'title' => __( 'Contact Section', 'vkExUnit' ),
|
233 |
-
'description' => __( 'Display Contact Section at after content.', 'vkExUnit' ),
|
234 |
-
'attr' => array(
|
235 |
-
array(
|
236 |
-
'name' => __( 'Setting','vkExUnit' ),
|
237 |
-
'url' => admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_contact',
|
238 |
-
'enable_only' => 1,
|
239 |
-
),
|
240 |
-
),
|
241 |
-
'default' => true,
|
242 |
-
'include' => 'contact_section.php',
|
243 |
-
);
|
244 |
-
|
245 |
/*-------------------------------------------*/
|
246 |
/* ChildPageIndex
|
247 |
-
|
248 |
|
249 |
$required_packages[] = array(
|
250 |
'name' => 'childPageIndex',
|
@@ -266,6 +248,24 @@ $required_packages[] = array(
|
|
266 |
'include' => 'pageList_ancestor.php',
|
267 |
);
|
268 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
/*-------------------------------------------*/
|
270 |
/* Sitemap_page
|
271 |
/*-------------------------------------------*/
|
224 |
'include' => 'css_customize/css_customize.php',
|
225 |
);
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
/*-------------------------------------------*/
|
228 |
/* ChildPageIndex
|
229 |
+
/*-------------------------------------------*/
|
230 |
|
231 |
$required_packages[] = array(
|
232 |
'name' => 'childPageIndex',
|
248 |
'include' => 'pageList_ancestor.php',
|
249 |
);
|
250 |
|
251 |
+
/*-------------------------------------------*/
|
252 |
+
/* Contact Section
|
253 |
+
/*-------------------------------------------*/
|
254 |
+
$required_packages[] = array(
|
255 |
+
'name' => 'contact_section',
|
256 |
+
'title' => __( 'Contact Section', 'vkExUnit' ),
|
257 |
+
'description' => __( 'Display Contact Section at after content.', 'vkExUnit' ),
|
258 |
+
'attr' => array(
|
259 |
+
array(
|
260 |
+
'name' => __( 'Setting','vkExUnit' ),
|
261 |
+
'url' => admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_contact',
|
262 |
+
'enable_only' => 1,
|
263 |
+
),
|
264 |
+
),
|
265 |
+
'default' => true,
|
266 |
+
'include' => 'contact_section.php',
|
267 |
+
);
|
268 |
+
|
269 |
/*-------------------------------------------*/
|
270 |
/* Sitemap_page
|
271 |
/*-------------------------------------------*/
|
plugins/disable_dashbord.php
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
add_action('wp_dashboard_setup', 'vkExUnit_disable_dash_hook', 1);
|
4 |
+
function vkExUnit_disable_dash_hook(){
|
5 |
+
remove_action( 'wp_dashboard_setup', 'vkExUnit_dashboard_widget' );
|
6 |
+
}
|
plugins/sns/function_og.php
CHANGED
@@ -62,7 +62,7 @@ function vkExUnit_print_og() {
|
|
62 |
}
|
63 |
}
|
64 |
|
65 |
-
$vkExUnitOGP .= '<!-- [ /'.vkExUnit_get_name().' OGP ] -->'."\n";
|
66 |
if ( isset( $vkExUnit_sns_options['ogTagDisplay'] ) && $vkExUnit_sns_options['ogTagDisplay'] != true ) {
|
67 |
$vkExUnitOGP = '';
|
68 |
}
|
62 |
}
|
63 |
}
|
64 |
|
65 |
+
$vkExUnitOGP .= '<!-- [ / '.vkExUnit_get_name().' OGP ] -->'."\n";
|
66 |
if ( isset( $vkExUnit_sns_options['ogTagDisplay'] ) && $vkExUnit_sns_options['ogTagDisplay'] != true ) {
|
67 |
$vkExUnitOGP = '';
|
68 |
}
|
plugins/sns/function_twitterCard.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
add_post_type_support( 'page', 'excerpt' ); // add excerpt
|
4 |
|
5 |
-
|
6 |
|
7 |
function vkExUnit_add_twitterCard() {
|
8 |
global $vkExUnit_sns_options;
|
@@ -28,14 +28,14 @@ function vkExUnit_add_twitterCard() {
|
|
28 |
preg_match( '/https?:\/\/(.+?)\//i', admin_url(), $match );
|
29 |
// image size
|
30 |
if ( isset( $vkExUnit_sns_options['twitterId'] ) && $vkExUnit_sns_options['twitterId'] && $card_image_url ) :?>
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
<?php endif;
|
41 |
}
|
2 |
|
3 |
add_post_type_support( 'page', 'excerpt' ); // add excerpt
|
4 |
|
5 |
+
add_action( 'wp_head', 'vkExUnit_add_twitterCard',21 );
|
6 |
|
7 |
function vkExUnit_add_twitterCard() {
|
8 |
global $vkExUnit_sns_options;
|
28 |
preg_match( '/https?:\/\/(.+?)\//i', admin_url(), $match );
|
29 |
// image size
|
30 |
if ( isset( $vkExUnit_sns_options['twitterId'] ) && $vkExUnit_sns_options['twitterId'] && $card_image_url ) :?>
|
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] ?>">
|
38 |
+
<meta name="twitter:site" content="@<?php echo $vkExUnit_sns_options['twitterId'];?>">
|
39 |
+
<!-- [ / <?php echo vkExUnit_get_name(); ?> twitter card ] -->
|
40 |
<?php endif;
|
41 |
}
|
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.3
|
7 |
-
Stable tag: 3.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
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.3
|
7 |
+
Stable tag: 3.7.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: http://ex-unit.vektor-inc.co.jp
|
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: 3.7.
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
@@ -103,8 +103,11 @@ require vkExUnit_get_directory() . '/plugins/page_custom_field.php';
|
|
103 |
vkExUnit_package_include(); // package_manager.php
|
104 |
|
105 |
if ( vkExUnit_package_is_enable( 'wpTitle' ) ) {
|
106 |
-
|
107 |
-
|
|
|
|
|
|
|
108 |
|
109 |
/*-------------------------------------------*/
|
110 |
/* Add vkExUnit css
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: http://ex-unit.vektor-inc.co.jp
|
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: 3.7.1
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
103 |
vkExUnit_package_include(); // package_manager.php
|
104 |
|
105 |
if ( vkExUnit_package_is_enable( 'wpTitle' ) ) {
|
106 |
+
//WordPress -> 4.3
|
107 |
+
add_filter( 'wp_title', 'vkExUnit_get_wp_head_title', 11 );
|
108 |
+
//WordPress 4.4 ->
|
109 |
+
add_filter( 'pre_get_document_title', 'vkExUnit_get_wp_head_title', 11 );
|
110 |
+
}
|
111 |
|
112 |
/*-------------------------------------------*/
|
113 |
/* Add vkExUnit css
|