Version Description
- Profile Widget & Child Page Index bug fix.
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 0.1.6.3 |
Comparing to | |
See all releases |
Code changes from version 0.1.6.2 to 0.1.6.3
- admin_warpper.php +0 -72
- css/style.css +13 -18
- css/style_in_bs.css +9 -1
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +36 -18
- languages/vkexunit.mo +0 -0
- languages/vkexunit.pot +494 -444
- plugins/child_page_index/child_page_index.php +47 -49
- plugins/other_widget/widget-profile.php +44 -6
- readme.txt +4 -1
- vkExUnit.php +1 -1
admin_warpper.php
DELETED
@@ -1,72 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
function vkExUnit_add_main_setting() {
|
4 |
-
$capability_required = add_filter( 'vkExUnit_ga_page_capability', vkExUnit_get_capability_required() );
|
5 |
-
$custom_page = add_submenu_page(
|
6 |
-
'vkExUnit_setting_page', // parent
|
7 |
-
'Main setting', // Name of page
|
8 |
-
'Main setting', // Label in menu
|
9 |
-
// $capability_required,
|
10 |
-
'activate_plugins', // Capability
|
11 |
-
'vkExUnit_main_setting', // ユニークなこのサブメニューページの識別子
|
12 |
-
'vkExUnit_render_main_config' // メニューページのコンテンツを出力する関数
|
13 |
-
);
|
14 |
-
if ( ! $custom_page ) return;
|
15 |
-
}
|
16 |
-
add_action( 'admin_menu', 'vkExUnit_add_main_setting' );
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
function vkExUnit_render_main_config(){
|
21 |
-
|
22 |
-
vkExUnit_save_main_config();
|
23 |
-
?>
|
24 |
-
<div class="warp">
|
25 |
-
<form method="post" action="">
|
26 |
-
|
27 |
-
<?php
|
28 |
-
wp_nonce_field( 'standing_on_the_shoulder_of_giants', '_nonce_vkExUnit' );
|
29 |
-
do_action('vkExUnit_main_config');
|
30 |
-
?>
|
31 |
-
|
32 |
-
<?php submit_button(); ?>
|
33 |
-
</form>
|
34 |
-
</div>
|
35 |
-
<?php
|
36 |
-
}
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
function vkExUnit_register_setting( $option_group=false, $option_name, $sanitize_callback ){
|
41 |
-
global $vkExUnit_options;
|
42 |
-
$vkExUnit_options[] = array('option_name'=>$option_name, 'callback'=>$sanitize_callback);
|
43 |
-
}
|
44 |
-
|
45 |
-
|
46 |
-
function vkExUnit_main_config_sanitaize($post){
|
47 |
-
global $vkExUnit_options;
|
48 |
-
|
49 |
-
if(!empty($vkExUnit_options)){
|
50 |
-
foreach($vkExUnit_options as $opt){
|
51 |
-
if(!function_exists($opt['callback'])){ continue; }
|
52 |
-
|
53 |
-
$before = (isset($post[$opt['option_name']])? $post[$opt['option_name']]: null);
|
54 |
-
$option = $opt['callback']($before);
|
55 |
-
update_option($opt['option_name'], $option);
|
56 |
-
}
|
57 |
-
}
|
58 |
-
}
|
59 |
-
|
60 |
-
|
61 |
-
function vkExUnit_save_main_config(){
|
62 |
-
|
63 |
-
// nonce
|
64 |
-
if(!isset($_POST['_nonce_vkExUnit'])){
|
65 |
-
return ;
|
66 |
-
}
|
67 |
-
if(!wp_verify_nonce($_POST['_nonce_vkExUnit'], 'standing_on_the_shoulder_of_giants')){
|
68 |
-
return ;
|
69 |
-
}
|
70 |
-
|
71 |
-
vkExUnit_main_config_sanitaize($_POST);
|
72 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/style.css
CHANGED
@@ -1,20 +1,3 @@
|
|
1 |
-
/* .media(bootstrap)
|
2 |
-
/*-------------------------------------------*/
|
3 |
-
.media { border-bottom: 1px solid #e5e5e5; padding: 2em 0; margin-top: 0; }
|
4 |
-
.media:first-child { border-top: 1px solid #e5e5e5; }
|
5 |
-
.media .postList_thumbnail { width: 160px; margin-bottom: 0.5em; padding-right: 30px; display: block; overflow: hidden; float: left; }
|
6 |
-
.media .postList_thumbnail a { position: relative; display: block; overflow: hidden; }
|
7 |
-
.media .postList_thumbnail img { width: 100%; height: auto; }
|
8 |
-
.media .postList_thumbnail .postList_cateLabel { position: absolute; bottom: 0; left: 0; }
|
9 |
-
.media .media-body .media-heading { font-size: 1.8em; line-height: 1.3em; margin-top: 0; margin-bottom: 0.5em; font-weight: normal; }
|
10 |
-
.media .media-body .media-heading a { color: #464646; }
|
11 |
-
.media .media-body .media-heading a:hover { text-decoration: none; }
|
12 |
-
.media .media-body p { margin-bottom: 0; }
|
13 |
-
.media .media-body a.media-body_excerpt { color: #464646; }
|
14 |
-
|
15 |
-
@media (max-width: 767px) { .media .postList_thumbnail { padding-right: 20px; }
|
16 |
-
.media .media-body .media-heading { font-size: 1.2em; line-height: 1.3em; margin-bottom: 0.5em; } }
|
17 |
-
@media (max-width: 500px) { .media .postList_thumbnail { width: 100px; } }
|
18 |
/*-------------------------------------------------*/
|
19 |
/* ex_unit
|
20 |
/*-------------------------------------------------*/
|
@@ -34,6 +17,8 @@
|
|
34 |
/*-------------------------------------------*/
|
35 |
/* childPageIndex Plugin
|
36 |
/*-------------------------------------------*/
|
|
|
|
|
37 |
/*-------------------------------------------*/
|
38 |
/* .common
|
39 |
/*-------------------------------------------*/
|
@@ -115,7 +100,15 @@
|
|
115 |
/*-------------------------------------------*/
|
116 |
/* Profile wiget Plugin
|
117 |
/*-------------------------------------------*/
|
118 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
121 |
|
@@ -168,3 +161,5 @@
|
|
168 |
.sitemap-col .page_item { padding: 0; }
|
169 |
.sitemap-col .children { margin-bottom: 2em; }
|
170 |
.sitemap-col .cat-item { padding: 0; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*-------------------------------------------------*/
|
2 |
/* ex_unit
|
3 |
/*-------------------------------------------------*/
|
17 |
/*-------------------------------------------*/
|
18 |
/* childPageIndex Plugin
|
19 |
/*-------------------------------------------*/
|
20 |
+
/* sitemap page Plugin
|
21 |
+
/*-------------------------------------------*/
|
22 |
/*-------------------------------------------*/
|
23 |
/* .common
|
24 |
/*-------------------------------------------*/
|
100 |
/*-------------------------------------------*/
|
101 |
/* Profile wiget Plugin
|
102 |
/*-------------------------------------------*/
|
103 |
+
.site-profile { overflow: hidden; }
|
104 |
+
|
105 |
+
.profile_media { display: block; margin: 0.8em auto; max-width: 100%; }
|
106 |
+
|
107 |
+
.media_round { border-radius: 50%; }
|
108 |
+
|
109 |
+
.media_float { float: left; padding-right: 10px; }
|
110 |
+
.media_float .profile_media { margin: 0.8em 0 0; }
|
111 |
+
.media_float + .profile_text { padding-top: 0.8em; }
|
112 |
|
113 |
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
114 |
|
161 |
.sitemap-col .page_item { padding: 0; }
|
162 |
.sitemap-col .children { margin-bottom: 2em; }
|
163 |
.sitemap-col .cat-item { padding: 0; }
|
164 |
+
|
165 |
+
/*# sourceMappingURL=style.css.map */
|
css/style_in_bs.css
CHANGED
@@ -695,7 +695,15 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto
|
|
695 |
/*-------------------------------------------*/
|
696 |
/* Profile wiget Plugin
|
697 |
/*-------------------------------------------*/
|
698 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
|
700 |
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
701 |
|
695 |
/*-------------------------------------------*/
|
696 |
/* Profile wiget Plugin
|
697 |
/*-------------------------------------------*/
|
698 |
+
.site-profile { overflow: hidden; }
|
699 |
+
|
700 |
+
.profile_media { display: block; margin: 0.8em auto; max-width: 100%; }
|
701 |
+
|
702 |
+
.media_round { border-radius: 50%; }
|
703 |
+
|
704 |
+
.media_float { float: left; padding-right: 10px; }
|
705 |
+
.media_float .profile_media { margin: 0.8em 0 0; }
|
706 |
+
.media_float + .profile_text { padding-top: 0.8em; }
|
707 |
|
708 |
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
709 |
|
languages/vkExUnit-ja.mo
CHANGED
Binary file
|
languages/vkExUnit-ja.po
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2015-07-
|
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"
|
@@ -32,7 +32,7 @@ msgstr "見つかりません"
|
|
32 |
#: ../common_helpers.php:138 ../common_helpers.php:202
|
33 |
#, php-format
|
34 |
msgid "Page of %s"
|
35 |
-
msgstr "%s
|
36 |
|
37 |
#: ../common_helpers.php:162 ../common_helpers.php:170
|
38 |
#, php-format
|
@@ -418,8 +418,7 @@ msgstr ""
|
|
418 |
msgid "if checked you will display a sitemap"
|
419 |
msgstr "チェックを入れるとHTMLサイトマップを表示します。"
|
420 |
|
421 |
-
#: ../plugins/child_page_index/child_page_index.php:
|
422 |
-
#: ../plugins/child_page_index/child_page_index.php:48
|
423 |
#: ../plugins/other_widget/widget-3pr-area.php:274
|
424 |
#: ../plugins/other_widget/widget-3pr-area.php:316
|
425 |
#: ../plugins/other_widget/widget-3pr-area.php:359
|
@@ -618,7 +617,7 @@ msgstr "3PR エリア1 設定"
|
|
618 |
#: ../plugins/other_widget/widget-3pr-area.php:102
|
619 |
#: ../plugins/other_widget/widget-3pr-area.php:154
|
620 |
#: ../plugins/other_widget/widget-new-posts.php:75
|
621 |
-
#: ../plugins/other_widget/widget-profile.php:
|
622 |
#: ../plugins/sns/function_fbPagePlugin.php:75
|
623 |
msgid "Title:"
|
624 |
msgstr "タイトル"
|
@@ -635,7 +634,7 @@ msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
|
635 |
#: ../plugins/other_widget/widget-3pr-area.php:132
|
636 |
#: ../plugins/other_widget/widget-3pr-area.php:166
|
637 |
#: ../plugins/other_widget/widget-3pr-area.php:183
|
638 |
-
#: ../plugins/other_widget/widget-profile.php:
|
639 |
msgid "Select image"
|
640 |
msgstr "画像を選択"
|
641 |
|
@@ -645,7 +644,7 @@ msgstr "画像を選択"
|
|
645 |
#: ../plugins/other_widget/widget-3pr-area.php:133
|
646 |
#: ../plugins/other_widget/widget-3pr-area.php:167
|
647 |
#: ../plugins/other_widget/widget-3pr-area.php:184
|
648 |
-
#: ../plugins/other_widget/widget-profile.php:
|
649 |
msgid "Clear image"
|
650 |
msgstr "画像クリア"
|
651 |
|
@@ -747,47 +746,59 @@ msgstr ""
|
|
747 |
msgid "Profile"
|
748 |
msgstr "プロフィール"
|
749 |
|
750 |
-
#: ../plugins/other_widget/widget-profile.php:
|
751 |
msgid "Profile Text"
|
752 |
msgstr "プロフィールテキスト"
|
753 |
|
754 |
-
#: ../plugins/other_widget/widget-profile.php:
|
755 |
msgid "Select Profile image:"
|
756 |
msgstr "プロフィール用画像を選択"
|
757 |
|
758 |
-
#: ../plugins/other_widget/widget-profile.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
759 |
msgid "Profile Text:"
|
760 |
msgstr "プロフィールテキスト"
|
761 |
|
762 |
-
#: ../plugins/other_widget/widget-profile.php:
|
763 |
msgid "Facebook URL:"
|
764 |
msgstr "Facebook リンク先ページのURL"
|
765 |
|
766 |
-
#: ../plugins/other_widget/widget-profile.php:
|
767 |
msgid "Twitter URL:"
|
768 |
msgstr "twitterリンク先ページのURL"
|
769 |
|
770 |
-
#: ../plugins/other_widget/widget-profile.php:
|
771 |
msgid "Email Address:"
|
772 |
msgstr "Email リンク先ページのURL"
|
773 |
|
774 |
-
#: ../plugins/other_widget/widget-profile.php:
|
775 |
msgid "Youtube URL:"
|
776 |
msgstr "Youtube リンク先ページのURL"
|
777 |
|
778 |
-
#: ../plugins/other_widget/widget-profile.php:
|
779 |
msgid "RSS URL:"
|
780 |
msgstr "RSS リンク先ページのURL"
|
781 |
|
782 |
-
#: ../plugins/other_widget/widget-profile.php:
|
783 |
msgid "instagram URL:"
|
784 |
msgstr "instagram リンク先ページのURL"
|
785 |
|
786 |
-
#: ../plugins/other_widget/widget-profile.php:
|
787 |
msgid "linkedin URL:"
|
788 |
msgstr "linkedin リンク先ページのURL"
|
789 |
|
790 |
-
#: ../plugins/other_widget/widget-profile.php:
|
791 |
msgid "Site's Profile"
|
792 |
msgstr "プロフィール"
|
793 |
|
@@ -1153,6 +1164,13 @@ msgstr "BizVektor を使用して OGP タグを出力しない。"
|
|
1153 |
msgid "Page top"
|
1154 |
msgstr "ページ先頭へ"
|
1155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1156 |
#~ msgid "Display a child page index"
|
1157 |
#~ msgstr "子ページ一覧の表示"
|
1158 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-24 16:44+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"
|
32 |
#: ../common_helpers.php:138 ../common_helpers.php:202
|
33 |
#, php-format
|
34 |
msgid "Page of %s"
|
35 |
+
msgstr "%sページ目"
|
36 |
|
37 |
#: ../common_helpers.php:162 ../common_helpers.php:170
|
38 |
#, php-format
|
418 |
msgid "if checked you will display a sitemap"
|
419 |
msgstr "チェックを入れるとHTMLサイトマップを表示します。"
|
420 |
|
421 |
+
#: ../plugins/child_page_index/child_page_index.php:40
|
|
|
422 |
#: ../plugins/other_widget/widget-3pr-area.php:274
|
423 |
#: ../plugins/other_widget/widget-3pr-area.php:316
|
424 |
#: ../plugins/other_widget/widget-3pr-area.php:359
|
617 |
#: ../plugins/other_widget/widget-3pr-area.php:102
|
618 |
#: ../plugins/other_widget/widget-3pr-area.php:154
|
619 |
#: ../plugins/other_widget/widget-new-posts.php:75
|
620 |
+
#: ../plugins/other_widget/widget-profile.php:38
|
621 |
#: ../plugins/sns/function_fbPagePlugin.php:75
|
622 |
msgid "Title:"
|
623 |
msgstr "タイトル"
|
634 |
#: ../plugins/other_widget/widget-3pr-area.php:132
|
635 |
#: ../plugins/other_widget/widget-3pr-area.php:166
|
636 |
#: ../plugins/other_widget/widget-3pr-area.php:183
|
637 |
+
#: ../plugins/other_widget/widget-profile.php:49
|
638 |
msgid "Select image"
|
639 |
msgstr "画像を選択"
|
640 |
|
644 |
#: ../plugins/other_widget/widget-3pr-area.php:133
|
645 |
#: ../plugins/other_widget/widget-3pr-area.php:167
|
646 |
#: ../plugins/other_widget/widget-3pr-area.php:184
|
647 |
+
#: ../plugins/other_widget/widget-profile.php:50
|
648 |
msgid "Clear image"
|
649 |
msgstr "画像クリア"
|
650 |
|
746 |
msgid "Profile"
|
747 |
msgstr "プロフィール"
|
748 |
|
749 |
+
#: ../plugins/other_widget/widget-profile.php:25
|
750 |
msgid "Profile Text"
|
751 |
msgstr "プロフィールテキスト"
|
752 |
|
753 |
+
#: ../plugins/other_widget/widget-profile.php:43
|
754 |
msgid "Select Profile image:"
|
755 |
msgstr "プロフィール用画像を選択"
|
756 |
|
757 |
+
#: ../plugins/other_widget/widget-profile.php:60
|
758 |
+
msgid "Cut out round the image."
|
759 |
+
msgstr "画像を丸く切り抜いて表示する"
|
760 |
+
|
761 |
+
#: ../plugins/other_widget/widget-profile.php:64
|
762 |
+
msgid "Media size (Optional)"
|
763 |
+
msgstr "画像の大きさ( 任意 )"
|
764 |
+
|
765 |
+
#: ../plugins/other_widget/widget-profile.php:69
|
766 |
+
msgid "Text float to image."
|
767 |
+
msgstr "テキストを画像に回りこませる"
|
768 |
+
|
769 |
+
#: ../plugins/other_widget/widget-profile.php:73
|
770 |
msgid "Profile Text:"
|
771 |
msgstr "プロフィールテキスト"
|
772 |
|
773 |
+
#: ../plugins/other_widget/widget-profile.php:78
|
774 |
msgid "Facebook URL:"
|
775 |
msgstr "Facebook リンク先ページのURL"
|
776 |
|
777 |
+
#: ../plugins/other_widget/widget-profile.php:83
|
778 |
msgid "Twitter URL:"
|
779 |
msgstr "twitterリンク先ページのURL"
|
780 |
|
781 |
+
#: ../plugins/other_widget/widget-profile.php:88
|
782 |
msgid "Email Address:"
|
783 |
msgstr "Email リンク先ページのURL"
|
784 |
|
785 |
+
#: ../plugins/other_widget/widget-profile.php:93
|
786 |
msgid "Youtube URL:"
|
787 |
msgstr "Youtube リンク先ページのURL"
|
788 |
|
789 |
+
#: ../plugins/other_widget/widget-profile.php:98
|
790 |
msgid "RSS URL:"
|
791 |
msgstr "RSS リンク先ページのURL"
|
792 |
|
793 |
+
#: ../plugins/other_widget/widget-profile.php:103
|
794 |
msgid "instagram URL:"
|
795 |
msgstr "instagram リンク先ページのURL"
|
796 |
|
797 |
+
#: ../plugins/other_widget/widget-profile.php:107
|
798 |
msgid "linkedin URL:"
|
799 |
msgstr "linkedin リンク先ページのURL"
|
800 |
|
801 |
+
#: ../plugins/other_widget/widget-profile.php:140
|
802 |
msgid "Site's Profile"
|
803 |
msgstr "プロフィール"
|
804 |
|
1164 |
msgid "Page top"
|
1165 |
msgstr "ページ先頭へ"
|
1166 |
|
1167 |
+
#~ msgid "Media round setting:"
|
1168 |
+
#~ msgstr "画像を丸く切り抜くか:"
|
1169 |
+
|
1170 |
+
#, fuzzy
|
1171 |
+
#~ msgid "Media float setting:"
|
1172 |
+
#~ msgstr "メイン設定"
|
1173 |
+
|
1174 |
#~ msgid "Display a child page index"
|
1175 |
#~ msgstr "子ページ一覧の表示"
|
1176 |
|
languages/vkexunit.mo
CHANGED
Binary file
|
languages/vkexunit.pot
CHANGED
@@ -1,15 +1,14 @@
|
|
1 |
-
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
-
"POT-Creation-Date: 2015-07-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
8 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
@@ -98,11 +97,252 @@ msgstr ""
|
|
98 |
msgid "Chats"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: common_helpers.php:262 plugins/other_widget/
|
102 |
-
#: plugins/other_widget/widget-
|
103 |
msgid "Archives"
|
104 |
msgstr ""
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
#: plugins/auto_eyecatch.php:32
|
107 |
msgid "Automatic EyeCatch"
|
108 |
msgstr ""
|
@@ -111,20 +351,39 @@ msgstr ""
|
|
111 |
msgid "Do not set eyecatch image automatic."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: plugins/
|
115 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: plugins/
|
119 |
msgid "Choose display a child page index"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: plugins/
|
123 |
msgid "if checked you will display a child page index "
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: plugins/
|
127 |
-
|
|
|
|
|
|
|
128 |
#: plugins/other_widget/widget-3pr-area.php:274
|
129 |
#: plugins/other_widget/widget-3pr-area.php:316
|
130 |
#: plugins/other_widget/widget-3pr-area.php:359
|
@@ -165,10 +424,10 @@ msgid ""
|
|
165 |
"the site."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/
|
169 |
-
#: plugins/sns/old/sns_admin.php:
|
170 |
-
#: plugins/sns/old/sns_admin.php:
|
171 |
-
#: plugins/sns/sns_admin.php:
|
172 |
msgid "ex) "
|
173 |
msgstr ""
|
174 |
|
@@ -190,22 +449,6 @@ msgstr ""
|
|
190 |
msgid "To output both types"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: plugins/icons.php:26 plugins/icons.php:54
|
194 |
-
msgid "icon setting"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: plugins/icons.php:59
|
198 |
-
msgid "Favicon Setting"
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
#: plugins/icons.php:61
|
202 |
-
msgid "Choose icon"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: plugins/icons.php:62
|
206 |
-
msgid "Please upload your \".ico\" file"
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
#: plugins/meta_description/meta_description.php:7
|
210 |
#: plugins/meta_description/meta_description.php:19
|
211 |
msgid "Meta Description"
|
@@ -289,111 +532,8 @@ msgstr ""
|
|
289 |
msgid "* keywords common to the entire site can be set from %s."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: plugins/other_widget/
|
293 |
-
|
294 |
-
msgid ""
|
295 |
-
"Displays a list of archives. You can choose the post type and also to "
|
296 |
-
"display archives by month or by year."
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: plugins/other_widget/old/widget-archive-list.php:14
|
300 |
-
#: plugins/other_widget/widget-archives.php:14 vkExUnit_admin.php:262
|
301 |
-
msgid "archive list"
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: plugins/other_widget/old/widget-archive-list.php:49
|
305 |
-
#: plugins/other_widget/old/widget-archive-list.php:50
|
306 |
-
#: plugins/other_widget/widget-archives.php:49
|
307 |
-
#: plugins/other_widget/widget-archives.php:50
|
308 |
-
msgid "Monthly archives"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: plugins/other_widget/old/widget-archive-list.php:59
|
312 |
-
#: plugins/other_widget/widget-archives.php:59
|
313 |
-
msgid "Title"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: plugins/other_widget/old/widget-archive-list.php:63
|
317 |
-
#: plugins/other_widget/widget-archives.php:63
|
318 |
-
msgid "Post type"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: plugins/other_widget/old/widget-child-page-list.php:9
|
322 |
-
msgid "Displays list of child page for the current page."
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: plugins/other_widget/old/widget-child-page-list.php:11
|
326 |
-
msgid "child pages list"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: plugins/other_widget/old/widget-page-content.php:10
|
330 |
-
msgid "Displays the content of a chosen page."
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: plugins/other_widget/old/widget-page-content.php:12
|
334 |
-
msgid "page content for top"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: plugins/other_widget/old/widget-page-content.php:30
|
338 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
339 |
-
#: plugins/other_widget/widget-page.php:30
|
340 |
-
#: plugins/other_widget/widget-taxonomies.php:60
|
341 |
-
msgid "Display page"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
-
#: plugins/other_widget/old/widget-page-content.php:38
|
345 |
-
#: plugins/other_widget/widget-page.php:38
|
346 |
-
msgid "display title"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: plugins/other_widget/old/widget-page-content.php:61
|
350 |
-
#: plugins/other_widget/widget-page.php:60
|
351 |
-
msgid "Edit"
|
352 |
-
msgstr ""
|
353 |
-
|
354 |
-
#: plugins/other_widget/old/widget-rss-widget.php:9
|
355 |
-
msgid "Displays entries list from a RSS feed link."
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: plugins/other_widget/old/widget-rss-widget.php:11
|
359 |
-
msgid "RSS entries for top"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: plugins/other_widget/old/widget-rss-widget.php:25
|
363 |
-
msgid "Blog entries"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: plugins/other_widget/old/widget-rss-widget.php:30
|
367 |
-
msgid "Heading title"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:11 vkExUnit_admin.php:261
|
371 |
-
msgid "Displays a categories, tags or format list."
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:17 vkExUnit_admin.php:261
|
375 |
-
msgid "categories/tags list"
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
379 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
380 |
-
#: plugins/other_widget/widget-taxonomies.php:47
|
381 |
-
#: plugins/other_widget/widget-taxonomies.php:48
|
382 |
-
msgid "Category"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
386 |
-
#: plugins/other_widget/widget-taxonomies.php:56
|
387 |
-
msgid "Label to display"
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
391 |
-
#: plugins/other_widget/widget-taxonomies.php:76
|
392 |
-
msgid "Blog"
|
393 |
-
msgstr ""
|
394 |
-
|
395 |
-
#: plugins/other_widget/widget-3pr-area.php:11
|
396 |
-
msgid "Displays a 3PR area"
|
397 |
msgstr ""
|
398 |
|
399 |
#: plugins/other_widget/widget-3pr-area.php:13
|
@@ -423,7 +563,7 @@ msgstr ""
|
|
423 |
#: plugins/other_widget/widget-3pr-area.php:102
|
424 |
#: plugins/other_widget/widget-3pr-area.php:154
|
425 |
#: plugins/other_widget/widget-new-posts.php:75
|
426 |
-
#: plugins/other_widget/widget-profile.php:
|
427 |
#: plugins/sns/function_fbPagePlugin.php:75
|
428 |
msgid "Title:"
|
429 |
msgstr ""
|
@@ -440,7 +580,7 @@ msgstr ""
|
|
440 |
#: plugins/other_widget/widget-3pr-area.php:132
|
441 |
#: plugins/other_widget/widget-3pr-area.php:166
|
442 |
#: plugins/other_widget/widget-3pr-area.php:183
|
443 |
-
#: plugins/other_widget/widget-profile.php:
|
444 |
msgid "Select image"
|
445 |
msgstr ""
|
446 |
|
@@ -450,7 +590,7 @@ msgstr ""
|
|
450 |
#: plugins/other_widget/widget-3pr-area.php:133
|
451 |
#: plugins/other_widget/widget-3pr-area.php:167
|
452 |
#: plugins/other_widget/widget-3pr-area.php:184
|
453 |
-
#: plugins/other_widget/widget-profile.php:
|
454 |
msgid "Clear image"
|
455 |
msgstr ""
|
456 |
|
@@ -480,6 +620,23 @@ msgstr ""
|
|
480 |
msgid "3PR area3 setting"
|
481 |
msgstr ""
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#: plugins/other_widget/widget-new-posts.php:11
|
484 |
msgid "Displays a list of your most recent posts"
|
485 |
msgstr ""
|
@@ -506,6 +663,23 @@ msgstr ""
|
|
506 |
msgid "page content to widget"
|
507 |
msgstr ""
|
508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
509 |
#: plugins/other_widget/widget-profile.php:11
|
510 |
msgid "Displays a your profile"
|
511 |
msgstr ""
|
@@ -515,47 +689,59 @@ msgstr ""
|
|
515 |
msgid "Profile"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: plugins/other_widget/widget-profile.php:
|
519 |
msgid "Profile Text"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: plugins/other_widget/widget-profile.php:
|
523 |
msgid "Select Profile image:"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: plugins/other_widget/widget-profile.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
msgid "Profile Text:"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: plugins/other_widget/widget-profile.php:
|
531 |
msgid "Facebook URL:"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: plugins/other_widget/widget-profile.php:
|
535 |
msgid "Twitter URL:"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: plugins/other_widget/widget-profile.php:
|
539 |
msgid "Email Address:"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: plugins/other_widget/widget-profile.php:
|
543 |
msgid "Youtube URL:"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: plugins/other_widget/widget-profile.php:
|
547 |
msgid "RSS URL:"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: plugins/other_widget/widget-profile.php:
|
551 |
msgid "instagram URL:"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: plugins/other_widget/widget-profile.php:
|
555 |
msgid "linkedin URL:"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: plugins/other_widget/widget-profile.php:
|
559 |
msgid "Site's Profile"
|
560 |
msgstr ""
|
561 |
|
@@ -567,229 +753,157 @@ msgstr ""
|
|
567 |
msgid "Categories/Custom taxonomies list"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: plugins/
|
571 |
-
|
|
|
|
|
|
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: plugins/
|
575 |
-
|
|
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: plugins/
|
579 |
-
|
|
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: plugins/
|
583 |
-
msgid "
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: plugins/
|
587 |
-
msgid "
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: plugins/
|
591 |
-
msgid "
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: plugins/
|
595 |
-
msgid "
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: plugins/
|
599 |
-
msgid "
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: plugins/
|
603 |
-
msgid "
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: plugins/
|
607 |
-
msgid "
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: plugins/
|
611 |
-
msgid ""
|
612 |
-
"If you wish to link to a personal account or a Facebook page banner will be "
|
613 |
-
"displayed if you enter the URL."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: plugins/
|
617 |
-
msgid "
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: plugins/
|
621 |
-
msgid "
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: plugins/
|
625 |
-
msgid ""
|
626 |
-
"* If an application ID is not specified, neither a Like button nor the "
|
627 |
-
"comment field displays and operates correctly."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: plugins/
|
631 |
msgid ""
|
632 |
-
"Please
|
633 |
-
"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: plugins/
|
637 |
-
msgid "
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: plugins/sns/
|
641 |
-
msgid "
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: plugins/sns/
|
645 |
-
msgid "
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: plugins/sns/
|
649 |
-
msgid ""
|
650 |
-
"You can see the personal Facebook ID when you access the following url "
|
651 |
-
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: plugins/sns/
|
655 |
-
msgid ""
|
656 |
-
"Please search for terms as [find facebook user ID] if you are still not sure."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: plugins/sns/
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: plugins/sns/
|
664 |
-
msgid ""
|
665 |
-
"If you would like to link to a Twitter account, banner will be displayed if "
|
666 |
-
"you enter the account name."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: plugins/sns/
|
670 |
-
msgid "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: plugins/sns/
|
674 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
msgid ""
|
676 |
-
"* If
|
677 |
-
"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: plugins/sns/old/sns_admin.php:
|
681 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: plugins/sns/
|
685 |
msgid ""
|
686 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
687 |
"image that appears on the Facebook timeline."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: plugins/sns/
|
691 |
msgid "If a featured image is specified for the page, it takes precedence."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: plugins/sns/
|
695 |
msgid "Select an image"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: plugins/sns/
|
699 |
msgid ""
|
700 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
701 |
"recommended."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: plugins/sns/old/sns_admin.php:67
|
705 |
-
msgid "Social buttons"
|
706 |
-
msgstr ""
|
707 |
-
|
708 |
-
#: plugins/sns/old/sns_admin.php:68
|
709 |
-
msgid "Please check the type of page that displays the social button."
|
710 |
-
msgstr ""
|
711 |
-
|
712 |
-
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
713 |
-
msgid ""
|
714 |
-
"Within the type of page that is checked, if there is a particular page you "
|
715 |
-
"do not wish to display, enter the Page ID. If multiple pages, please "
|
716 |
-
"separate by commas."
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: plugins/sns/old/sns_admin.php:84
|
720 |
-
msgid "facebook comments box"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: plugins/sns/old/sns_admin.php:85
|
724 |
-
msgid "Please check the type of the page to display Facebook comments."
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: plugins/sns/old/sns_admin.php:104
|
728 |
-
msgid "If you wish to use Facebook LikeBox, please check the location."
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: plugins/sns/old/sns_admin.php:105
|
732 |
-
msgid "* Please be sure to set Facebook application ID."
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: plugins/sns/old/sns_admin.php:113
|
736 |
-
msgid "URL of the Facebook page."
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: plugins/sns/old/sns_admin.php:116
|
740 |
-
msgid "Display stream"
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
|
744 |
-
msgid "Display"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: plugins/sns/old/sns_admin.php:118
|
748 |
-
msgid "Display faces"
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: plugins/sns/old/sns_admin.php:120
|
752 |
-
msgid "Height of LikeBox"
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: plugins/sns/old/sns_admin.php:128
|
756 |
-
msgid "Do not output the OGP"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: plugins/sns/old/sns_admin.php:130
|
760 |
-
msgid ""
|
761 |
-
"If other plug-ins are used for the OGP, do not output the OGP using "
|
762 |
-
"BizVektor."
|
763 |
-
msgstr ""
|
764 |
-
|
765 |
-
#: plugins/sns/old/sns_admin.php:133
|
766 |
-
msgid "I want to output the OGP tags using BizVektor"
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#: plugins/sns/old/sns_admin.php:134
|
770 |
-
msgid "Do not output OGP tags using BizVektor"
|
771 |
-
msgstr ""
|
772 |
-
|
773 |
-
#: plugins/sns/old/sns_admin.php:149
|
774 |
-
msgid "Page top"
|
775 |
-
msgstr ""
|
776 |
-
|
777 |
-
#: plugins/sns/sns.php:17
|
778 |
-
msgid "SNS"
|
779 |
-
msgstr ""
|
780 |
-
|
781 |
-
#: plugins/sns/sns_admin.php:1
|
782 |
-
msgid "SNS Settings"
|
783 |
-
msgstr ""
|
784 |
-
|
785 |
-
#: plugins/sns/sns_admin.php:21
|
786 |
-
msgid "facebook page URL"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: plugins/sns/sns_admin.php:26
|
790 |
-
msgid "OG default image"
|
791 |
-
msgstr ""
|
792 |
-
|
793 |
#: plugins/sns/sns_admin.php:36
|
794 |
msgid "twitter ID"
|
795 |
msgstr ""
|
@@ -832,205 +946,141 @@ msgstr ""
|
|
832 |
msgid "Print the Follow me box"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#:
|
836 |
-
msgid "
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
840 |
-
msgid "Function"
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
844 |
-
msgid "Description"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#:
|
848 |
-
msgid "
|
849 |
msgstr ""
|
850 |
|
851 |
-
#:
|
852 |
-
msgid "
|
853 |
msgstr ""
|
854 |
|
855 |
-
#:
|
856 |
msgid ""
|
857 |
-
"If
|
858 |
-
"
|
859 |
-
msgstr ""
|
860 |
-
|
861 |
-
#: vkExUnit_admin.php:39
|
862 |
-
msgid "Choose Print link fontawesome."
|
863 |
-
msgstr ""
|
864 |
-
|
865 |
-
#: vkExUnit_admin.php:44
|
866 |
-
msgid "Print link fontawesome."
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
-
#: vkExUnit_admin.php:48
|
870 |
-
msgid "Print fontawesome link tag to html head."
|
871 |
-
msgstr ""
|
872 |
-
|
873 |
-
#: vkExUnit_admin.php:57 vkExUnit_admin.php:121
|
874 |
-
msgid "Choose Print meta description."
|
875 |
-
msgstr ""
|
876 |
-
|
877 |
-
#: vkExUnit_admin.php:62
|
878 |
-
msgid "Favicon setting"
|
879 |
-
msgstr ""
|
880 |
-
|
881 |
-
#: vkExUnit_admin.php:66
|
882 |
-
msgid "About favicon."
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: vkExUnit_admin.php:75
|
886 |
-
msgid "Choose Rewrite the title tag"
|
887 |
-
msgstr ""
|
888 |
-
|
889 |
-
#: vkExUnit_admin.php:80
|
890 |
-
msgid "Rewrite the title tag"
|
891 |
-
msgstr ""
|
892 |
-
|
893 |
-
#: vkExUnit_admin.php:84
|
894 |
-
msgid "Print is rewritten by its own rules to html head."
|
895 |
-
msgstr ""
|
896 |
-
|
897 |
-
#: vkExUnit_admin.php:93
|
898 |
-
msgid "Choose Print meta Keyword."
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#: vkExUnit_admin.php:98
|
902 |
-
msgid "Print meta Keyword"
|
903 |
-
msgstr ""
|
904 |
-
|
905 |
-
#: vkExUnit_admin.php:104 vkExUnit_admin.php:150 vkExUnit_admin.php:188
|
906 |
-
#: vkExUnit_admin.php:249 vkExUnit_admin.php:282
|
907 |
-
msgid "Setting"
|
908 |
-
msgstr ""
|
909 |
-
|
910 |
-
#: vkExUnit_admin.php:112
|
911 |
-
msgid "Print meta Keyword to html head."
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: vkExUnit_admin.php:126
|
915 |
-
msgid "Print meta description"
|
916 |
-
msgstr ""
|
917 |
-
|
918 |
-
#: vkExUnit_admin.php:130
|
919 |
-
msgid "Print meta description to html head."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#:
|
923 |
-
msgid "
|
924 |
msgstr ""
|
925 |
|
926 |
-
#:
|
927 |
-
msgid "
|
928 |
msgstr ""
|
929 |
|
930 |
-
#:
|
931 |
-
msgid "
|
932 |
msgstr ""
|
933 |
|
934 |
-
#:
|
935 |
-
msgid "
|
|
|
|
|
936 |
msgstr ""
|
937 |
|
938 |
-
#:
|
939 |
-
msgid "
|
|
|
940 |
msgstr ""
|
941 |
|
942 |
-
#:
|
943 |
-
msgid "
|
944 |
msgstr ""
|
945 |
|
946 |
-
#:
|
947 |
-
msgid "
|
|
|
|
|
948 |
msgstr ""
|
949 |
|
950 |
-
#:
|
951 |
-
msgid "
|
952 |
msgstr ""
|
953 |
|
954 |
-
#:
|
955 |
#, php-format
|
956 |
-
msgid "
|
957 |
-
|
958 |
-
|
959 |
-
#: vkExUnit_admin.php:177
|
960 |
-
msgid "Choose Print Google Analytics tracking code."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#:
|
964 |
-
msgid "
|
965 |
msgstr ""
|
966 |
|
967 |
-
#:
|
968 |
-
msgid "
|
969 |
msgstr ""
|
970 |
|
971 |
-
#:
|
972 |
-
msgid "
|
973 |
msgstr ""
|
974 |
|
975 |
-
#:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#:
|
980 |
-
msgid "
|
981 |
msgstr ""
|
982 |
|
983 |
-
#:
|
984 |
-
msgid "
|
985 |
msgstr ""
|
986 |
|
987 |
-
#:
|
988 |
-
msgid "
|
989 |
msgstr ""
|
990 |
|
991 |
-
#:
|
992 |
-
msgid "
|
993 |
msgstr ""
|
994 |
|
995 |
-
#:
|
996 |
-
msgid "
|
997 |
msgstr ""
|
998 |
|
999 |
-
#:
|
1000 |
-
msgid ""
|
1001 |
-
"VK_Recent Posts - display the link text and the date of the latest article "
|
1002 |
-
"title."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#:
|
1006 |
-
msgid ""
|
1007 |
-
"VK_Page content to widget - display the contents of the page to the widgets."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#:
|
1011 |
-
msgid "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#:
|
1015 |
-
msgid "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#:
|
1019 |
-
msgid "
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#:
|
1023 |
-
msgid "
|
|
|
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#:
|
1027 |
-
msgid "
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#:
|
1031 |
-
msgid "
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#:
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-24 16:48+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"
|
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.5.7\n"
|
12 |
"X-Poedit-SourceCharset: UTF-8\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
"X-Poedit-Basepath: ..\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:334
|
106 |
+
msgid "Select all"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:334
|
110 |
+
msgid "Function"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:334
|
114 |
+
msgid "Description"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: vkExUnit_admin.php:21
|
118 |
+
msgid "Choose Print Bootstrap css"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: vkExUnit_admin.php:26
|
122 |
+
msgid "Print Bootstrap css and js"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: vkExUnit_admin.php:30
|
126 |
+
msgid ""
|
127 |
+
"If your using theme has already including Bootstrap, you deactivate this "
|
128 |
+
"item."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: vkExUnit_admin.php:39
|
132 |
+
msgid "Choose Print link fontawesome."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: vkExUnit_admin.php:44
|
136 |
+
msgid "Print link fontawesome."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: vkExUnit_admin.php:48
|
140 |
+
msgid "Print fontawesome link tag to html head."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: vkExUnit_admin.php:57 vkExUnit_admin.php:121
|
144 |
+
msgid "Choose Print meta description."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: vkExUnit_admin.php:62
|
148 |
+
msgid "Favicon setting"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: vkExUnit_admin.php:66
|
152 |
+
msgid "About favicon."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: vkExUnit_admin.php:75
|
156 |
+
msgid "Choose Rewrite the title tag"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: vkExUnit_admin.php:80
|
160 |
+
msgid "Rewrite the title tag"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: vkExUnit_admin.php:84
|
164 |
+
msgid "Print is rewritten by its own rules to html head."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: vkExUnit_admin.php:93
|
168 |
+
msgid "Choose Print meta Keyword."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: vkExUnit_admin.php:98
|
172 |
+
msgid "Print meta Keyword"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: vkExUnit_admin.php:104 vkExUnit_admin.php:150 vkExUnit_admin.php:188
|
176 |
+
#: vkExUnit_admin.php:267 vkExUnit_admin.php:300
|
177 |
+
msgid "Setting"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: vkExUnit_admin.php:112
|
181 |
+
msgid "Print meta Keyword to html head."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: vkExUnit_admin.php:126
|
185 |
+
msgid "Print meta description"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: vkExUnit_admin.php:130
|
189 |
+
msgid "Print meta description to html head."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: vkExUnit_admin.php:139
|
193 |
+
msgid "Choose Social media cooperation."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: vkExUnit_admin.php:144
|
197 |
+
msgid "Social media cooperation."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: vkExUnit_admin.php:159
|
201 |
+
msgid "Print og tags to html head."
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: vkExUnit_admin.php:160
|
205 |
+
msgid "Print twitter card tags to html head."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: vkExUnit_admin.php:161
|
209 |
+
msgid "Print social bookmark buttons."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: vkExUnit_admin.php:162
|
213 |
+
msgid "Facebook Page Plugin widget."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: vkExUnit_admin.php:163
|
217 |
+
msgid "Print Follow me box to content bottom."
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: vkExUnit_admin.php:166
|
221 |
+
msgid "Main setting page"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: vkExUnit_admin.php:167
|
225 |
+
#, php-format
|
226 |
+
msgid "* You can stop the function separately from the %s."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: vkExUnit_admin.php:177
|
230 |
+
msgid "Choose Print Google Analytics tracking code."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: vkExUnit_admin.php:196
|
234 |
+
msgid "Print Google Analytics tracking code."
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: vkExUnit_admin.php:205
|
238 |
+
msgid "Choose Related posts."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: vkExUnit_admin.php:210 plugins/related_posts/related_posts.php:34
|
242 |
+
msgid "Related posts"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: vkExUnit_admin.php:214
|
246 |
+
msgid "Print Related posts lists to post content bottom."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: vkExUnit_admin.php:223
|
250 |
+
msgid "Choose display a child page index to posts."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: vkExUnit_admin.php:228
|
254 |
+
msgid "Child page index"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: vkExUnit_admin.php:232
|
258 |
+
msgid ""
|
259 |
+
"At the bottom of the specified page, it will display a list of the child "
|
260 |
+
"page."
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: vkExUnit_admin.php:241
|
264 |
+
msgid "Insert Site Map"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: vkExUnit_admin.php:246
|
268 |
+
msgid "Display HTML Site Map"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: vkExUnit_admin.php:250
|
272 |
+
msgid "It displays a HTML Site Map to the specified page."
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: vkExUnit_admin.php:259 vkExUnit_admin.php:290
|
276 |
+
msgid "Choose other widgets."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: vkExUnit_admin.php:264
|
280 |
+
msgid "Widgets"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: vkExUnit_admin.php:272
|
284 |
+
msgid "You can use various widgets."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: vkExUnit_admin.php:274
|
288 |
+
msgid ""
|
289 |
+
"VK_Recent Posts - display the link text and the date of the latest article "
|
290 |
+
"title."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: vkExUnit_admin.php:275
|
294 |
+
msgid ""
|
295 |
+
"VK_Page content to widget - display the contents of the page to the widgets."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: vkExUnit_admin.php:276
|
299 |
+
msgid "VK_Profile - display the profile entered in the widget."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: vkExUnit_admin.php:277
|
303 |
+
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: vkExUnit_admin.php:278
|
307 |
+
msgid "VK_3PR area - display the 3PR area."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: vkExUnit_admin.php:279 plugins/other_widget/old/widget-taxonomy-list.php:17
|
311 |
+
msgid "categories/tags list"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: vkExUnit_admin.php:279 plugins/other_widget/old/widget-taxonomy-list.php:11
|
315 |
+
msgid "Displays a categories, tags or format list."
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: vkExUnit_admin.php:280 plugins/other_widget/widget-archives.php:14
|
319 |
+
#: plugins/other_widget/old/widget-archive-list.php:14
|
320 |
+
msgid "archive list"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: vkExUnit_admin.php:280 plugins/other_widget/widget-archives.php:12
|
324 |
+
#: plugins/other_widget/old/widget-archive-list.php:12
|
325 |
+
msgid ""
|
326 |
+
"Displays a list of archives. You can choose the post type and also to "
|
327 |
+
"display archives by month or by year."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: vkExUnit_admin.php:295
|
331 |
+
msgid "CSS customize"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: vkExUnit_admin.php:307
|
335 |
+
msgid "You can set Customize CSS."
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: vkExUnit_admin.php:316 vkExUnit_admin.php:321
|
339 |
+
msgid "Automatic Eye Catch insert"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: vkExUnit_admin.php:325
|
343 |
+
msgid "Display Eye Catch image at before content."
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
#: plugins/auto_eyecatch.php:32
|
347 |
msgid "Automatic EyeCatch"
|
348 |
msgstr ""
|
351 |
msgid "Do not set eyecatch image automatic."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: plugins/icons.php:26 plugins/icons.php:54
|
355 |
+
msgid "icon setting"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: plugins/icons.php:59
|
359 |
+
msgid "Favicon Setting"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: plugins/icons.php:61
|
363 |
+
msgid "Choose icon"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: plugins/icons.php:62
|
367 |
+
msgid "Please upload your \".ico\" file"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: plugins/page_custom_field.php:12
|
371 |
+
msgid "Setting of insert items"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: plugins/page_custom_field.php:22 plugins/page_custom_field.php:32
|
375 |
msgid "Choose display a child page index"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: plugins/page_custom_field.php:27
|
379 |
msgid "if checked you will display a child page index "
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: plugins/page_custom_field.php:37
|
383 |
+
msgid "if checked you will display a sitemap"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: plugins/child_page_index/child_page_index.php:40
|
387 |
#: plugins/other_widget/widget-3pr-area.php:274
|
388 |
#: plugins/other_widget/widget-3pr-area.php:316
|
389 |
#: plugins/other_widget/widget-3pr-area.php:359
|
424 |
"the site."
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/sns_admin.php:31
|
428 |
+
#: plugins/sns/old/sns_admin.php:20 plugins/sns/old/sns_admin.php:61
|
429 |
+
#: plugins/sns/old/sns_admin.php:79 plugins/sns/old/sns_admin.php:98
|
430 |
+
#: plugins/sns/old/sns_admin.php:115
|
431 |
msgid "ex) "
|
432 |
msgstr ""
|
433 |
|
449 |
msgid "To output both types"
|
450 |
msgstr ""
|
451 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
#: plugins/meta_description/meta_description.php:7
|
453 |
#: plugins/meta_description/meta_description.php:19
|
454 |
msgid "Meta Description"
|
532 |
msgid "* keywords common to the entire site can be set from %s."
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: plugins/other_widget/widget-3pr-area.php:11
|
536 |
+
msgid "Displays a 3PR area"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgstr ""
|
538 |
|
539 |
#: plugins/other_widget/widget-3pr-area.php:13
|
563 |
#: plugins/other_widget/widget-3pr-area.php:102
|
564 |
#: plugins/other_widget/widget-3pr-area.php:154
|
565 |
#: plugins/other_widget/widget-new-posts.php:75
|
566 |
+
#: plugins/other_widget/widget-profile.php:38
|
567 |
#: plugins/sns/function_fbPagePlugin.php:75
|
568 |
msgid "Title:"
|
569 |
msgstr ""
|
580 |
#: plugins/other_widget/widget-3pr-area.php:132
|
581 |
#: plugins/other_widget/widget-3pr-area.php:166
|
582 |
#: plugins/other_widget/widget-3pr-area.php:183
|
583 |
+
#: plugins/other_widget/widget-profile.php:49
|
584 |
msgid "Select image"
|
585 |
msgstr ""
|
586 |
|
590 |
#: plugins/other_widget/widget-3pr-area.php:133
|
591 |
#: plugins/other_widget/widget-3pr-area.php:167
|
592 |
#: plugins/other_widget/widget-3pr-area.php:184
|
593 |
+
#: plugins/other_widget/widget-profile.php:50
|
594 |
msgid "Clear image"
|
595 |
msgstr ""
|
596 |
|
620 |
msgid "3PR area3 setting"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: plugins/other_widget/widget-archives.php:49
|
624 |
+
#: plugins/other_widget/widget-archives.php:50
|
625 |
+
#: plugins/other_widget/old/widget-archive-list.php:49
|
626 |
+
#: plugins/other_widget/old/widget-archive-list.php:50
|
627 |
+
msgid "Monthly archives"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: plugins/other_widget/widget-archives.php:59
|
631 |
+
#: plugins/other_widget/old/widget-archive-list.php:59
|
632 |
+
msgid "Title"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: plugins/other_widget/widget-archives.php:63
|
636 |
+
#: plugins/other_widget/old/widget-archive-list.php:63
|
637 |
+
msgid "Post type"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
#: plugins/other_widget/widget-new-posts.php:11
|
641 |
msgid "Displays a list of your most recent posts"
|
642 |
msgstr ""
|
663 |
msgid "page content to widget"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: plugins/other_widget/widget-page.php:30
|
667 |
+
#: plugins/other_widget/widget-taxonomies.php:60
|
668 |
+
#: plugins/other_widget/old/widget-page-content.php:30
|
669 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
670 |
+
msgid "Display page"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: plugins/other_widget/widget-page.php:38
|
674 |
+
#: plugins/other_widget/old/widget-page-content.php:38
|
675 |
+
msgid "display title"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: plugins/other_widget/widget-page.php:64
|
679 |
+
#: plugins/other_widget/old/widget-page-content.php:61
|
680 |
+
msgid "Edit"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
#: plugins/other_widget/widget-profile.php:11
|
684 |
msgid "Displays a your profile"
|
685 |
msgstr ""
|
689 |
msgid "Profile"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: plugins/other_widget/widget-profile.php:25
|
693 |
msgid "Profile Text"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: plugins/other_widget/widget-profile.php:43
|
697 |
msgid "Select Profile image:"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: plugins/other_widget/widget-profile.php:60
|
701 |
+
msgid "Cut out round the image."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: plugins/other_widget/widget-profile.php:64
|
705 |
+
msgid "Media size (Optional)"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: plugins/other_widget/widget-profile.php:69
|
709 |
+
msgid "Text float to image."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: plugins/other_widget/widget-profile.php:73
|
713 |
msgid "Profile Text:"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: plugins/other_widget/widget-profile.php:78
|
717 |
msgid "Facebook URL:"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: plugins/other_widget/widget-profile.php:83
|
721 |
msgid "Twitter URL:"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: plugins/other_widget/widget-profile.php:88
|
725 |
msgid "Email Address:"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: plugins/other_widget/widget-profile.php:93
|
729 |
msgid "Youtube URL:"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: plugins/other_widget/widget-profile.php:98
|
733 |
msgid "RSS URL:"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: plugins/other_widget/widget-profile.php:103
|
737 |
msgid "instagram URL:"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: plugins/other_widget/widget-profile.php:107
|
741 |
msgid "linkedin URL:"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: plugins/other_widget/widget-profile.php:140
|
745 |
msgid "Site's Profile"
|
746 |
msgstr ""
|
747 |
|
753 |
msgid "Categories/Custom taxonomies list"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: plugins/other_widget/widget-taxonomies.php:47
|
757 |
+
#: plugins/other_widget/widget-taxonomies.php:48
|
758 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
759 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
760 |
+
msgid "Category"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: plugins/other_widget/widget-taxonomies.php:56
|
764 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
765 |
+
msgid "Label to display"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: plugins/other_widget/widget-taxonomies.php:76
|
769 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
770 |
+
msgid "Blog"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: plugins/other_widget/old/widget-child-page-list.php:9
|
774 |
+
msgid "Displays list of child page for the current page."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: plugins/other_widget/old/widget-child-page-list.php:11
|
778 |
+
msgid "child pages list"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: plugins/other_widget/old/widget-page-content.php:10
|
782 |
+
msgid "Displays the content of a chosen page."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: plugins/other_widget/old/widget-page-content.php:12
|
786 |
+
msgid "page content for top"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: plugins/other_widget/old/widget-rss-widget.php:9
|
790 |
+
msgid "Displays entries list from a RSS feed link."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: plugins/other_widget/old/widget-rss-widget.php:11
|
794 |
+
msgid "RSS entries for top"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: plugins/other_widget/old/widget-rss-widget.php:25
|
798 |
+
msgid "Blog entries"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: plugins/other_widget/old/widget-rss-widget.php:30
|
802 |
+
msgid "Heading title"
|
|
|
|
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: plugins/sitemap_page/sitemap_admin.php:9
|
806 |
+
msgid "HTML Sitemap Settings"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: plugins/sitemap_page/sitemap_admin.php:13
|
810 |
+
msgid "Exclude page Settings"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: plugins/sitemap_page/sitemap_admin.php:15
|
814 |
+
msgid "Input you want to exclude page id."
|
|
|
|
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: plugins/sitemap_page/sitemap_admin.php:17
|
818 |
msgid ""
|
819 |
+
"* Please enter separated by \",\"(commas) if there is more than one page ID "
|
820 |
+
"that you want to exclude."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: plugins/sitemap_page/sitemap_page.php:17
|
824 |
+
msgid "HTML Sitemap"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: plugins/sns/function_fbPagePlugin.php:10
|
828 |
+
msgid "Displays a Facebook Page Plugin"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: plugins/sns/function_fbPagePlugin.php:85
|
832 |
+
msgid "Height"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: plugins/sns/function_fbPagePlugin.php:90
|
836 |
+
msgid "Show Friend's Faces"
|
|
|
|
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: plugins/sns/function_fbPagePlugin.php:95
|
840 |
+
msgid "Hide Cover Photo"
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: plugins/sns/function_fbPagePlugin.php:100
|
844 |
+
msgid "Show Page Posts"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: plugins/sns/function_follow.php:11
|
848 |
+
msgid "Follow me"
|
|
|
|
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: plugins/sns/sns.php:17
|
852 |
+
msgid "SNS"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: plugins/sns/sns_admin.php:1
|
856 |
+
msgid "SNS Settings"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: plugins/sns/sns_admin.php:13 plugins/sns/old/sns_admin.php:26
|
860 |
+
msgid "facebook application ID"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: plugins/sns/sns_admin.php:15 plugins/sns/old/sns_admin.php:28
|
864 |
+
msgid "I will check and get the application ID"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: plugins/sns/sns_admin.php:16 plugins/sns/old/sns_admin.php:29
|
868 |
msgid ""
|
869 |
+
"* If an application ID is not specified, neither a Like button nor the "
|
870 |
+
"comment field displays and operates correctly."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: plugins/sns/sns_admin.php:17 plugins/sns/old/sns_admin.php:30
|
874 |
+
msgid ""
|
875 |
+
"Please search for terms as [get Facebook application ID] If you do not know "
|
876 |
+
"much about how to get application ID for Facebook."
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: plugins/sns/sns_admin.php:21
|
880 |
+
msgid "facebook page URL"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: plugins/sns/sns_admin.php:26
|
884 |
+
msgid "OG default image"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: plugins/sns/sns_admin.php:27 plugins/sns/old/sns_admin.php:57
|
888 |
msgid ""
|
889 |
"If, for example someone pressed the Facebook [Like] button, this is the "
|
890 |
"image that appears on the Facebook timeline."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: plugins/sns/sns_admin.php:28 plugins/sns/old/sns_admin.php:58
|
894 |
msgid "If a featured image is specified for the page, it takes precedence."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: plugins/sns/sns_admin.php:30 plugins/sns/old/sns_admin.php:60
|
898 |
msgid "Select an image"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: plugins/sns/sns_admin.php:32 plugins/sns/old/sns_admin.php:62
|
902 |
msgid ""
|
903 |
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
904 |
"recommended."
|
905 |
msgstr ""
|
906 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
907 |
#: plugins/sns/sns_admin.php:36
|
908 |
msgid "twitter ID"
|
909 |
msgstr ""
|
946 |
msgid "Print the Follow me box"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: plugins/sns/old/sns.php:378
|
950 |
+
msgid "* It is necessary to set the Theme options page."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: plugins/sns/old/sns_admin.php:12
|
954 |
+
msgid "Social media"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: plugins/sns/old/sns_admin.php:13
|
958 |
+
msgid "If you are unsure, you can leave for later."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: plugins/sns/old/sns_admin.php:18
|
962 |
msgid ""
|
963 |
+
"If you wish to link to a personal account or a Facebook page banner will be "
|
964 |
+
"displayed if you enter the URL."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: plugins/sns/old/sns_admin.php:35
|
968 |
+
msgid "Facebook user ID (optional)"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: plugins/sns/old/sns_admin.php:36
|
972 |
+
msgid "Please enter the Facebook user ID of the administrator."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: plugins/sns/old/sns_admin.php:38
|
976 |
+
msgid "* It is not the application ID of the Facebook page."
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: plugins/sns/old/sns_admin.php:39
|
980 |
+
msgid ""
|
981 |
+
"You can see the personal Facebook ID when you access the following url "
|
982 |
+
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: plugins/sns/old/sns_admin.php:40
|
986 |
+
msgid ""
|
987 |
+
"Please search for terms as [find facebook user ID] if you are still not sure."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: plugins/sns/old/sns_admin.php:45
|
991 |
+
msgid "twitter account"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: plugins/sns/old/sns_admin.php:46
|
995 |
+
msgid ""
|
996 |
+
"If you would like to link to a Twitter account, banner will be displayed if "
|
997 |
+
"you enter the account name."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: plugins/sns/old/sns_admin.php:48
|
1001 |
+
msgid "widget"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: plugins/sns/old/sns_admin.php:49
|
1005 |
#, php-format
|
1006 |
+
msgid ""
|
1007 |
+
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
1008 |
+
"the source code into a [text] %s here."
|
|
|
|
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: plugins/sns/old/sns_admin.php:56
|
1012 |
+
msgid "OGP default image"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: plugins/sns/old/sns_admin.php:67
|
1016 |
+
msgid "Social buttons"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: plugins/sns/old/sns_admin.php:68
|
1020 |
+
msgid "Please check the type of page that displays the social button."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
1024 |
+
msgid ""
|
1025 |
+
"Within the type of page that is checked, if there is a particular page you "
|
1026 |
+
"do not wish to display, enter the Page ID. If multiple pages, please "
|
1027 |
+
"separate by commas."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: plugins/sns/old/sns_admin.php:84
|
1031 |
+
msgid "facebook comments box"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: plugins/sns/old/sns_admin.php:85
|
1035 |
+
msgid "Please check the type of the page to display Facebook comments."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: plugins/sns/old/sns_admin.php:104
|
1039 |
+
msgid "If you wish to use Facebook LikeBox, please check the location."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: plugins/sns/old/sns_admin.php:105
|
1043 |
+
msgid "* Please be sure to set Facebook application ID."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: plugins/sns/old/sns_admin.php:113
|
1047 |
+
msgid "URL of the Facebook page."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: plugins/sns/old/sns_admin.php:116
|
1051 |
+
msgid "Display stream"
|
|
|
|
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
|
1055 |
+
msgid "Display"
|
|
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: plugins/sns/old/sns_admin.php:118
|
1059 |
+
msgid "Display faces"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: plugins/sns/old/sns_admin.php:120
|
1063 |
+
msgid "Height of LikeBox"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: plugins/sns/old/sns_admin.php:128
|
1067 |
+
msgid "Do not output the OGP"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: plugins/sns/old/sns_admin.php:130
|
1071 |
+
msgid ""
|
1072 |
+
"If other plug-ins are used for the OGP, do not output the OGP using "
|
1073 |
+
"BizVektor."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: plugins/sns/old/sns_admin.php:133
|
1077 |
+
msgid "I want to output the OGP tags using BizVektor"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: plugins/sns/old/sns_admin.php:134
|
1081 |
+
msgid "Do not output OGP tags using BizVektor"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: plugins/sns/old/sns_admin.php:149
|
1085 |
+
msgid "Page top"
|
1086 |
msgstr ""
|
plugins/child_page_index/child_page_index.php
CHANGED
@@ -5,56 +5,54 @@
|
|
5 |
/* Child page index
|
6 |
/*-------------------------------------------*/
|
7 |
add_filter('the_content', 'show_childPageIndex', 7);
|
8 |
-
remove_filter('the_content','wpautop');
|
9 |
|
10 |
function show_childPageIndex($content) {
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
$all_wp_pages = $my_wp_query -> query(array('post_type' => 'page', 'posts_per_page' => -1, 'order' => 'ASC'));
|
19 |
-
|
20 |
-
$childrens = get_page_children( $post->post_parent, $all_wp_pages );
|
21 |
$parentId = $post->ID;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
foreach($childrens as $s){
|
27 |
-
$page = $s->ID;
|
28 |
-
$pageData = get_page($page);
|
29 |
-
$pageTitle = $pageData->post_title;
|
30 |
-
$pageContent = strip_tags($pageData->post_content);
|
31 |
-
if(!empty($pageExcerpt)){
|
32 |
-
$pageContent = $pageExcerpt;
|
33 |
-
}
|
34 |
-
$childPageList .= '<a href="'.esc_url(get_permalink($page)).'"><div class="childPage_list_box col-md-6"><h3 class="childPage_list_title">'.esc_html($pageTitle).'</h3><div class="childPage_list_body">'.get_the_post_thumbnail( $page, 'large' ).'<p class="childPage_list_text">'.mb_substr(esc_html($pageContent), 0, 50).'</p></div><span class="childPage_list_more btn btn-default btn-sm">'.__('Read more', 'vkExUnit').'</span></div></a>'.PHP_EOL;
|
35 |
-
}
|
36 |
-
} else {
|
37 |
-
// parent page
|
38 |
-
foreach($childrens as $s){
|
39 |
-
if($s->post_parent === $parentId){
|
40 |
-
$page = $s->ID;
|
41 |
-
$pageData = get_page($page);
|
42 |
-
$pageTitle = $pageData->post_title;
|
43 |
-
$pageExcerpt = $pageData->post_excerpt;
|
44 |
-
$pageContent = strip_tags(get_post_field('post_content', $page));
|
45 |
-
if(!empty($pageExcerpt)){
|
46 |
-
$pageContent = $pageExcerpt;
|
47 |
-
}
|
48 |
-
$childPageList .= '<a href="'.esc_url(get_permalink($page)).'"><div class="childPage_list_box col-md-6"><h3 class="childPage_list_title">'.esc_html($pageTitle).'</h3><div class="childPage_list_body">'.get_the_post_thumbnail( $page, 'large' ).'<p class="childPage_list_text">'.mb_substr(esc_html($pageContent), 0, 50).'</p><span class="childPage_list_more btn btn-default btn-sm">'.__('Read more', 'vkExUnit').'</span></div></div></a>'.PHP_EOL;
|
49 |
-
}
|
50 |
-
}
|
51 |
-
}
|
52 |
-
|
53 |
-
$content = wpautop($content).$childPageList.'</div>'.PHP_EOL.'<!-- [ /.childPage_list ] -->'.PHP_EOL;
|
54 |
-
return $content;
|
55 |
-
}
|
56 |
-
}
|
57 |
-
return wpautop($content);
|
58 |
-
}
|
59 |
-
|
60 |
-
?>
|
5 |
/* Child page index
|
6 |
/*-------------------------------------------*/
|
7 |
add_filter('the_content', 'show_childPageIndex', 7);
|
|
|
8 |
|
9 |
function show_childPageIndex($content) {
|
10 |
+
remove_filter('the_content','wpautop');
|
11 |
+
global $post;
|
12 |
+
$childPageIndex_value = get_post_meta( $post->ID, 'vkExUnit_childPageIndex' );
|
13 |
+
if(!empty($childPageIndex_value)){
|
14 |
+
// check the childPageIndex_value
|
15 |
+
if( is_page() && $childPageIndex_value[0] == 'active'){
|
16 |
+
|
|
|
|
|
|
|
17 |
$parentId = $post->ID;
|
18 |
+
$args = array(
|
19 |
+
'post_type' => 'page',
|
20 |
+
'posts_per_page' => -1,
|
21 |
+
'post_parent' => $parentId,
|
22 |
+
);
|
23 |
+
$childrens = new WP_Query($args);
|
24 |
+
|
25 |
+
if ($childrens->have_posts()) :
|
26 |
+
$childPageList_html = PHP_EOL.'<div class="row childPage_list">'.PHP_EOL;
|
27 |
+
while ( $childrens->have_posts() ) : $childrens->the_post();
|
28 |
+
|
29 |
+
// Set Excerpt
|
30 |
+
$postExcerpt = $post->post_excerpt;
|
31 |
+
if ( !$postExcerpt) {
|
32 |
+
$postExcerpt = esc_html(mb_substr( strip_tags($post->post_content), 0, 120 )); // kill tags and trim 120 chara
|
33 |
+
}
|
34 |
+
|
35 |
+
// Page Item build
|
36 |
+
$childPageList_html .= '<a href="'.esc_url(get_permalink()).'"><div class="childPage_list_box col-md-6">';
|
37 |
+
$childPageList_html .= '<h3 class="childPage_list_title">'.esc_html(get_the_title()).'</h3>';
|
38 |
+
$childPageList_html .= '<div class="childPage_list_body">'.get_the_post_thumbnail( $post->ID, 'large' );
|
39 |
+
$childPageList_html .= '<p class="childPage_list_text">'.esc_html($postExcerpt).'</p></div>';
|
40 |
+
$childPageList_html .= '<span class="childPage_list_more btn btn-default btn-sm">'.__('Read more', 'vkExUnit').'</span>';
|
41 |
+
$childPageList_html .= '</div></a>'.PHP_EOL;
|
42 |
+
|
43 |
+
endwhile;
|
44 |
+
$childPageList_html .= PHP_EOL.'</div><!-- [ /.childPage_list ] -->'.PHP_EOL;
|
45 |
+
|
46 |
+
return wpautop($content).$childPageList_html;
|
47 |
+
|
48 |
+
else :
|
49 |
+
|
50 |
+
return wpautop($content);
|
51 |
+
|
52 |
+
endif;
|
53 |
+
} // if( is_page() && $childPageIndex_value[0] == 'active'){
|
54 |
+
} // if(!empty($childPageIndex_value)){
|
55 |
|
56 |
+
return wpautop($content);
|
57 |
+
add_filter('the_content','wpautop');
|
58 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
plugins/other_widget/widget-profile.php
CHANGED
@@ -19,6 +19,9 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
19 |
'label' => __('Profile', 'vkExUnit' ),
|
20 |
'mediaFile' => '',
|
21 |
'mediaAlt' => '',
|
|
|
|
|
|
|
22 |
'profile' => __('Profile Text', 'vkExUnit' ),
|
23 |
'facebook' => '',
|
24 |
'twitter' => '',
|
@@ -42,7 +45,7 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
42 |
<input type="hidden" class="media_url" id="<?php echo $this->get_field_id('mediaFile'); ?>_media" name="<?php echo $this->get_field_name('mediaFile'); ?>" value="<?php echo esc_attr($instance['mediaFile']); ?>" />
|
43 |
|
44 |
<input type="hidden" class="media_alt" id="<?php echo $this->get_field_id('mediaAlt'); ?>_media" name="<?php echo $this->get_field_name('mediaAlt'); ?>" value="<?php echo esc_attr($instance['mediaAlt']); ?>" />
|
45 |
-
|
46 |
<input type="button" class="media_select" value="<?php _e('Select image', 'vkExUnit'); ?>" onclick="clickSelect(event.target);" />
|
47 |
<input type="button" class="media_clear" value="<?php _e('Clear image', 'vkExUnit'); ?>" onclick="clickClear(event.target);" />
|
48 |
</p>
|
@@ -53,6 +56,19 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
53 |
<?php endif; ?>
|
54 |
</div>
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
<?php //profile text ?>
|
57 |
<p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Profile Text:', 'vkExUnit'); ?></label></p>
|
58 |
|
@@ -100,6 +116,9 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
100 |
$instance['mediaFile'] = $new_instance['mediaFile'];
|
101 |
$instance['mediaAlt'] = $new_instance['mediaAlt'];
|
102 |
$instance['profile'] = $new_instance['profile'];
|
|
|
|
|
|
|
103 |
$instance['facebook'] = $new_instance['facebook'];
|
104 |
$instance['twitter'] = $new_instance['twitter'];
|
105 |
$instance['mail'] = $new_instance['mail'];
|
@@ -121,12 +140,31 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
121 |
_e("Site's Profile", 'vkExUnit' );
|
122 |
}
|
123 |
echo '</h1>'; ?>
|
124 |
-
|
125 |
-
<div class="site-profile">
|
126 |
<?php // Display a profile image
|
127 |
-
|
128 |
-
|
129 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
// Display a profile text
|
131 |
if( !empty($instance['profile']) ){
|
132 |
echo '<p class="profile_text">'.nl2br(esc_attr($instance['profile'])).'</p>'.PHP_EOL;
|
19 |
'label' => __('Profile', 'vkExUnit' ),
|
20 |
'mediaFile' => '',
|
21 |
'mediaAlt' => '',
|
22 |
+
'mediaRound' => '',
|
23 |
+
'mediaSize' => '',
|
24 |
+
'mediaFloat' => '',
|
25 |
'profile' => __('Profile Text', 'vkExUnit' ),
|
26 |
'facebook' => '',
|
27 |
'twitter' => '',
|
45 |
<input type="hidden" class="media_url" id="<?php echo $this->get_field_id('mediaFile'); ?>_media" name="<?php echo $this->get_field_name('mediaFile'); ?>" value="<?php echo esc_attr($instance['mediaFile']); ?>" />
|
46 |
|
47 |
<input type="hidden" class="media_alt" id="<?php echo $this->get_field_id('mediaAlt'); ?>_media" name="<?php echo $this->get_field_name('mediaAlt'); ?>" value="<?php echo esc_attr($instance['mediaAlt']); ?>" />
|
48 |
+
|
49 |
<input type="button" class="media_select" value="<?php _e('Select image', 'vkExUnit'); ?>" onclick="clickSelect(event.target);" />
|
50 |
<input type="button" class="media_clear" value="<?php _e('Clear image', 'vkExUnit'); ?>" onclick="clickClear(event.target);" />
|
51 |
</p>
|
56 |
<?php endif; ?>
|
57 |
</div>
|
58 |
|
59 |
+
<?php //image round setting ?>
|
60 |
+
<p><input type="checkbox" id="<?php echo $this->get_field_id('mediaRound'); ?>_round" name="<?php echo $this->get_field_name('mediaRound'); ?>" value="true" <?php echo ($instance['mediaRound'])? 'checked': '' ; ?> ><label for="<?php echo $this->get_field_id('mediaRound'); ?>"><?php _e('Cut out round the image.', 'vkExUnit'); ?></label>
|
61 |
+
</p>
|
62 |
+
|
63 |
+
<?php //image size setting ?>
|
64 |
+
<p><label for="<?php echo $this->get_field_id('mediaSize'); ?>"><?php _e('Media size (Optional)', 'vkExUnit'); ?></label><br/>
|
65 |
+
<input type="text" id="<?php echo $this->get_field_id('mediaSize'); ?>_size" class="prof_input" name="<?php echo $this->get_field_name('mediaSize'); ?>" style="width:50px;" value="<?php echo $instance['mediaSize']; ?>" /> px
|
66 |
+
</p>
|
67 |
+
|
68 |
+
<?php //image float setting ?>
|
69 |
+
<p><input type="checkbox" id="<?php echo $this->get_field_id('mediaFloat'); ?>_float" name="<?php echo $this->get_field_name('mediaFloat'); ?>" value="true" <?php echo ($instance['mediaFloat'])? 'checked': '' ; ?> ><label for="<?php echo $this->get_field_id('mediaFloat'); ?>"><?php _e('Text float to image.', 'vkExUnit'); ?></label><br/>
|
70 |
+
</p>
|
71 |
+
|
72 |
<?php //profile text ?>
|
73 |
<p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Profile Text:', 'vkExUnit'); ?></label></p>
|
74 |
|
116 |
$instance['mediaFile'] = $new_instance['mediaFile'];
|
117 |
$instance['mediaAlt'] = $new_instance['mediaAlt'];
|
118 |
$instance['profile'] = $new_instance['profile'];
|
119 |
+
$instance['mediaRound'] = $new_instance['mediaRound'];
|
120 |
+
$instance['mediaSize'] = $new_instance['mediaSize'];
|
121 |
+
$instance['mediaFloat'] = $new_instance['mediaFloat'];
|
122 |
$instance['facebook'] = $new_instance['facebook'];
|
123 |
$instance['twitter'] = $new_instance['twitter'];
|
124 |
$instance['mail'] = $new_instance['mail'];
|
140 |
_e("Site's Profile", 'vkExUnit' );
|
141 |
}
|
142 |
echo '</h1>'; ?>
|
143 |
+
|
144 |
+
<div class="site-profile" >
|
145 |
<?php // Display a profile image
|
146 |
+
|
147 |
+
$mediaRound = isset($instance['mediaRound']) ? ' media_round' : '' ;
|
148 |
+
$mediaSize = isset($instance['mediaSize']) ? mb_convert_kana($instance['mediaSize']) : '' ;
|
149 |
+
|
150 |
+
echo '<div';
|
151 |
+
if(!empty($instance['mediaFloat'])){
|
152 |
+
echo ' class="media_float"';
|
153 |
+
}
|
154 |
+
echo '><img class="profile_media';
|
155 |
+
if( !empty($mediaRound) || !empty($mediaSize) || !empty($mediaFloat) ){
|
156 |
+
if( !empty($mediaRound) ){
|
157 |
+
echo $mediaRound;
|
158 |
+
}
|
159 |
+
echo '" src="'.esc_url($instance['mediaFile']).'"';
|
160 |
+
if( !empty($mediaSize) ) {
|
161 |
+
echo ' width="'.$mediaSize.'"';
|
162 |
+
}
|
163 |
+
echo ' alt="'.esc_attr($instance['mediaAlt']).'" /></div>'.PHP_EOL;
|
164 |
+
} else {
|
165 |
+
echo '" src="'.esc_url($instance['mediaFile']).'" alt="'.esc_attr($instance['mediaAlt']).'" /></div>'.PHP_EOL;
|
166 |
+
}
|
167 |
+
|
168 |
// Display a profile text
|
169 |
if( !empty($instance['profile']) ){
|
170 |
echo '<p class="profile_text">'.nl2br(esc_attr($instance['profile'])).'</p>'.PHP_EOL;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 0.1.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -67,6 +67,9 @@ e.g.
|
|
67 |
|
68 |
== Changelog ==
|
69 |
|
|
|
|
|
|
|
70 |
= 0.1.6.0 =
|
71 |
* Add HTML auto sitemap.
|
72 |
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 0.1.6.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
+
= 0.1.6.3 =
|
71 |
+
* Profile Widget & Child Page Index bug fix.
|
72 |
+
|
73 |
= 0.1.6.0 =
|
74 |
* Add HTML auto sitemap.
|
75 |
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
|
5 |
Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
-
Version: 0.1.6.
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
|
5 |
Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
+
Version: 0.1.6.3
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|