Version Description
- Add Archive widget.
- Add Category & Custom taxonomy widget.
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 0.1.5.0 |
Comparing to | |
See all releases |
Code changes from version 0.1.4.1 to 0.1.5.0
- _scss/admin.scss +1 -0
- _scss/vkexunit_admin.scss +0 -14
- common_helpers.php +2 -2
- css/admin.css +2 -0
- css/vkexunit_admin.css +0 -16
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +205 -125
- languages/vkexunit.mo +0 -0
- languages/vkexunit.pot +172 -102
- plugins/other_widget/other_widget.php +3 -1
- plugins/other_widget/widget-archives.php +112 -0
- plugins/other_widget/widget-taxonomies.php +103 -0
- plugins/sns/function_follow.php +6 -1
- plugins/sns/function_og.php +1 -4
- plugins/sns/sns.php +26 -16
- plugins/sns/sns_admin.php +26 -19
- readme.txt +5 -1
- vkExUnit.php +14 -1
- vkExUnit_admin.php +25 -5
_scss/admin.scss
CHANGED
@@ -1,6 +1,7 @@
|
|
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;}
|
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;}
|
_scss/vkexunit_admin.scss
DELETED
@@ -1,14 +0,0 @@
|
|
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;}
|
7 |
-
.optionNav ul li:hover { background-color: #666; }
|
8 |
-
.optionNav ul li a { display:block; overflow:hidden;padding:0.5em; text-decoration: none;color:#666;font-size:12px; }
|
9 |
-
.optionNav ul li:hover a { color: #fff;border:none; }
|
10 |
-
.optionNav ul li.current { background-color: #333;color:#fff;
|
11 |
-
a { color:#fff; }
|
12 |
-
}
|
13 |
-
|
14 |
-
.vkExUnit_admin_page.wrap h3 { background-color:#333; color:#fff; padding:10px 15px;font-size:150%;margin-top:0;border-left:5px solid #e50000;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
common_helpers.php
CHANGED
@@ -188,9 +188,9 @@ function vkExUnit_get_pageDescription() {
|
|
188 |
$pageDescription .= ' '.get_bloginfo('name').' '.get_bloginfo('description');
|
189 |
}
|
190 |
} else if (is_page() || is_single()) {
|
191 |
-
$metaExcerpt = $post->
|
192 |
if ($metaExcerpt) {
|
193 |
-
$pageDescription = $
|
194 |
} else {
|
195 |
$pageDescription = mb_substr( strip_tags($post->post_content), 0, 240 ); // kill tags and trim 240 chara
|
196 |
}
|
188 |
$pageDescription .= ' '.get_bloginfo('name').' '.get_bloginfo('description');
|
189 |
}
|
190 |
} else if (is_page() || is_single()) {
|
191 |
+
$metaExcerpt = $post->post_excerpt;
|
192 |
if ($metaExcerpt) {
|
193 |
+
$pageDescription = $metaExcerpt;
|
194 |
} else {
|
195 |
$pageDescription = mb_substr( strip_tags($post->post_content), 0, 240 ); // kill tags and trim 240 chara
|
196 |
}
|
css/admin.css
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
.optionNav { display: block !important; overflow: hidden; }
|
2 |
|
3 |
.optionNav ul { display: block; overflow: hidden; margin: 0; padding: 0 5px; }
|
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; }
|
css/vkexunit_admin.css
DELETED
@@ -1,16 +0,0 @@
|
|
1 |
-
.optionNav { display: block !important; overflow: hidden; }
|
2 |
-
|
3 |
-
.optionNav ul { display: block; overflow: hidden; margin: 0; padding: 0 5px; }
|
4 |
-
|
5 |
-
.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; }
|
6 |
-
|
7 |
-
.optionNav ul li:hover { background-color: #666; }
|
8 |
-
|
9 |
-
.optionNav ul li a { display: block; overflow: hidden; padding: 0.5em; text-decoration: none; color: #666; font-size: 12px; }
|
10 |
-
|
11 |
-
.optionNav ul li:hover a { color: #fff; border: none; }
|
12 |
-
|
13 |
-
.optionNav ul li.current { background-color: #333; color: #fff; }
|
14 |
-
.optionNav ul li.current a { color: #fff; }
|
15 |
-
|
16 |
-
.vkExUnit_admin_page.wrap h3 { background-color: #333; color: #fff; padding: 10px 15px; font-size: 150%; margin-top: 0; border-left: 5px solid #e50000; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/vkExUnit-ja.mo
CHANGED
Binary file
|
languages/vkExUnit-ja.po
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2015-07-
|
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"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit 1.
|
12 |
"X-Poedit-Basepath: .\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_x;_e\n"
|
15 |
-
"Language: ja\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../admin_wrapper.php:7 ../admin_wrapper.php:8
|
@@ -98,20 +98,20 @@ msgstr "オーディオ"
|
|
98 |
msgid "Chats"
|
99 |
msgstr "チャット"
|
100 |
|
101 |
-
#: ../common_helpers.php:262
|
102 |
#: ../plugins/other_widget/old/widget-taxonomy-list.php:81
|
103 |
msgid "Archives"
|
104 |
msgstr "アーカイブ"
|
105 |
|
106 |
-
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:
|
107 |
msgid "Select all"
|
108 |
msgstr "全てを選択"
|
109 |
|
110 |
-
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:
|
111 |
msgid "Function"
|
112 |
msgstr "有効化"
|
113 |
|
114 |
-
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:
|
115 |
msgid "Description"
|
116 |
msgstr "説明"
|
117 |
|
@@ -147,7 +147,7 @@ msgstr ""
|
|
147 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
148 |
"さい。"
|
149 |
|
150 |
-
#: ../vkExUnit_admin.php:57 ../vkExUnit_admin.php:
|
151 |
msgid "Choose Print meta description."
|
152 |
msgstr "出力する meta description を選択して下さい。"
|
153 |
|
@@ -157,7 +157,9 @@ msgstr "ファビコン設定"
|
|
157 |
|
158 |
#: ../vkExUnit_admin.php:66
|
159 |
msgid "About favicon."
|
160 |
-
msgstr "
|
|
|
|
|
161 |
|
162 |
#: ../vkExUnit_admin.php:75
|
163 |
msgid "Choose Rewrite the title tag"
|
@@ -182,59 +184,69 @@ msgstr "メタキーワードを選んでください。"
|
|
182 |
msgid "Print meta Keyword"
|
183 |
msgstr "メタキーワードを出力"
|
184 |
|
185 |
-
#: ../vkExUnit_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
msgid "Print meta Keyword to html head."
|
187 |
msgstr "ヘッダーにメタキーワードを出力します。"
|
188 |
|
189 |
-
#: ../vkExUnit_admin.php:
|
190 |
msgid "Print meta description"
|
191 |
msgstr "メタディスクリプションタグを出力"
|
192 |
|
193 |
-
#: ../vkExUnit_admin.php:
|
194 |
msgid "Print meta description to html head."
|
195 |
msgstr ""
|
196 |
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
197 |
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
198 |
"している場合はチェックを外して下さい。"
|
199 |
|
200 |
-
#: ../vkExUnit_admin.php:
|
201 |
msgid "Choose Social media cooperation."
|
202 |
msgstr "連携するソーシャルメディアを選択します。"
|
203 |
|
204 |
-
#: ../vkExUnit_admin.php:
|
205 |
msgid "Social media cooperation."
|
206 |
msgstr "ソーシャルメディアとの連携"
|
207 |
|
208 |
-
#: ../vkExUnit_admin.php:
|
209 |
-
msgid "Setting"
|
210 |
-
msgstr "設定"
|
211 |
-
|
212 |
-
#: ../vkExUnit_admin.php:150
|
213 |
msgid "Print og tags to html head."
|
214 |
msgstr "OG タグを html head 内へ出力します。"
|
215 |
|
216 |
-
#: ../vkExUnit_admin.php:
|
217 |
msgid "Print twitter card tags to html head."
|
218 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
219 |
|
220 |
-
#: ../vkExUnit_admin.php:
|
221 |
-
msgid "Print social
|
222 |
-
msgstr "
|
223 |
|
224 |
-
#: ../vkExUnit_admin.php:
|
225 |
-
msgid "Facebook Page Plugin."
|
226 |
-
msgstr ""
|
227 |
-
"Facebookページプラグインを表示します。<br><br>\n"
|
228 |
-
"※「設定」のリンクより「SNS Settings」画面へすすみ各ソーシャルメディアの設定を"
|
229 |
-
"行って下さい。\n"
|
230 |
-
"使用中のテーマやプラグインでソーシャルメディアとの連携を行う場合はチェックを"
|
231 |
-
"外して下さい。"
|
232 |
|
233 |
#: ../vkExUnit_admin.php:163
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
msgid "Choose Print Google Analytics tracking code."
|
235 |
msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
|
236 |
|
237 |
-
#: ../vkExUnit_admin.php:
|
238 |
msgid "Print Google Analytics tracking code."
|
239 |
msgstr ""
|
240 |
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
@@ -242,67 +254,109 @@ msgstr ""
|
|
242 |
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
243 |
"合はチェックを外して下さい。"
|
244 |
|
245 |
-
#: ../vkExUnit_admin.php:
|
246 |
msgid "Choose Related posts."
|
247 |
msgstr "関連記事を選択"
|
248 |
|
249 |
-
#: ../vkExUnit_admin.php:
|
250 |
msgid "Related posts"
|
251 |
msgstr "関連記事を表示"
|
252 |
|
253 |
-
#: ../vkExUnit_admin.php:
|
254 |
msgid "Print Related posts lists to post content bottom."
|
255 |
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
256 |
|
257 |
-
#: ../vkExUnit_admin.php:
|
258 |
msgid "Choose other widgets."
|
259 |
msgstr "Other ウィジェットを選択"
|
260 |
|
261 |
-
#: ../vkExUnit_admin.php:
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
264 |
|
265 |
-
#: ../vkExUnit_admin.php:
|
266 |
msgid "You can use various widgets."
|
267 |
msgstr ""
|
268 |
-
"
|
269 |
-
"
|
270 |
|
271 |
-
#: ../vkExUnit_admin.php:
|
272 |
msgid ""
|
273 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
274 |
"title."
|
275 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
276 |
|
277 |
-
#: ../vkExUnit_admin.php:
|
278 |
msgid ""
|
279 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
280 |
msgstr ""
|
281 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
282 |
|
283 |
-
#: ../vkExUnit_admin.php:
|
284 |
msgid "VK_Profile - display the profile entered in the widget."
|
285 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
286 |
|
287 |
-
#: ../vkExUnit_admin.php:
|
288 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
289 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
290 |
|
291 |
-
#: ../vkExUnit_admin.php:
|
292 |
msgid "VK_3PR area - display the 3PR area."
|
293 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
294 |
|
295 |
-
#: ../vkExUnit_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
msgid "CSS customize"
|
297 |
msgstr "CSSカスタマイズ"
|
298 |
|
299 |
-
#: ../vkExUnit_admin.php:
|
300 |
msgid "You can set Customize CSS."
|
301 |
msgstr ""
|
302 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
303 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
304 |
"さい。"
|
305 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
#: ../plugins/icons.php:26 ../plugins/icons.php:54
|
307 |
msgid "icon setting"
|
308 |
msgstr "アイコン設定"
|
@@ -353,7 +407,7 @@ msgid ""
|
|
353 |
"the site."
|
354 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
355 |
|
356 |
-
#: ../plugins/google_analytics/ga_admin.php:16 ../plugins/sns/sns_admin.php:
|
357 |
#: ../plugins/sns/old/sns_admin.php:20 ../plugins/sns/old/sns_admin.php:61
|
358 |
#: ../plugins/sns/old/sns_admin.php:79 ../plugins/sns/old/sns_admin.php:98
|
359 |
#: ../plugins/sns/old/sns_admin.php:115
|
@@ -576,6 +630,23 @@ msgstr "3PR エリア3 設定"
|
|
576 |
msgid "Read more"
|
577 |
msgstr "詳しくはこちら"
|
578 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
579 |
#: ../plugins/other_widget/widget-new-posts.php:11
|
580 |
msgid "Displays a list of your most recent posts"
|
581 |
msgstr "最新の投稿記事リストを表示します。"
|
@@ -603,6 +674,7 @@ msgid "page content to widget"
|
|
603 |
msgstr "トップのページコンテンツ"
|
604 |
|
605 |
#: ../plugins/other_widget/widget-page.php:30
|
|
|
606 |
#: ../plugins/other_widget/old/widget-page-content.php:30
|
607 |
#: ../plugins/other_widget/old/widget-taxonomy-list.php:61
|
608 |
msgid "Display page"
|
@@ -672,30 +744,30 @@ msgstr "linkedin リンク先ページのURL"
|
|
672 |
msgid "Site's Profile"
|
673 |
msgstr "プロフィール"
|
674 |
|
675 |
-
#: ../plugins/other_widget/
|
676 |
-
msgid ""
|
677 |
-
|
678 |
-
"display archives by month or by year."
|
679 |
-
msgstr ""
|
680 |
-
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
681 |
-
"プを選択できます。"
|
682 |
|
683 |
-
#: ../plugins/other_widget/
|
684 |
-
msgid "
|
685 |
-
msgstr "
|
686 |
|
687 |
-
#: ../plugins/other_widget/
|
688 |
-
#: ../plugins/other_widget/
|
689 |
-
|
690 |
-
|
|
|
|
|
691 |
|
692 |
-
#: ../plugins/other_widget/
|
693 |
-
|
694 |
-
|
|
|
695 |
|
696 |
-
#: ../plugins/other_widget/
|
697 |
-
|
698 |
-
|
|
|
699 |
|
700 |
#: ../plugins/other_widget/old/widget-child-page-list.php:9
|
701 |
msgid "Displays list of child page for the current page."
|
@@ -729,27 +801,6 @@ msgstr "ブログエントリー"
|
|
729 |
msgid "Heading title"
|
730 |
msgstr "見出しタイトル"
|
731 |
|
732 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:11
|
733 |
-
msgid "Displays a categories, tags or format list."
|
734 |
-
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
735 |
-
|
736 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:17
|
737 |
-
msgid "categories/tags list"
|
738 |
-
msgstr "カテゴリー/タグ リスト"
|
739 |
-
|
740 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:48
|
741 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:49
|
742 |
-
msgid "Category"
|
743 |
-
msgstr "カテゴリー"
|
744 |
-
|
745 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:57
|
746 |
-
msgid "Label to display"
|
747 |
-
msgstr "表示するラベル"
|
748 |
-
|
749 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:76
|
750 |
-
msgid "Blog"
|
751 |
-
msgstr "ブログ"
|
752 |
-
|
753 |
#: ../plugins/sns/function_fbPagePlugin.php:10
|
754 |
msgid "Displays a Facebook Page Plugin"
|
755 |
msgstr "Facebook ページプラグインを表示します。"
|
@@ -771,10 +822,10 @@ msgid "Show Page Posts"
|
|
771 |
msgstr "タイムラインを表示"
|
772 |
|
773 |
#: ../plugins/sns/function_follow.php:11
|
774 |
-
msgid "Follow me
|
775 |
-
msgstr "
|
776 |
|
777 |
-
#: ../plugins/sns/sns.php:
|
778 |
msgid "SNS"
|
779 |
msgstr "SNS"
|
780 |
|
@@ -782,35 +833,15 @@ msgstr "SNS"
|
|
782 |
msgid "SNS Settings"
|
783 |
msgstr "SNS設定"
|
784 |
|
785 |
-
#: ../plugins/sns/sns_admin.php:13
|
786 |
-
msgid "Do not output the OG"
|
787 |
-
msgstr "OGタグ出力設定"
|
788 |
-
|
789 |
-
#: ../plugins/sns/sns_admin.php:15
|
790 |
-
msgid ""
|
791 |
-
"If other plug-ins are used for the OG, do not output the OG using this "
|
792 |
-
"plugin."
|
793 |
-
msgstr ""
|
794 |
-
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
795 |
-
"る場合は、このプラグインでの出力は必要ありません。"
|
796 |
-
|
797 |
-
#: ../plugins/sns/sns_admin.php:19
|
798 |
-
msgid "Output OG tags(default)"
|
799 |
-
msgstr "OGタグを出力する"
|
800 |
-
|
801 |
-
#: ../plugins/sns/sns_admin.php:20
|
802 |
-
msgid "Do not output OG tags"
|
803 |
-
msgstr "OGタグを出力しない"
|
804 |
-
|
805 |
-
#: ../plugins/sns/sns_admin.php:32 ../plugins/sns/old/sns_admin.php:26
|
806 |
msgid "facebook application ID"
|
807 |
msgstr "facebookアプリケーションID"
|
808 |
|
809 |
-
#: ../plugins/sns/sns_admin.php:
|
810 |
msgid "I will check and get the application ID"
|
811 |
msgstr "アプリケーションIDを確認・取得する "
|
812 |
|
813 |
-
#: ../plugins/sns/sns_admin.php:
|
814 |
msgid ""
|
815 |
"* If an application ID is not specified, neither a Like button nor the "
|
816 |
"comment field displays and operates correctly."
|
@@ -818,7 +849,7 @@ msgstr ""
|
|
818 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
819 |
"ん。"
|
820 |
|
821 |
-
#: ../plugins/sns/sns_admin.php:
|
822 |
msgid ""
|
823 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
824 |
"much about how to get application ID for Facebook."
|
@@ -826,15 +857,15 @@ msgstr ""
|
|
826 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
827 |
"アプリケーションID 取得」などで検索して下さい。"
|
828 |
|
829 |
-
#: ../plugins/sns/sns_admin.php:
|
830 |
msgid "facebook page URL"
|
831 |
msgstr "FacebookページURL"
|
832 |
|
833 |
-
#: ../plugins/sns/sns_admin.php:
|
834 |
msgid "OG default image"
|
835 |
msgstr "デフォルトのOGPイメージ"
|
836 |
|
837 |
-
#: ../plugins/sns/sns_admin.php:
|
838 |
msgid ""
|
839 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
840 |
"image that appears on the Facebook timeline."
|
@@ -842,26 +873,66 @@ msgstr ""
|
|
842 |
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
843 |
"ムラインに表示されます。"
|
844 |
|
845 |
-
#: ../plugins/sns/sns_admin.php:
|
846 |
msgid "If a featured image is specified for the page, it takes precedence."
|
847 |
msgstr ""
|
848 |
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
849 |
"す。"
|
850 |
|
851 |
-
#: ../plugins/sns/sns_admin.php:
|
852 |
msgid "Select an image"
|
853 |
msgstr "画像を選択"
|
854 |
|
855 |
-
#: ../plugins/sns/sns_admin.php:
|
856 |
msgid ""
|
857 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
858 |
"recommended."
|
859 |
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
860 |
|
861 |
-
#: ../plugins/sns/sns_admin.php:
|
862 |
msgid "twitter ID"
|
863 |
msgstr "twitterアカウント"
|
864 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
865 |
#: ../plugins/sns/old/sns.php:378
|
866 |
msgid "* It is necessary to set the Theme options page."
|
867 |
msgstr "* テーマオプションページで設定する必要があります。"
|
@@ -1013,6 +1084,15 @@ msgstr "BizVektor を使用して OGP タグを出力しない。"
|
|
1013 |
msgid "Page top"
|
1014 |
msgstr "ページ先頭へ"
|
1015 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1016 |
#~ msgctxt "Archive description"
|
1017 |
#~ msgid "Article of %s."
|
1018 |
#~ msgstr "%s の記事"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-12 17:11+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"
|
8 |
+
"Language: ja\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.7\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_x;_e\n"
|
|
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../admin_wrapper.php:7 ../admin_wrapper.php:8
|
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:298
|
107 |
msgid "Select all"
|
108 |
msgstr "全てを選択"
|
109 |
|
110 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:298
|
111 |
msgid "Function"
|
112 |
msgstr "有効化"
|
113 |
|
114 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:298
|
115 |
msgid "Description"
|
116 |
msgstr "説明"
|
117 |
|
147 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
148 |
"さい。"
|
149 |
|
150 |
+
#: ../vkExUnit_admin.php:57 ../vkExUnit_admin.php:121
|
151 |
msgid "Choose Print meta description."
|
152 |
msgstr "出力する meta description を選択して下さい。"
|
153 |
|
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"
|
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:231
|
189 |
+
#: ../vkExUnit_admin.php:264
|
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 |
"のテーマやプラグインで 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 ../vkExUnit_admin.php:254
|
270 |
msgid "Choose other widgets."
|
271 |
msgstr "Other ウィジェットを選択"
|
272 |
|
273 |
+
#: ../vkExUnit_admin.php:228
|
274 |
+
msgid "Widgets"
|
275 |
+
msgstr "ウィジェット"
|
276 |
|
277 |
+
#: ../vkExUnit_admin.php:236
|
278 |
msgid "You can use various widgets."
|
279 |
msgstr ""
|
280 |
+
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
|
281 |
+
"「ウィジェット」の設定画面より行って下さい。"
|
282 |
|
283 |
+
#: ../vkExUnit_admin.php:238
|
284 |
msgid ""
|
285 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
286 |
"title."
|
287 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
288 |
|
289 |
+
#: ../vkExUnit_admin.php:239
|
290 |
msgid ""
|
291 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
292 |
msgstr ""
|
293 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
294 |
|
295 |
+
#: ../vkExUnit_admin.php:240
|
296 |
msgid "VK_Profile - display the profile entered in the widget."
|
297 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
298 |
|
299 |
+
#: ../vkExUnit_admin.php:241
|
300 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
301 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
302 |
|
303 |
+
#: ../vkExUnit_admin.php:242
|
304 |
msgid "VK_3PR area - display the 3PR area."
|
305 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
306 |
|
307 |
+
#: ../vkExUnit_admin.php:243
|
308 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:17
|
309 |
+
msgid "categories/tags list"
|
310 |
+
msgstr "カテゴリー/タグ リスト"
|
311 |
+
|
312 |
+
#: ../vkExUnit_admin.php:243
|
313 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:11
|
314 |
+
msgid "Displays a categories, tags or format list."
|
315 |
+
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
316 |
+
|
317 |
+
#: ../vkExUnit_admin.php:244 ../plugins/other_widget/widget-archives.php:14
|
318 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:14
|
319 |
+
msgid "archive list"
|
320 |
+
msgstr "アーカイブリスト"
|
321 |
+
|
322 |
+
#: ../vkExUnit_admin.php:244 ../plugins/other_widget/widget-archives.php:12
|
323 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:12
|
324 |
+
msgid ""
|
325 |
+
"Displays a list of archives. You can choose the post type and also to "
|
326 |
+
"display archives by month or by year."
|
327 |
+
msgstr ""
|
328 |
+
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
329 |
+
"プを選択できます。"
|
330 |
+
|
331 |
+
#: ../vkExUnit_admin.php:259
|
332 |
msgid "CSS customize"
|
333 |
msgstr "CSSカスタマイズ"
|
334 |
|
335 |
+
#: ../vkExUnit_admin.php:271
|
336 |
msgid "You can set Customize CSS."
|
337 |
msgstr ""
|
338 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
339 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
340 |
"さい。"
|
341 |
|
342 |
+
#: ../vkExUnit_admin.php:280 ../vkExUnit_admin.php:285
|
343 |
+
msgid "Automatic Eye Catch insert"
|
344 |
+
msgstr "アイキャッチ画像自動挿入"
|
345 |
+
|
346 |
+
#: ../vkExUnit_admin.php:289
|
347 |
+
msgid "Display Eye Catch image at before content."
|
348 |
+
msgstr ""
|
349 |
+
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
350 |
+
"す。"
|
351 |
+
|
352 |
+
#: ../plugins/auto_eyecatch.php:32
|
353 |
+
msgid "Automatic EyeCatch"
|
354 |
+
msgstr "アイキャッチ自動挿入"
|
355 |
+
|
356 |
+
#: ../plugins/auto_eyecatch.php:42
|
357 |
+
msgid "Do not set eyecatch image automatic."
|
358 |
+
msgstr "アイキャッチ画像を自動挿入しない"
|
359 |
+
|
360 |
#: ../plugins/icons.php:26 ../plugins/icons.php:54
|
361 |
msgid "icon setting"
|
362 |
msgstr "アイコン設定"
|
407 |
"the site."
|
408 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
409 |
|
410 |
+
#: ../plugins/google_analytics/ga_admin.php:16 ../plugins/sns/sns_admin.php:31
|
411 |
#: ../plugins/sns/old/sns_admin.php:20 ../plugins/sns/old/sns_admin.php:61
|
412 |
#: ../plugins/sns/old/sns_admin.php:79 ../plugins/sns/old/sns_admin.php:98
|
413 |
#: ../plugins/sns/old/sns_admin.php:115
|
630 |
msgid "Read more"
|
631 |
msgstr "詳しくはこちら"
|
632 |
|
633 |
+
#: ../plugins/other_widget/widget-archives.php:49
|
634 |
+
#: ../plugins/other_widget/widget-archives.php:50
|
635 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:49
|
636 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:50
|
637 |
+
msgid "Monthly archives"
|
638 |
+
msgstr "月別アーカイブ"
|
639 |
+
|
640 |
+
#: ../plugins/other_widget/widget-archives.php:59
|
641 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:59
|
642 |
+
msgid "Title"
|
643 |
+
msgstr "タイトル"
|
644 |
+
|
645 |
+
#: ../plugins/other_widget/widget-archives.php:63
|
646 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:63
|
647 |
+
msgid "Post type"
|
648 |
+
msgstr "ポストタイプ"
|
649 |
+
|
650 |
#: ../plugins/other_widget/widget-new-posts.php:11
|
651 |
msgid "Displays a list of your most recent posts"
|
652 |
msgstr "最新の投稿記事リストを表示します。"
|
674 |
msgstr "トップのページコンテンツ"
|
675 |
|
676 |
#: ../plugins/other_widget/widget-page.php:30
|
677 |
+
#: ../plugins/other_widget/widget-taxonomies.php:60
|
678 |
#: ../plugins/other_widget/old/widget-page-content.php:30
|
679 |
#: ../plugins/other_widget/old/widget-taxonomy-list.php:61
|
680 |
msgid "Display page"
|
744 |
msgid "Site's Profile"
|
745 |
msgstr "プロフィール"
|
746 |
|
747 |
+
#: ../plugins/other_widget/widget-taxonomies.php:12
|
748 |
+
msgid "Displays a categories and custom taxonomies list."
|
749 |
+
msgstr "カテゴリーやカスタム分類のリストを表示します。"
|
|
|
|
|
|
|
|
|
750 |
|
751 |
+
#: ../plugins/other_widget/widget-taxonomies.php:14
|
752 |
+
msgid "Categories/Custom taxonomies list"
|
753 |
+
msgstr "カテゴリー/カスタム分類リスト"
|
754 |
|
755 |
+
#: ../plugins/other_widget/widget-taxonomies.php:47
|
756 |
+
#: ../plugins/other_widget/widget-taxonomies.php:48
|
757 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:48
|
758 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:49
|
759 |
+
msgid "Category"
|
760 |
+
msgstr "カテゴリー"
|
761 |
|
762 |
+
#: ../plugins/other_widget/widget-taxonomies.php:56
|
763 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:57
|
764 |
+
msgid "Label to display"
|
765 |
+
msgstr "表示するラベル"
|
766 |
|
767 |
+
#: ../plugins/other_widget/widget-taxonomies.php:76
|
768 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:76
|
769 |
+
msgid "Blog"
|
770 |
+
msgstr "ブログ"
|
771 |
|
772 |
#: ../plugins/other_widget/old/widget-child-page-list.php:9
|
773 |
msgid "Displays list of child page for the current page."
|
801 |
msgid "Heading title"
|
802 |
msgstr "見出しタイトル"
|
803 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
#: ../plugins/sns/function_fbPagePlugin.php:10
|
805 |
msgid "Displays a Facebook Page Plugin"
|
806 |
msgstr "Facebook ページプラグインを表示します。"
|
822 |
msgstr "タイムラインを表示"
|
823 |
|
824 |
#: ../plugins/sns/function_follow.php:11
|
825 |
+
msgid "Follow me"
|
826 |
+
msgstr "このサイトをフォローする"
|
827 |
|
828 |
+
#: ../plugins/sns/sns.php:17
|
829 |
msgid "SNS"
|
830 |
msgstr "SNS"
|
831 |
|
833 |
msgid "SNS Settings"
|
834 |
msgstr "SNS設定"
|
835 |
|
836 |
+
#: ../plugins/sns/sns_admin.php:13 ../plugins/sns/old/sns_admin.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
msgid "facebook application ID"
|
838 |
msgstr "facebookアプリケーションID"
|
839 |
|
840 |
+
#: ../plugins/sns/sns_admin.php:15 ../plugins/sns/old/sns_admin.php:28
|
841 |
msgid "I will check and get the application ID"
|
842 |
msgstr "アプリケーションIDを確認・取得する "
|
843 |
|
844 |
+
#: ../plugins/sns/sns_admin.php:16 ../plugins/sns/old/sns_admin.php:29
|
845 |
msgid ""
|
846 |
"* If an application ID is not specified, neither a Like button nor the "
|
847 |
"comment field displays and operates correctly."
|
849 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
850 |
"ん。"
|
851 |
|
852 |
+
#: ../plugins/sns/sns_admin.php:17 ../plugins/sns/old/sns_admin.php:30
|
853 |
msgid ""
|
854 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
855 |
"much about how to get application ID for Facebook."
|
857 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
858 |
"アプリケーションID 取得」などで検索して下さい。"
|
859 |
|
860 |
+
#: ../plugins/sns/sns_admin.php:21
|
861 |
msgid "facebook page URL"
|
862 |
msgstr "FacebookページURL"
|
863 |
|
864 |
+
#: ../plugins/sns/sns_admin.php:26
|
865 |
msgid "OG default image"
|
866 |
msgstr "デフォルトのOGPイメージ"
|
867 |
|
868 |
+
#: ../plugins/sns/sns_admin.php:27 ../plugins/sns/old/sns_admin.php:57
|
869 |
msgid ""
|
870 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
871 |
"image that appears on the Facebook timeline."
|
873 |
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
874 |
"ムラインに表示されます。"
|
875 |
|
876 |
+
#: ../plugins/sns/sns_admin.php:28 ../plugins/sns/old/sns_admin.php:58
|
877 |
msgid "If a featured image is specified for the page, it takes precedence."
|
878 |
msgstr ""
|
879 |
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
880 |
"す。"
|
881 |
|
882 |
+
#: ../plugins/sns/sns_admin.php:30 ../plugins/sns/old/sns_admin.php:60
|
883 |
msgid "Select an image"
|
884 |
msgstr "画像を選択"
|
885 |
|
886 |
+
#: ../plugins/sns/sns_admin.php:32 ../plugins/sns/old/sns_admin.php:62
|
887 |
msgid ""
|
888 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
889 |
"recommended."
|
890 |
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
891 |
|
892 |
+
#: ../plugins/sns/sns_admin.php:36
|
893 |
msgid "twitter ID"
|
894 |
msgstr "twitterアカウント"
|
895 |
|
896 |
+
#: ../plugins/sns/sns_admin.php:41
|
897 |
+
msgid "OG tags"
|
898 |
+
msgstr "OGタグ"
|
899 |
+
|
900 |
+
#: ../plugins/sns/sns_admin.php:43
|
901 |
+
msgid "Print the OG tags"
|
902 |
+
msgstr "OGタグを出力する"
|
903 |
+
|
904 |
+
#: ../plugins/sns/sns_admin.php:44
|
905 |
+
msgid ""
|
906 |
+
"If other plug-ins are used for the OG, do not output the OG using this "
|
907 |
+
"plugin."
|
908 |
+
msgstr ""
|
909 |
+
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
910 |
+
"る場合は、このプラグインでの出力は必要ありません。"
|
911 |
+
|
912 |
+
#: ../plugins/sns/sns_admin.php:49
|
913 |
+
msgid "Twitter Card tags"
|
914 |
+
msgstr "Twitterカードタグ"
|
915 |
+
|
916 |
+
#: ../plugins/sns/sns_admin.php:51
|
917 |
+
msgid "Print the Twitter Card tags"
|
918 |
+
msgstr "Twitter カードタグを html head 内へ出力します。"
|
919 |
+
|
920 |
+
#: ../plugins/sns/sns_admin.php:56
|
921 |
+
msgid "Social bookmark buttons"
|
922 |
+
msgstr "ソーシャルボタン"
|
923 |
+
|
924 |
+
#: ../plugins/sns/sns_admin.php:57
|
925 |
+
msgid "Print the social bookmark buttons"
|
926 |
+
msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
|
927 |
+
|
928 |
+
#: ../plugins/sns/sns_admin.php:61
|
929 |
+
msgid "Follow me box"
|
930 |
+
msgstr "Follow me box"
|
931 |
+
|
932 |
+
#: ../plugins/sns/sns_admin.php:62
|
933 |
+
msgid "Print the Follow me box"
|
934 |
+
msgstr "Follow me ユニットを本文の下に表示する"
|
935 |
+
|
936 |
#: ../plugins/sns/old/sns.php:378
|
937 |
msgid "* It is necessary to set the Theme options page."
|
938 |
msgstr "* テーマオプションページで設定する必要があります。"
|
1084 |
msgid "Page top"
|
1085 |
msgstr "ページ先頭へ"
|
1086 |
|
1087 |
+
#~ msgid "Other Widgets"
|
1088 |
+
#~ msgstr "Other ウィジェット"
|
1089 |
+
|
1090 |
+
#~ msgid "Do not output the OG"
|
1091 |
+
#~ msgstr "OGタグ出力設定"
|
1092 |
+
|
1093 |
+
#~ msgid "Output OG tags(default)"
|
1094 |
+
#~ msgstr "OGタグを出力する"
|
1095 |
+
|
1096 |
#~ msgctxt "Archive description"
|
1097 |
#~ msgid "Article of %s."
|
1098 |
#~ msgstr "%s の記事"
|
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-
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
@@ -97,19 +97,20 @@ msgstr ""
|
|
97 |
msgid "Chats"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: common_helpers.php:262 plugins/other_widget/
|
|
|
101 |
msgid "Archives"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:
|
105 |
msgid "Select all"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:
|
109 |
msgid "Function"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:
|
113 |
msgid "Description"
|
114 |
msgstr ""
|
115 |
|
@@ -139,7 +140,7 @@ msgstr ""
|
|
139 |
msgid "Print fontawesome link tag to html head."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: vkExUnit_admin.php:57 vkExUnit_admin.php:
|
143 |
msgid "Choose Print meta description."
|
144 |
msgstr ""
|
145 |
|
@@ -171,109 +172,159 @@ msgstr ""
|
|
171 |
msgid "Print meta Keyword"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: vkExUnit_admin.php:
|
|
|
|
|
|
|
|
|
|
|
175 |
msgid "Print meta Keyword to html head."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: vkExUnit_admin.php:
|
179 |
msgid "Print meta description"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: vkExUnit_admin.php:
|
183 |
msgid "Print meta description to html head."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: vkExUnit_admin.php:
|
187 |
msgid "Choose Social media cooperation."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: vkExUnit_admin.php:
|
191 |
msgid "Social media cooperation."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: vkExUnit_admin.php:
|
195 |
-
msgid "Setting"
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#: vkExUnit_admin.php:150
|
199 |
msgid "Print og tags to html head."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: vkExUnit_admin.php:
|
203 |
msgid "Print twitter card tags to html head."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: vkExUnit_admin.php:
|
207 |
-
msgid "Print social
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: vkExUnit_admin.php:
|
211 |
-
msgid "Facebook Page Plugin."
|
212 |
msgstr ""
|
213 |
|
214 |
#: vkExUnit_admin.php:163
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
msgid "Choose Print Google Analytics tracking code."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: vkExUnit_admin.php:
|
219 |
msgid "Print Google Analytics tracking code."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: vkExUnit_admin.php:
|
223 |
msgid "Choose Related posts."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: vkExUnit_admin.php:
|
227 |
msgid "Related posts"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: vkExUnit_admin.php:
|
231 |
msgid "Print Related posts lists to post content bottom."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: vkExUnit_admin.php:
|
235 |
msgid "Choose other widgets."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: vkExUnit_admin.php:
|
239 |
-
msgid "
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: vkExUnit_admin.php:
|
243 |
msgid "You can use various widgets."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: vkExUnit_admin.php:
|
247 |
msgid ""
|
248 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
249 |
"title."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: vkExUnit_admin.php:
|
253 |
msgid ""
|
254 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: vkExUnit_admin.php:
|
258 |
msgid "VK_Profile - display the profile entered in the widget."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: vkExUnit_admin.php:
|
262 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: vkExUnit_admin.php:
|
266 |
msgid "VK_3PR area - display the 3PR area."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: vkExUnit_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
msgid "CSS customize"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: vkExUnit_admin.php:
|
274 |
msgid "You can set Customize CSS."
|
275 |
msgstr ""
|
276 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
#: plugins/icons.php:26 plugins/icons.php:54
|
278 |
msgid "icon setting"
|
279 |
msgstr ""
|
@@ -324,7 +375,7 @@ msgid ""
|
|
324 |
"the site."
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/sns_admin.php:
|
328 |
#: plugins/sns/old/sns_admin.php:20 plugins/sns/old/sns_admin.php:61
|
329 |
#: plugins/sns/old/sns_admin.php:79 plugins/sns/old/sns_admin.php:98
|
330 |
#: plugins/sns/old/sns_admin.php:115
|
@@ -526,6 +577,23 @@ msgstr ""
|
|
526 |
msgid "Read more"
|
527 |
msgstr ""
|
528 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
#: plugins/other_widget/widget-new-posts.php:11
|
530 |
msgid "Displays a list of your most recent posts"
|
531 |
msgstr ""
|
@@ -553,6 +621,7 @@ msgid "page content to widget"
|
|
553 |
msgstr ""
|
554 |
|
555 |
#: plugins/other_widget/widget-page.php:30
|
|
|
556 |
#: plugins/other_widget/old/widget-page-content.php:30
|
557 |
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
558 |
msgid "Display page"
|
@@ -621,27 +690,29 @@ msgstr ""
|
|
621 |
msgid "Site's Profile"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: plugins/other_widget/
|
625 |
-
msgid ""
|
626 |
-
"Displays a list of archives. You can choose the post type and also to "
|
627 |
-
"display archives by month or by year."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: plugins/other_widget/
|
631 |
-
msgid "
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: plugins/other_widget/
|
635 |
-
#: plugins/other_widget/
|
636 |
-
|
|
|
|
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: plugins/other_widget/
|
640 |
-
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: plugins/other_widget/
|
644 |
-
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: plugins/other_widget/old/widget-child-page-list.php:9
|
@@ -676,27 +747,6 @@ msgstr ""
|
|
676 |
msgid "Heading title"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:11
|
680 |
-
msgid "Displays a categories, tags or format list."
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:17
|
684 |
-
msgid "categories/tags list"
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
688 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
689 |
-
msgid "Category"
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
693 |
-
msgid "Label to display"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
697 |
-
msgid "Blog"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
#: plugins/sns/function_fbPagePlugin.php:10
|
701 |
msgid "Displays a Facebook Page Plugin"
|
702 |
msgstr ""
|
@@ -718,10 +768,10 @@ msgid "Show Page Posts"
|
|
718 |
msgstr ""
|
719 |
|
720 |
#: plugins/sns/function_follow.php:11
|
721 |
-
msgid "Follow me
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: plugins/sns/sns.php:
|
725 |
msgid "SNS"
|
726 |
msgstr ""
|
727 |
|
@@ -729,76 +779,96 @@ msgstr ""
|
|
729 |
msgid "SNS Settings"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: plugins/sns/sns_admin.php:13
|
733 |
-
msgid "Do not output the OG"
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: plugins/sns/sns_admin.php:15
|
737 |
-
msgid ""
|
738 |
-
"If other plug-ins are used for the OG, do not output the OG using this "
|
739 |
-
"plugin."
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: plugins/sns/sns_admin.php:19
|
743 |
-
msgid "Output OG tags(default)"
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: plugins/sns/sns_admin.php:20
|
747 |
-
msgid "Do not output OG tags"
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: plugins/sns/sns_admin.php:32 plugins/sns/old/sns_admin.php:26
|
751 |
msgid "facebook application ID"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: plugins/sns/sns_admin.php:
|
755 |
msgid "I will check and get the application ID"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: plugins/sns/sns_admin.php:
|
759 |
msgid ""
|
760 |
"* If an application ID is not specified, neither a Like button nor the "
|
761 |
"comment field displays and operates correctly."
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: plugins/sns/sns_admin.php:
|
765 |
msgid ""
|
766 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
767 |
"much about how to get application ID for Facebook."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: plugins/sns/sns_admin.php:
|
771 |
msgid "facebook page URL"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: plugins/sns/sns_admin.php:
|
775 |
msgid "OG default image"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: plugins/sns/sns_admin.php:
|
779 |
msgid ""
|
780 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
781 |
"image that appears on the Facebook timeline."
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: plugins/sns/sns_admin.php:
|
785 |
msgid "If a featured image is specified for the page, it takes precedence."
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: plugins/sns/sns_admin.php:
|
789 |
msgid "Select an image"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: plugins/sns/sns_admin.php:
|
793 |
msgid ""
|
794 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
795 |
"recommended."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: plugins/sns/sns_admin.php:
|
799 |
msgid "twitter ID"
|
800 |
msgstr ""
|
801 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
#: plugins/sns/old/sns.php:378
|
803 |
msgid "* It is necessary to set the Theme options page."
|
804 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-12 17:11+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"
|
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:298
|
106 |
msgid "Select all"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:298
|
110 |
msgid "Function"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:298
|
114 |
msgid "Description"
|
115 |
msgstr ""
|
116 |
|
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 |
|
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:231 vkExUnit_admin.php:264
|
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 vkExUnit_admin.php:254
|
250 |
msgid "Choose other widgets."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: vkExUnit_admin.php:228
|
254 |
+
msgid "Widgets"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: vkExUnit_admin.php:236
|
258 |
msgid "You can use various widgets."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: vkExUnit_admin.php:238
|
262 |
msgid ""
|
263 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
264 |
"title."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: vkExUnit_admin.php:239
|
268 |
msgid ""
|
269 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: vkExUnit_admin.php:240
|
273 |
msgid "VK_Profile - display the profile entered in the widget."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: vkExUnit_admin.php:241
|
277 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: vkExUnit_admin.php:242
|
281 |
msgid "VK_3PR area - display the 3PR area."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: vkExUnit_admin.php:243 plugins/other_widget/old/widget-taxonomy-list.php:17
|
285 |
+
msgid "categories/tags list"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: vkExUnit_admin.php:243 plugins/other_widget/old/widget-taxonomy-list.php:11
|
289 |
+
msgid "Displays a categories, tags or format list."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: vkExUnit_admin.php:244 plugins/other_widget/widget-archives.php:14
|
293 |
+
#: plugins/other_widget/old/widget-archive-list.php:14
|
294 |
+
msgid "archive list"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: vkExUnit_admin.php:244 plugins/other_widget/widget-archives.php:12
|
298 |
+
#: plugins/other_widget/old/widget-archive-list.php:12
|
299 |
+
msgid ""
|
300 |
+
"Displays a list of archives. You can choose the post type and also to "
|
301 |
+
"display archives by month or by year."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: vkExUnit_admin.php:259
|
305 |
msgid "CSS customize"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: vkExUnit_admin.php:271
|
309 |
msgid "You can set Customize CSS."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: vkExUnit_admin.php:280 vkExUnit_admin.php:285
|
313 |
+
msgid "Automatic Eye Catch insert"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: vkExUnit_admin.php:289
|
317 |
+
msgid "Display Eye Catch image at before content."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: plugins/auto_eyecatch.php:32
|
321 |
+
msgid "Automatic EyeCatch"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: plugins/auto_eyecatch.php:42
|
325 |
+
msgid "Do not set eyecatch image automatic."
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
#: plugins/icons.php:26 plugins/icons.php:54
|
329 |
msgid "icon setting"
|
330 |
msgstr ""
|
375 |
"the site."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/sns_admin.php:31
|
379 |
#: plugins/sns/old/sns_admin.php:20 plugins/sns/old/sns_admin.php:61
|
380 |
#: plugins/sns/old/sns_admin.php:79 plugins/sns/old/sns_admin.php:98
|
381 |
#: plugins/sns/old/sns_admin.php:115
|
577 |
msgid "Read more"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: plugins/other_widget/widget-archives.php:49
|
581 |
+
#: plugins/other_widget/widget-archives.php:50
|
582 |
+
#: plugins/other_widget/old/widget-archive-list.php:49
|
583 |
+
#: plugins/other_widget/old/widget-archive-list.php:50
|
584 |
+
msgid "Monthly archives"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: plugins/other_widget/widget-archives.php:59
|
588 |
+
#: plugins/other_widget/old/widget-archive-list.php:59
|
589 |
+
msgid "Title"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: plugins/other_widget/widget-archives.php:63
|
593 |
+
#: plugins/other_widget/old/widget-archive-list.php:63
|
594 |
+
msgid "Post type"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
#: plugins/other_widget/widget-new-posts.php:11
|
598 |
msgid "Displays a list of your most recent posts"
|
599 |
msgstr ""
|
621 |
msgstr ""
|
622 |
|
623 |
#: plugins/other_widget/widget-page.php:30
|
624 |
+
#: plugins/other_widget/widget-taxonomies.php:60
|
625 |
#: plugins/other_widget/old/widget-page-content.php:30
|
626 |
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
627 |
msgid "Display page"
|
690 |
msgid "Site's Profile"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: plugins/other_widget/widget-taxonomies.php:12
|
694 |
+
msgid "Displays a categories and custom taxonomies list."
|
|
|
|
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: plugins/other_widget/widget-taxonomies.php:14
|
698 |
+
msgid "Categories/Custom taxonomies list"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: plugins/other_widget/widget-taxonomies.php:47
|
702 |
+
#: plugins/other_widget/widget-taxonomies.php:48
|
703 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
704 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
705 |
+
msgid "Category"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: plugins/other_widget/widget-taxonomies.php:56
|
709 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
710 |
+
msgid "Label to display"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: plugins/other_widget/widget-taxonomies.php:76
|
714 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
715 |
+
msgid "Blog"
|
716 |
msgstr ""
|
717 |
|
718 |
#: plugins/other_widget/old/widget-child-page-list.php:9
|
747 |
msgid "Heading title"
|
748 |
msgstr ""
|
749 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
#: plugins/sns/function_fbPagePlugin.php:10
|
751 |
msgid "Displays a Facebook Page Plugin"
|
752 |
msgstr ""
|
768 |
msgstr ""
|
769 |
|
770 |
#: plugins/sns/function_follow.php:11
|
771 |
+
msgid "Follow me"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: plugins/sns/sns.php:17
|
775 |
msgid "SNS"
|
776 |
msgstr ""
|
777 |
|
779 |
msgid "SNS Settings"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: plugins/sns/sns_admin.php:13 plugins/sns/old/sns_admin.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
msgid "facebook application ID"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: plugins/sns/sns_admin.php:15 plugins/sns/old/sns_admin.php:28
|
787 |
msgid "I will check and get the application ID"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: plugins/sns/sns_admin.php:16 plugins/sns/old/sns_admin.php:29
|
791 |
msgid ""
|
792 |
"* If an application ID is not specified, neither a Like button nor the "
|
793 |
"comment field displays and operates correctly."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: plugins/sns/sns_admin.php:17 plugins/sns/old/sns_admin.php:30
|
797 |
msgid ""
|
798 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
799 |
"much about how to get application ID for Facebook."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: plugins/sns/sns_admin.php:21
|
803 |
msgid "facebook page URL"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: plugins/sns/sns_admin.php:26
|
807 |
msgid "OG default image"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: plugins/sns/sns_admin.php:27 plugins/sns/old/sns_admin.php:57
|
811 |
msgid ""
|
812 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
813 |
"image that appears on the Facebook timeline."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: plugins/sns/sns_admin.php:28 plugins/sns/old/sns_admin.php:58
|
817 |
msgid "If a featured image is specified for the page, it takes precedence."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: plugins/sns/sns_admin.php:30 plugins/sns/old/sns_admin.php:60
|
821 |
msgid "Select an image"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: plugins/sns/sns_admin.php:32 plugins/sns/old/sns_admin.php:62
|
825 |
msgid ""
|
826 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
827 |
"recommended."
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: plugins/sns/sns_admin.php:36
|
831 |
msgid "twitter ID"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: plugins/sns/sns_admin.php:41
|
835 |
+
msgid "OG tags"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: plugins/sns/sns_admin.php:43
|
839 |
+
msgid "Print the OG tags"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: plugins/sns/sns_admin.php:44
|
843 |
+
msgid ""
|
844 |
+
"If other plug-ins are used for the OG, do not output the OG using this "
|
845 |
+
"plugin."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: plugins/sns/sns_admin.php:49
|
849 |
+
msgid "Twitter Card tags"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: plugins/sns/sns_admin.php:51
|
853 |
+
msgid "Print the Twitter Card tags"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: plugins/sns/sns_admin.php:56
|
857 |
+
msgid "Social bookmark buttons"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: plugins/sns/sns_admin.php:57
|
861 |
+
msgid "Print the social bookmark buttons"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: plugins/sns/sns_admin.php:61
|
865 |
+
msgid "Follow me box"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: plugins/sns/sns_admin.php:62
|
869 |
+
msgid "Print the Follow me box"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
#: plugins/sns/old/sns.php:378
|
873 |
msgid "* It is necessary to set the Theme options page."
|
874 |
msgstr ""
|
plugins/other_widget/other_widget.php
CHANGED
@@ -2,4 +2,6 @@
|
|
2 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-new-posts.php';
|
3 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-profile.php';
|
4 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-3pr-area.php';
|
5 |
-
require vkExUnit_get_directory() . '/plugins/other_widget/widget-page.php';
|
|
|
|
2 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-new-posts.php';
|
3 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-profile.php';
|
4 |
require vkExUnit_get_directory() . '/plugins/other_widget/widget-3pr-area.php';
|
5 |
+
require vkExUnit_get_directory() . '/plugins/other_widget/widget-page.php';
|
6 |
+
require vkExUnit_get_directory() . '/plugins/other_widget/widget-taxonomies.php';
|
7 |
+
require vkExUnit_get_directory() . '/plugins/other_widget/widget-archives.php';
|
plugins/other_widget/widget-archives.php
ADDED
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*-------------------------------------------*/
|
4 |
+
/* Archive list widget
|
5 |
+
/*-------------------------------------------*/
|
6 |
+
class WP_Widget_VK_archive_list extends WP_Widget {
|
7 |
+
// ウィジェット定義
|
8 |
+
function WP_Widget_VK_archive_list() {
|
9 |
+
global $bizvektor_works_unit;
|
10 |
+
$widget_ops = array(
|
11 |
+
'classname' => 'WP_Widget_VK_archive_list',
|
12 |
+
'description' => __( 'Displays a list of archives. You can choose the post type and also to display archives by month or by year.' , 'vkExUnit' ),
|
13 |
+
);
|
14 |
+
$widget_name = 'VK_' . __( 'archive list', 'vkExUnit' );
|
15 |
+
$this->WP_Widget('WP_Widget_VK_archive_list', $widget_name, $widget_ops);
|
16 |
+
}
|
17 |
+
|
18 |
+
function widget($args, $instance) {
|
19 |
+
$arg = array(
|
20 |
+
'echo' => 1,
|
21 |
+
);
|
22 |
+
|
23 |
+
if($instance['display_type'] == 'y'){
|
24 |
+
$arg['type'] = "yearly";
|
25 |
+
$arg['post_type'] = $instance['post_type'];
|
26 |
+
$arg['after'] = '年';
|
27 |
+
}
|
28 |
+
else{
|
29 |
+
$arg['type'] = "monthly";
|
30 |
+
$arg['post_type'] = $instance['post_type'];
|
31 |
+
}
|
32 |
+
|
33 |
+
?>
|
34 |
+
<div class="localSection sideWidget">
|
35 |
+
<div class="sectionBox">
|
36 |
+
<h3 class="localHead"><?php echo $instance['label']; ?></h3>
|
37 |
+
<ul class="localNavi">
|
38 |
+
<?php wp_get_archives($arg); ?>
|
39 |
+
</ul>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
<?php
|
43 |
+
}
|
44 |
+
|
45 |
+
function form($instance){
|
46 |
+
$defaults = array(
|
47 |
+
'post_type' => 'post',
|
48 |
+
'display_type' => 'm',
|
49 |
+
'label' => __( 'Monthly archives', 'vkExUnit' ),
|
50 |
+
'hide' => __( 'Monthly archives', 'vkExUnit' ),
|
51 |
+
);
|
52 |
+
|
53 |
+
$instance = wp_parse_args((array) $instance, $defaults);
|
54 |
+
$pages = get_post_types( array('public'=> true, '_builtin' => false),'names');
|
55 |
+
$pages[] = 'post';
|
56 |
+
?>
|
57 |
+
<p>
|
58 |
+
|
59 |
+
<label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title','vkExUnit');?>:</label>
|
60 |
+
<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']; ?>" ><br/>
|
61 |
+
<input type="hidden" name="<?php echo $this->get_field_name('hide'); ?>" ><br/>
|
62 |
+
|
63 |
+
<label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e( 'Post type', 'vkExUnit' ) ?>:</label>
|
64 |
+
<select name="<?php echo $this->get_field_name('post_type'); ?>" >
|
65 |
+
<?php foreach($pages as $page){ ?>
|
66 |
+
<option value="<?php echo $page; ?>" <?php if($instance['post_type'] == $page) echo 'selected="selected"'; ?> ><?php echo $page; ?></option>
|
67 |
+
<?php } ?>
|
68 |
+
</select>
|
69 |
+
<br/>
|
70 |
+
<label for="<?php echo $this->get_field_id('display_type'); ?>">表示タイプ</label>
|
71 |
+
<select name="<?php echo $this->get_field_name('display_type'); ?>" >
|
72 |
+
<option value="m" <?php if($instance['display_type'] != "y") echo 'selected="selected"'; ?> >月別</option>
|
73 |
+
<option value="y" <?php if($instance['display_type'] == "y") echo 'selected="selected"'; ?> >年別</option>
|
74 |
+
</select>
|
75 |
+
</p>
|
76 |
+
<script type="text/javascript">
|
77 |
+
jQuery(document).ready(function($){
|
78 |
+
var post_labels = new Array();
|
79 |
+
<?php
|
80 |
+
foreach($pages as $page){
|
81 |
+
$page_labl = get_post_type_object($page);
|
82 |
+
if(isset($page_labl->labels->name)){
|
83 |
+
echo 'post_labels["'.$page.'"] = "'.$page_labl->labels->name.'";';
|
84 |
+
}
|
85 |
+
}
|
86 |
+
echo 'post_labels["blog"] = "ブログ";'."\n";
|
87 |
+
?>
|
88 |
+
var posttype = jQuery("[name=\"<?php echo $this->get_field_name('post_type'); ?>\"]");
|
89 |
+
var lablfeld = jQuery("[name=\"<?php echo $this->get_field_name('label'); ?>\"]");
|
90 |
+
posttype.change(function(){
|
91 |
+
lablfeld.val(post_labels[posttype.val()]+'アーカイブ');
|
92 |
+
});
|
93 |
+
});
|
94 |
+
</script>
|
95 |
+
<?php
|
96 |
+
}
|
97 |
+
|
98 |
+
function update($new_instance, $old_instance){
|
99 |
+
$instance = $old_instance;
|
100 |
+
|
101 |
+
$instance['post_type'] = $new_instance['post_type'];
|
102 |
+
$instance['display_type'] = $new_instance['display_type'];
|
103 |
+
|
104 |
+
if(!$new_instance['label']){
|
105 |
+
$new_instance['label'] = $new_instance['hide'];
|
106 |
+
}
|
107 |
+
$instance['label'] = $new_instance['label'];
|
108 |
+
|
109 |
+
return $instance;
|
110 |
+
}
|
111 |
+
} // class WP_Widget_top_list_info
|
112 |
+
add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_VK_archive_list");'));
|
plugins/other_widget/widget-taxonomies.php
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*-------------------------------------------*/
|
4 |
+
/* Taxonomy list widget
|
5 |
+
/*-------------------------------------------*/
|
6 |
+
class WP_Widget_VK_taxonomy_list extends WP_Widget {
|
7 |
+
// ウィジェット定義
|
8 |
+
function WP_Widget_VK_taxonomy_list() {
|
9 |
+
global $bizvektor_works_unit;
|
10 |
+
$widget_ops = array(
|
11 |
+
'classname' => 'WP_Widget_VK_taxonomy_list',
|
12 |
+
'description' => __( 'Displays a categories and custom taxonomies list.', 'vkExUnit' ),
|
13 |
+
);
|
14 |
+
$widget_name = vkExUnit_get_short_name().'_'. __( 'Categories/Custom taxonomies list', 'vkExUnit' );
|
15 |
+
$this->WP_Widget('WP_Widget_VK_taxonomy_list', $widget_name, $widget_ops);
|
16 |
+
}
|
17 |
+
|
18 |
+
|
19 |
+
function widget($args, $instance) {
|
20 |
+
$arg = array(
|
21 |
+
'echo' => 1,
|
22 |
+
'style' => 'list',
|
23 |
+
'show_count' => false,
|
24 |
+
'show_option_all' => false,
|
25 |
+
'hierarchical' => true,
|
26 |
+
'title_li' => '',
|
27 |
+
);
|
28 |
+
|
29 |
+
$arg['taxonomy'] = $instance['tax_name'];
|
30 |
+
|
31 |
+
?>
|
32 |
+
<div class="localSection sideWidget">
|
33 |
+
<div class="sectionBox">
|
34 |
+
<h3 class="localHead"><?php echo $instance['label']; ?></h3>
|
35 |
+
<ul class="localNavi">
|
36 |
+
<?php wp_list_categories($arg); ?>
|
37 |
+
</ul>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
+
<?php
|
41 |
+
}
|
42 |
+
|
43 |
+
|
44 |
+
function form($instance){
|
45 |
+
$defaults = array(
|
46 |
+
'tax_name' => 'category',
|
47 |
+
'label' => __( 'Category', 'vkExUnit' ),
|
48 |
+
'hide' => __( 'Category', 'vkExUnit' ),
|
49 |
+
'title' => 'Category',
|
50 |
+
'_builtin' => false,
|
51 |
+
);
|
52 |
+
$instance = wp_parse_args((array) $instance, $defaults);
|
53 |
+
$taxs = get_taxonomies( array('public'=> true),'objects');
|
54 |
+
?>
|
55 |
+
<p>
|
56 |
+
<label for="<?php echo $this->get_field_id('label'); ?>"><?php _e( 'Label to display', 'vkExUnit' ); ?></label>
|
57 |
+
<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']; ?>" ><br/>
|
58 |
+
<input type="hidden" name="<?php echo $this->get_field_name('hide'); ?>" ><br/>
|
59 |
+
|
60 |
+
<label for="<?php echo $this->get_field_id('tax_name'); ?>"><?php _e('Display page', 'vkExUnit') ?></label>
|
61 |
+
<select name="<?php echo $this->get_field_name('tax_name'); ?>" >
|
62 |
+
|
63 |
+
<?php foreach($taxs as $tax){ ?>
|
64 |
+
<option value="<?php echo $tax->name; ?>" <?php if($instance['tax_name'] == $tax->name) echo 'selected="selected"'; ?> ><?php echo $tax->labels->name; ?></option>
|
65 |
+
<?php } ?>
|
66 |
+
</select></p>
|
67 |
+
<script type="text/javascript">
|
68 |
+
jQuery(document).ready(function($){
|
69 |
+
var post_labels = new Array();
|
70 |
+
<?php
|
71 |
+
foreach($taxs as $tax){
|
72 |
+
if(isset($tax->labels->name)){
|
73 |
+
echo 'post_labels["'.$tax->name.'"] = "'.$tax->labels->name.'";';
|
74 |
+
}
|
75 |
+
}
|
76 |
+
echo 'post_labels["blog"] = "'. __( 'Blog', 'vkExUnit' ) . '";'."\n";
|
77 |
+
?>
|
78 |
+
var posttype = jQuery("[name=\"<?php echo $this->get_field_name('tax_name'); ?>\"]");
|
79 |
+
var lablfeld = jQuery("[name=\"<?php echo $this->get_field_name('label'); ?>\"]");
|
80 |
+
posttype.change(function(){
|
81 |
+
lablfeld.val(post_labels[posttype.val()]+" <?php _e( 'Archives', 'vkExUnit' ) ?>");
|
82 |
+
});
|
83 |
+
});
|
84 |
+
</script>
|
85 |
+
<?php
|
86 |
+
}
|
87 |
+
|
88 |
+
|
89 |
+
function update($new_instance, $old_instance){
|
90 |
+
$instance = $old_instance;
|
91 |
+
|
92 |
+
$instance['tax_name'] = $new_instance['tax_name'];
|
93 |
+
|
94 |
+
if(!$new_instance['label']){
|
95 |
+
$new_instance['label'] = $new_instance['hide'];
|
96 |
+
}
|
97 |
+
$instance['label'] = esc_html($new_instance['label']);
|
98 |
+
|
99 |
+
return $instance;
|
100 |
+
}
|
101 |
+
} // class WP_Widget_top_list_info
|
102 |
+
|
103 |
+
add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_VK_taxonomy_list");'));
|
plugins/sns/function_follow.php
CHANGED
@@ -6,9 +6,14 @@
|
|
6 |
function vkExUnit_add_follow($content){
|
7 |
if (is_single()) :
|
8 |
$options = vkExUnit_get_sns_options();
|
|
|
|
|
|
|
|
|
|
|
9 |
// https://about.twitter.com/resources/buttons#follow
|
10 |
$follow_html = '<div class="followSet vkContentAddSection">'."\n";
|
11 |
-
$follow_html .= '<h3 class="followSet_title">'.
|
12 |
$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";
|
13 |
$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";
|
14 |
$follow_html .= '</div><!-- [ /.followSet ] -->'."\n";
|
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";
|
plugins/sns/function_og.php
CHANGED
@@ -7,8 +7,6 @@ add_post_type_support( 'page', 'excerpt' ); // add excerpt
|
|
7 |
/*-------------------------------------------*/
|
8 |
add_action('wp_head', 'vkExUnit_print_og',20 );
|
9 |
function vkExUnit_print_og() {
|
10 |
-
global $vkExUnit_sns_options;
|
11 |
-
if ($vkExUnit_sns_options['ogTagDisplay'] == 'og_on') {
|
12 |
|
13 |
//$ogImage = $vkExUnit_sns_options['ogImage'];
|
14 |
//$fbAppId = $vkExUnit_sns_options['fbAppId'];
|
@@ -26,7 +24,7 @@ function vkExUnit_print_og() {
|
|
26 |
$vkExUnitOGP .= '<meta property="og:url" content="'.$linkUrl.'" />'."\n";
|
27 |
$vkExUnitOGP .= '<meta property="og:title" content="'.vkExUnit_get_wp_head_title().'" />'."\n";
|
28 |
$vkExUnitOGP .= '<meta property="og:description" content="'.vkExUnit_get_pageDescription().'" />'."\n";
|
29 |
-
if ($vkExUnit_sns_options['fbAppId']){
|
30 |
$vkExUnitOGP = $vkExUnitOGP.'<meta property="fb:app_id" content="'.$vkExUnit_sns_options['fbAppId'].'" />'."\n";
|
31 |
}
|
32 |
if (is_front_page() || is_home()) {
|
@@ -62,5 +60,4 @@ function vkExUnit_print_og() {
|
|
62 |
}
|
63 |
$vkExUnitOGP = apply_filters('vkExUnitOGPCustom', $vkExUnitOGP );
|
64 |
echo $vkExUnitOGP;
|
65 |
-
} // if ($vkExUnit_sns_options['ogTagDisplay'] == 'og_on')
|
66 |
}
|
7 |
/*-------------------------------------------*/
|
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'];
|
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";
|
29 |
}
|
30 |
if (is_front_page() || is_home()) {
|
60 |
}
|
61 |
$vkExUnitOGP = apply_filters('vkExUnitOGPCustom', $vkExUnitOGP );
|
62 |
echo $vkExUnitOGP;
|
|
|
63 |
}
|
plugins/sns/sns.php
CHANGED
@@ -4,8 +4,6 @@
|
|
4 |
/*-------------------------------------------*/
|
5 |
/* Add facebook aprication id
|
6 |
/*-------------------------------------------*/
|
7 |
-
/* Add menu
|
8 |
-
/*-------------------------------------------*/
|
9 |
/* Add setting page
|
10 |
/*-------------------------------------------*/
|
11 |
/* Options Init
|
@@ -35,11 +33,14 @@ function vkExUnit_get_sns_options() {
|
|
35 |
|
36 |
function vkExUnit_get_sns_options_default() {
|
37 |
$default_options = array(
|
38 |
-
'fbAppId'
|
39 |
-
'fbPageUrl'
|
40 |
-
'
|
41 |
-
'
|
42 |
-
'
|
|
|
|
|
|
|
43 |
);
|
44 |
return apply_filters( 'vkExUnit_sns_options_default', $default_options );
|
45 |
}
|
@@ -51,11 +52,14 @@ function vkExUnit_get_sns_options_default() {
|
|
51 |
function vkExUnit_sns_options_validate( $input ) {
|
52 |
$output = $defaults = vkExUnit_get_sns_options_default();
|
53 |
|
54 |
-
$output['fbAppId']
|
55 |
-
$output['fbPageUrl']
|
56 |
-
$output['
|
57 |
-
$output['
|
58 |
-
$output['
|
|
|
|
|
|
|
59 |
|
60 |
return apply_filters( 'vkExUnit_sns_options_validate', $output, $input, $defaults );
|
61 |
}
|
@@ -90,12 +94,18 @@ $fbAppId = (isset($options['fbAppId'])) ? $options['fbAppId'] : '';
|
|
90 |
<?php //endif;
|
91 |
}
|
92 |
|
|
|
93 |
|
94 |
require vkExUnit_get_directory() . '/plugins/sns/function_fbPagePlugin.php';
|
95 |
-
|
96 |
-
|
97 |
-
require vkExUnit_get_directory() . '/plugins/sns/
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
99 |
|
100 |
/*-------------------------------------------*/
|
101 |
/* Add setting page
|
4 |
/*-------------------------------------------*/
|
5 |
/* Add facebook aprication id
|
6 |
/*-------------------------------------------*/
|
|
|
|
|
7 |
/* Add setting page
|
8 |
/*-------------------------------------------*/
|
9 |
/* Options Init
|
33 |
|
34 |
function vkExUnit_get_sns_options_default() {
|
35 |
$default_options = array(
|
36 |
+
'fbAppId' => '',
|
37 |
+
'fbPageUrl' => '',
|
38 |
+
'ogImage' => '',
|
39 |
+
'twitterId' => '',
|
40 |
+
'enableOGTags' => true,
|
41 |
+
'enableTwitterCardTags' => true,
|
42 |
+
'enableSnsBtns' => true,
|
43 |
+
'enableFollowMe' => true
|
44 |
);
|
45 |
return apply_filters( 'vkExUnit_sns_options_default', $default_options );
|
46 |
}
|
52 |
function vkExUnit_sns_options_validate( $input ) {
|
53 |
$output = $defaults = vkExUnit_get_sns_options_default();
|
54 |
|
55 |
+
$output['fbAppId'] = $input['fbAppId'];
|
56 |
+
$output['fbPageUrl'] = $input['fbPageUrl'];
|
57 |
+
$output['ogImage'] = $input['ogImage'];
|
58 |
+
$output['twitterId'] = $input['twitterId'];
|
59 |
+
$output['enableOGTags'] = ( isset($input['enableOGTags']) && isset($input['enableOGTags']) == 'true' )? true: false;
|
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 |
}
|
94 |
<?php //endif;
|
95 |
}
|
96 |
|
97 |
+
$vkExUnit_sns_options = vkExUnit_get_sns_options();
|
98 |
|
99 |
require vkExUnit_get_directory() . '/plugins/sns/function_fbPagePlugin.php';
|
100 |
+
|
101 |
+
if ($vkExUnit_sns_options['enableOGTags'] == true)
|
102 |
+
require vkExUnit_get_directory() . '/plugins/sns/function_og.php';
|
103 |
+
if ($vkExUnit_sns_options['enableSnsBtns'] == true)
|
104 |
+
require vkExUnit_get_directory() . '/plugins/sns/function_snsBtns.php';
|
105 |
+
if ($vkExUnit_sns_options['enableTwitterCardTags'] == true)
|
106 |
+
require vkExUnit_get_directory() . '/plugins/sns/function_twitterCard.php';
|
107 |
+
if ($vkExUnit_sns_options['enableFollowMe'] == true)
|
108 |
+
require vkExUnit_get_directory() . '/plugins/sns/function_follow.php';
|
109 |
|
110 |
/*-------------------------------------------*/
|
111 |
/* Add setting page
|
plugins/sns/sns_admin.php
CHANGED
@@ -10,25 +10,6 @@
|
|
10 |
<!-- OGP hidden -->
|
11 |
<table class="form-table">
|
12 |
<tr>
|
13 |
-
<th><?php _e('Do not output the OG', 'vkExUnit'); ?></th>
|
14 |
-
<td>
|
15 |
-
<p><?php _e('If other plug-ins are used for the OG, do not output the OG using this plugin.', 'vkExUnit'); ?></p>
|
16 |
-
<?php
|
17 |
-
$ogTagDisplay = (isset($options['ogTagDisplay'])) ? $options['ogTagDisplay'] : 'og_on';
|
18 |
-
$vkExUnit_ogTags = array(
|
19 |
-
'og_on' => __('Output OG tags(default)', 'vkExUnit'),
|
20 |
-
'og_off' => __('Do not output OG tags', 'vkExUnit')
|
21 |
-
);
|
22 |
-
foreach( $vkExUnit_ogTags as $vkExUnit_ogTagValue => $vkExUnit_ogTagLavel) {
|
23 |
-
if ( $vkExUnit_ogTagValue == $ogTagDisplay ) { ?>
|
24 |
-
<label><input type="radio" name="vkExUnit_sns_options[ogTagDisplay]" value="<?php echo $vkExUnit_ogTagValue ?>" checked> <?php echo $vkExUnit_ogTagLavel ?></label><br />
|
25 |
-
<?php } else { ?>
|
26 |
-
<label><input type="radio" name="vkExUnit_sns_options[ogTagDisplay]" value="<?php echo $vkExUnit_ogTagValue ?>"> <?php echo $vkExUnit_ogTagLavel ?></label><br />
|
27 |
-
<?php }
|
28 |
-
} ?>
|
29 |
-
</td>
|
30 |
-
</tr>
|
31 |
-
<tr>
|
32 |
<th><?php _e('facebook application ID', 'vkExUnit'); ?></th>
|
33 |
<td><input type="text" name="vkExUnit_sns_options[fbAppId]" id="fbAppId" value="<?php echo esc_attr( $options['fbAppId'] ); ?>" />
|
34 |
<span>[ <a href="https://developers.facebook.com/apps" target="_blank">» <?php _e('I will check and get the application ID', 'vkExUnit'); ?></a> ]</span><br />
|
@@ -55,6 +36,32 @@ foreach( $vkExUnit_ogTags as $vkExUnit_ogTagValue => $vkExUnit_ogTagLavel) {
|
|
55 |
<th><?php _e('twitter ID', 'vkExUnit'); ?></th>
|
56 |
<td><input type="text" name="vkExUnit_sns_options[twitterId]" id="twitterId" value="<?php echo esc_attr( $options['twitterId'] ); ?>" /></td>
|
57 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
</table>
|
59 |
|
60 |
<p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="変更を保存" /></p>
|
10 |
<!-- OGP hidden -->
|
11 |
<table class="form-table">
|
12 |
<tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
<th><?php _e('facebook application ID', 'vkExUnit'); ?></th>
|
14 |
<td><input type="text" name="vkExUnit_sns_options[fbAppId]" id="fbAppId" value="<?php echo esc_attr( $options['fbAppId'] ); ?>" />
|
15 |
<span>[ <a href="https://developers.facebook.com/apps" target="_blank">» <?php _e('I will check and get the application ID', 'vkExUnit'); ?></a> ]</span><br />
|
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>
|
41 |
+
<th><?php _e('OG tags', 'vkExUnit'); ?></th>
|
42 |
+
<td><label>
|
43 |
+
<input type="checkbox" name="vkExUnit_sns_options[enableOGTags]" id="enableOGTags" value="true" <?php echo ( $options['enableOGTags'] )? 'checked': ''; ?> /><?php _e('Print the OG tags', 'vkExUnit');?></label>
|
44 |
+
<p><?php _e('If other plug-ins are used for the OG, do not output the OG using this plugin.', 'vkExUnit'); ?></p>
|
45 |
+
</td>
|
46 |
+
</tr>
|
47 |
+
|
48 |
+
<tr>
|
49 |
+
<th><?php _e('Twitter Card tags', 'vkExUnit'); ?></th>
|
50 |
+
<td><label>
|
51 |
+
<input type="checkbox" name="vkExUnit_sns_options[enableTwitterCardTags]" id="enableTwitterCardTags" value="true" <?php echo ( $options['enableTwitterCardTags'] )? 'checked': ''; ?> /><?php _e('Print the Twitter Card tags', 'vkExUnit');?></label>
|
52 |
+
</td>
|
53 |
+
</tr>
|
54 |
+
|
55 |
+
<tr>
|
56 |
+
<th><label for="enableSnsBtns"><?php _e('Social bookmark buttons', 'vkExUnit'); ?></label></th>
|
57 |
+
<td><label><input type="checkbox" name="vkExUnit_sns_options[enableSnsBtns]" id="enableSnsBtns" value="true" <?php echo ( $options['enableSnsBtns'] )? 'checked': ''; ?> /><?php _e('Print the social bookmark buttons', 'vkExUnit');?></label></td>
|
58 |
+
</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></td>
|
63 |
+
</tr>
|
64 |
+
|
65 |
</table>
|
66 |
|
67 |
<p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="変更を保存" /></p>
|
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.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -45,6 +45,10 @@ e.g.
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
|
|
48 |
= 0.1.4.0 =
|
49 |
* Add page contents widget.
|
50 |
* Add favicon setting.
|
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.5.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 0.1.5.0 =
|
49 |
+
* Add Archive widget.
|
50 |
+
* Add Category & Custom taxonomy widget.
|
51 |
+
|
52 |
= 0.1.4.0 =
|
53 |
* Add page contents widget.
|
54 |
* Add favicon setting.
|
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. 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.
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
@@ -160,6 +160,7 @@ function vkExUnit_addfontawesome(){
|
|
160 |
}
|
161 |
}
|
162 |
|
|
|
163 |
add_action( 'admin_print_styles-vk-ex-unit_page_vkExUnit_main_setting', 'vkExUnit_admin_enq');
|
164 |
function vkExUnit_admin_enq(){
|
165 |
wp_enqueue_style('vkexunit-css-admin', plugins_url('/css/admin.css', __FILE__));
|
@@ -172,3 +173,15 @@ function vkExUnit_admin_enq(){
|
|
172 |
if(isset($options['active_wpTitle']) && $options['active_wpTitle']){
|
173 |
add_filter('wp_title','vkExUnit_get_wp_head_title');
|
174 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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. 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.5.0
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
160 |
}
|
161 |
}
|
162 |
|
163 |
+
add_action( 'admin_print_styles-toplevel_page_vkExUnit_setting_page', 'vkExUnit_admin_enq');
|
164 |
add_action( 'admin_print_styles-vk-ex-unit_page_vkExUnit_main_setting', 'vkExUnit_admin_enq');
|
165 |
function vkExUnit_admin_enq(){
|
166 |
wp_enqueue_style('vkexunit-css-admin', plugins_url('/css/admin.css', __FILE__));
|
173 |
if(isset($options['active_wpTitle']) && $options['active_wpTitle']){
|
174 |
add_filter('wp_title','vkExUnit_get_wp_head_title');
|
175 |
}
|
176 |
+
/*-------------------------------------------*/
|
177 |
+
/* 管理画面_admin_head JavaScriptのデバッグコンソールにhook_suffixの値を出力
|
178 |
+
/*-------------------------------------------*/
|
179 |
+
|
180 |
+
// add_action("admin_head", 'suffix2console');
|
181 |
+
// function suffix2console() {
|
182 |
+
// global $hook_suffix;
|
183 |
+
// if (is_user_logged_in()) {
|
184 |
+
// $str = "<script type=\"text/javascript\">console.log('%s')</script>";
|
185 |
+
// printf($str, $hook_suffix);
|
186 |
+
// }
|
187 |
+
// }
|
vkExUnit_admin.php
CHANGED
@@ -131,6 +131,7 @@
|
|
131 |
</div><!-- [ /.plugin-description ] -->
|
132 |
</td>
|
133 |
</tr>
|
|
|
134 |
<!-- [ active_sns ] -->
|
135 |
<tr<?php echo (isset($options['active_sns']) && $options['active_sns']) ? ' class="active"': ' class="inactive"'; ?>>
|
136 |
<th scope='row' class='check-column'>
|
@@ -145,7 +146,7 @@
|
|
145 |
<?php if (isset($options['active_sns']) && $options['active_sns']) : ?>
|
146 |
<div class="row-actions visible">
|
147 |
<span class="0">
|
148 |
-
<a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting';?>">
|
149 |
<?php _e('Setting','vkExUnit');?>
|
150 |
</a></span>
|
151 |
</div>
|
@@ -157,9 +158,14 @@
|
|
157 |
<ul>
|
158 |
<li><?php _e('Print og tags to html head.','vkExUnit');?></li>
|
159 |
<li><?php _e('Print twitter card tags to html head.','vkExUnit');?></li>
|
160 |
-
<li><?php _e('Print social
|
161 |
-
<li><?php _e('Facebook Page Plugin.','vkExUnit');?></li>
|
|
|
162 |
</ul>
|
|
|
|
|
|
|
|
|
163 |
</div><!-- [ /.plugin-description ] -->
|
164 |
</td>
|
165 |
</tr>
|
@@ -178,7 +184,7 @@
|
|
178 |
<?php if (isset($options['active_ga']) && $options['active_ga']) : ?>
|
179 |
|
180 |
<span class="0">
|
181 |
-
<a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting';?>">
|
182 |
<?php _e('Setting','vkExUnit');?>
|
183 |
</a></span>
|
184 |
|
@@ -219,7 +225,11 @@
|
|
219 |
<input type="checkbox" name="vkExUnit_common_options[active_otherWidgets]" id="checkbox_active_otherWidgets" value="true" <?php echo (isset($options['active_otherWidgets']) && $options['active_otherWidgets'])? 'checked': ''; ?> />
|
220 |
</th>
|
221 |
<td class='plugin-title'>
|
222 |
-
<strong><?php _e('
|
|
|
|
|
|
|
|
|
223 |
</td>
|
224 |
<td class='column-description desc'>
|
225 |
<div class='plugin-description'>
|
@@ -230,6 +240,8 @@
|
|
230 |
<li><?php _e('VK_Profile - display the profile entered in the widget.','vkExUnit');?></li>
|
231 |
<li><?php _e('VK_FB Page Plugin - display the Facebook Page Plugin.','vkExUnit');?></li>
|
232 |
<li><?php _e('VK_3PR area - display the 3PR area.','vkExUnit');?></li>
|
|
|
|
|
233 |
</ul>
|
234 |
</div><!-- [ /.plugin-description ] -->
|
235 |
</td>
|
@@ -245,6 +257,14 @@
|
|
245 |
</th>
|
246 |
<td class='plugin-title'>
|
247 |
<strong><?php _e('CSS customize', 'vkExUnit');?></strong>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
</td>
|
249 |
<td class='column-description desc'>
|
250 |
<div class='plugin-description'>
|
131 |
</div><!-- [ /.plugin-description ] -->
|
132 |
</td>
|
133 |
</tr>
|
134 |
+
|
135 |
<!-- [ active_sns ] -->
|
136 |
<tr<?php echo (isset($options['active_sns']) && $options['active_sns']) ? ' class="active"': ' class="inactive"'; ?>>
|
137 |
<th scope='row' class='check-column'>
|
146 |
<?php if (isset($options['active_sns']) && $options['active_sns']) : ?>
|
147 |
<div class="row-actions visible">
|
148 |
<span class="0">
|
149 |
+
<a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_sns_options';?>">
|
150 |
<?php _e('Setting','vkExUnit');?>
|
151 |
</a></span>
|
152 |
</div>
|
158 |
<ul>
|
159 |
<li><?php _e('Print og tags to html head.','vkExUnit');?></li>
|
160 |
<li><?php _e('Print twitter card tags to html head.','vkExUnit');?></li>
|
161 |
+
<li><?php _e('Print social bookmark buttons.','vkExUnit');?></li>
|
162 |
+
<li><?php _e('Facebook Page Plugin widget.','vkExUnit');?></li>
|
163 |
+
<li><?php _e('Print Follow me box to content bottom.','vkExUnit');?></li>
|
164 |
</ul>
|
165 |
+
<p><?php
|
166 |
+
$settingPage = '<a href="'.admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_sns_options">'.__('Main setting page').'</a>';
|
167 |
+
printf( __( '* You can stop the function separately from the %s.', 'vkExUnit' ), $settingPage );?>
|
168 |
+
</p>
|
169 |
</div><!-- [ /.plugin-description ] -->
|
170 |
</td>
|
171 |
</tr>
|
184 |
<?php if (isset($options['active_ga']) && $options['active_ga']) : ?>
|
185 |
|
186 |
<span class="0">
|
187 |
+
<a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_ga_options';?>">
|
188 |
<?php _e('Setting','vkExUnit');?>
|
189 |
</a></span>
|
190 |
|
225 |
<input type="checkbox" name="vkExUnit_common_options[active_otherWidgets]" id="checkbox_active_otherWidgets" value="true" <?php echo (isset($options['active_otherWidgets']) && $options['active_otherWidgets'])? 'checked': ''; ?> />
|
226 |
</th>
|
227 |
<td class='plugin-title'>
|
228 |
+
<strong><?php _e('Widgets', 'vkExUnit');?></strong>
|
229 |
+
<span>
|
230 |
+
<a href="<?php echo admin_url().'widgets.php';?>">
|
231 |
+
<?php _e('Setting','vkExUnit');?>
|
232 |
+
</a></span>
|
233 |
</td>
|
234 |
<td class='column-description desc'>
|
235 |
<div class='plugin-description'>
|
240 |
<li><?php _e('VK_Profile - display the profile entered in the widget.','vkExUnit');?></li>
|
241 |
<li><?php _e('VK_FB Page Plugin - display the Facebook Page Plugin.','vkExUnit');?></li>
|
242 |
<li><?php _e('VK_3PR area - display the 3PR area.','vkExUnit');?></li>
|
243 |
+
<li>VK_<?php _e( 'categories/tags list', 'vkExUnit' ); ?> - <?php _e( 'Displays a categories, tags or format list.', 'vkExUnit' ); ?></li>
|
244 |
+
<li>VK_<?php _e( 'archive list', 'vkExUnit' ); ?> - <?php _e( 'Displays a list of archives. You can choose the post type and also to display archives by month or by year.' , 'vkExUnit' ); ?></li>
|
245 |
</ul>
|
246 |
</div><!-- [ /.plugin-description ] -->
|
247 |
</td>
|
257 |
</th>
|
258 |
<td class='plugin-title'>
|
259 |
<strong><?php _e('CSS customize', 'vkExUnit');?></strong>
|
260 |
+
<?php if (isset($options['active_css_customize']) && $options['active_css_customize']) : ?>
|
261 |
+
|
262 |
+
<span>
|
263 |
+
<a href="<?php echo admin_url().'admin.php?page=vkExUnit_css_customize';?>">
|
264 |
+
<?php _e('Setting','vkExUnit');?>
|
265 |
+
</a></span>
|
266 |
+
|
267 |
+
<?php endif; ?>
|
268 |
</td>
|
269 |
<td class='column-description desc'>
|
270 |
<div class='plugin-description'>
|