Version Description
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 0.1.4.1 |
Comparing to | |
See all releases |
Code changes from version 0.1.3.1 to 0.1.4.1
- README.md +4 -0
- _scss/style.scss +51 -24
- common_init.php +3 -0
- css/style.css +69 -27
- css/style_in_bs.css +53 -26
- gulpfile.js +2 -2
- js/all.js +27 -26
- js/all.min.js +3 -3
- js/all_in_bs.js +34 -33
- js/all_in_bs.min.js +3 -3
- js/master.js +2 -1
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +666 -521
- languages/vkexunit.mo +0 -0
- languages/vkexunit.pot +443 -361
- plugins/auto_eyecatch.php +113 -0
- plugins/icons.php +81 -0
- plugins/meta_description/meta_description.php +5 -5
- plugins/meta_keyword/meta_keyword.php +20 -19
- plugins/other_widget/js/widget-3pr-uploader.js +18 -18
- plugins/other_widget/js/widget-prof-uploader.js +5 -5
- plugins/other_widget/other_widget.php +2 -1
- plugins/other_widget/widget-3pr-area.php +241 -264
- plugins/other_widget/widget-page.php +66 -0
- plugins/other_widget/widget-profile.php +66 -63
- readme.txt +7 -1
- vkExUnit.php +11 -7
- vkExUnit_admin.php +66 -15
README.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
# コーディングルール
|
2 |
|
|
|
|
|
|
|
|
|
3 |
## CSS命名について
|
4 |
|
5 |
- 複数の単語の場合はキャメルケース(連結する単語の最初の1文字を大文字)にする
|
1 |
# コーディングルール
|
2 |
|
3 |
+
## DBに保存する名前
|
4 |
+
|
5 |
+
単語を連結する場合は _ で連結する
|
6 |
+
|
7 |
## CSS命名について
|
8 |
|
9 |
- 複数の単語の場合はキャメルケース(連結する単語の最初の1文字を大文字)にする
|
_scss/style.scss
CHANGED
@@ -2,11 +2,42 @@
|
|
2 |
@import "compass";
|
3 |
@import "_bizvektor_theme_included_style";
|
4 |
|
5 |
-
|
6 |
/* ex_unit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
/*-------------------------------------------*/
|
|
|
|
|
|
|
8 |
.link-list li { padding:0.5em; }
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
.sitemap .sectionBox { padding-top:0; }
|
11 |
.sitemap .sitemap-col { padding-bottom:2em; }
|
12 |
|
@@ -26,7 +57,7 @@
|
|
26 |
.vkContentAddSection { display:block; clear:both; overflow:hidden; padding-top:20px; }
|
27 |
|
28 |
/*-------------------------------------------*/
|
29 |
-
/*
|
30 |
/*-------------------------------------------*/
|
31 |
.socialSet ul { margin:0px;padding:0; }
|
32 |
.socialSet ul li { position:relative; display:block;float:left; overflow:visible; margin-right:10px; padding:0px; background:none; }
|
@@ -99,14 +130,14 @@
|
|
99 |
/*-------------------------------------------*/
|
100 |
/* Profile wiget Plugin
|
101 |
/*-------------------------------------------*/
|
102 |
-
.
|
103 |
margin: 0.5em 0;
|
104 |
}
|
105 |
-
.
|
106 |
margin-bottom: 0.5em;
|
107 |
font-size: 14px;
|
108 |
}
|
109 |
-
.
|
110 |
margin: 0;
|
111 |
padding: 0;
|
112 |
width: 100%;
|
@@ -136,41 +167,37 @@
|
|
136 |
vertical-align:middle;
|
137 |
text-align:center;
|
138 |
}
|
139 |
-
.
|
140 |
a{
|
141 |
background: #3b5998;
|
142 |
}
|
143 |
}
|
144 |
-
.
|
145 |
a{
|
146 |
background: #55acee;
|
147 |
}
|
148 |
}
|
149 |
-
.
|
150 |
a{
|
151 |
-
|
152 |
-
height: 44px;
|
153 |
-
border: solid 1px #ccc;
|
154 |
-
background: #fff;
|
155 |
-
color: #999;
|
156 |
}
|
157 |
}
|
158 |
-
.
|
159 |
a{
|
160 |
background: #C81D1C;
|
161 |
}
|
162 |
}
|
163 |
-
.
|
164 |
a{
|
165 |
background: #f26522;
|
166 |
}
|
167 |
}
|
168 |
-
.
|
169 |
a{
|
170 |
background: #3f729b;
|
171 |
}
|
172 |
}
|
173 |
-
.
|
174 |
a{
|
175 |
background: #0077b5;
|
176 |
}
|
@@ -179,17 +206,17 @@
|
|
179 |
/*-------------------------------------------*/
|
180 |
/* 3PR area wiget Plugin
|
181 |
/*-------------------------------------------*/
|
182 |
-
.
|
183 |
.subSection-title{
|
184 |
font-size: 18px;
|
185 |
}
|
186 |
-
.
|
187 |
margin-bottom: 0.5em;
|
188 |
}
|
189 |
-
.
|
190 |
display: block;
|
191 |
}
|
192 |
-
.
|
193 |
display: none;
|
194 |
}
|
195 |
.summary{
|
@@ -204,11 +231,11 @@
|
|
204 |
}
|
205 |
}
|
206 |
@media screen and (max-width:768px){
|
207 |
-
.
|
208 |
-
.
|
209 |
display: none;
|
210 |
}
|
211 |
-
.
|
212 |
display: block;
|
213 |
}
|
214 |
.linkurl {
|
2 |
@import "compass";
|
3 |
@import "_bizvektor_theme_included_style";
|
4 |
|
5 |
+
/*-------------------------------------------------*/
|
6 |
/* ex_unit
|
7 |
+
/*-------------------------------------------------*/
|
8 |
+
/* .common
|
9 |
+
/*-------------------------------------------*/
|
10 |
+
/* .autoEyeCatchBox
|
11 |
+
/*-------------------------------------------*/
|
12 |
+
/* .sitemap
|
13 |
+
/*-------------------------------------------*/
|
14 |
+
/* fb Page Plugin
|
15 |
+
/*-------------------------------------------*/
|
16 |
+
/* .socialSet
|
17 |
+
/*-------------------------------------------*/
|
18 |
+
/* Profile wiget Plugin
|
19 |
+
/*-------------------------------------------*/
|
20 |
+
/* 3PR area wiget Plugin
|
21 |
+
/*-------------------------------------------*/
|
22 |
+
|
23 |
/*-------------------------------------------*/
|
24 |
+
/* .common
|
25 |
+
/*-------------------------------------------*/
|
26 |
+
|
27 |
.link-list li { padding:0.5em; }
|
28 |
|
29 |
+
/*-------------------------------------------*/
|
30 |
+
/* .autoEyeCatchBox
|
31 |
+
/*-------------------------------------------*/
|
32 |
+
|
33 |
+
.autoEyeCatchBox { display:block; overflow:hidden;margin-bottom:2em; }
|
34 |
+
|
35 |
+
/*-------------------------------------------*/
|
36 |
+
/* .sitemap
|
37 |
+
/*-------------------------------------------*/
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
.sitemap .sectionBox { padding-top:0; }
|
42 |
.sitemap .sitemap-col { padding-bottom:2em; }
|
43 |
|
57 |
.vkContentAddSection { display:block; clear:both; overflow:hidden; padding-top:20px; }
|
58 |
|
59 |
/*-------------------------------------------*/
|
60 |
+
/* .socialSet
|
61 |
/*-------------------------------------------*/
|
62 |
.socialSet ul { margin:0px;padding:0; }
|
63 |
.socialSet ul li { position:relative; display:block;float:left; overflow:visible; margin-right:10px; padding:0px; background:none; }
|
130 |
/*-------------------------------------------*/
|
131 |
/* Profile wiget Plugin
|
132 |
/*-------------------------------------------*/
|
133 |
+
.profile_media{
|
134 |
margin: 0.5em 0;
|
135 |
}
|
136 |
+
.profile_text{
|
137 |
margin-bottom: 0.5em;
|
138 |
font-size: 14px;
|
139 |
}
|
140 |
+
.sns_btns{
|
141 |
margin: 0;
|
142 |
padding: 0;
|
143 |
width: 100%;
|
167 |
vertical-align:middle;
|
168 |
text-align:center;
|
169 |
}
|
170 |
+
.facebook_btn{
|
171 |
a{
|
172 |
background: #3b5998;
|
173 |
}
|
174 |
}
|
175 |
+
.twitter_btn{
|
176 |
a{
|
177 |
background: #55acee;
|
178 |
}
|
179 |
}
|
180 |
+
.mail_btn{
|
181 |
a{
|
182 |
+
background: #2F915F;
|
|
|
|
|
|
|
|
|
183 |
}
|
184 |
}
|
185 |
+
.youtube_btn{
|
186 |
a{
|
187 |
background: #C81D1C;
|
188 |
}
|
189 |
}
|
190 |
+
.rss_btn{
|
191 |
a{
|
192 |
background: #f26522;
|
193 |
}
|
194 |
}
|
195 |
+
.instagram_btn{
|
196 |
a{
|
197 |
background: #3f729b;
|
198 |
}
|
199 |
}
|
200 |
+
.linkedin_btn{
|
201 |
a{
|
202 |
background: #0077b5;
|
203 |
}
|
206 |
/*-------------------------------------------*/
|
207 |
/* 3PR area wiget Plugin
|
208 |
/*-------------------------------------------*/
|
209 |
+
.prBox{
|
210 |
.subSection-title{
|
211 |
font-size: 18px;
|
212 |
}
|
213 |
+
.media_pr{
|
214 |
margin-bottom: 0.5em;
|
215 |
}
|
216 |
+
.media_pc{
|
217 |
display: block;
|
218 |
}
|
219 |
+
.media_sp{
|
220 |
display: none;
|
221 |
}
|
222 |
.summary{
|
231 |
}
|
232 |
}
|
233 |
@media screen and (max-width:768px){
|
234 |
+
.prBox{
|
235 |
+
.media_pc{
|
236 |
display: none;
|
237 |
}
|
238 |
+
.media_sp{
|
239 |
display: block;
|
240 |
}
|
241 |
.linkurl {
|
common_init.php
CHANGED
@@ -35,6 +35,7 @@ function vkExUnit_get_common_options_default() {
|
|
35 |
'active_relatedPosts' => true,
|
36 |
'active_otherWidgets' => true,
|
37 |
'active_css_customize' => true,
|
|
|
38 |
);
|
39 |
return apply_filters( 'vkExUnit_common_options_default', $default_options );
|
40 |
}
|
@@ -49,12 +50,14 @@ function vkExUnit_common_options_validate( $input ) {
|
|
49 |
$output['active_fontawesome'] = (isset($input['active_fontawesome'])) ? true:false;
|
50 |
$output['active_metaDescription'] = (isset($input['active_metaDescription'])) ? true:false;
|
51 |
$output['active_metaKeyword'] = (isset($input['active_metaKeyword'])) ? true:false;
|
|
|
52 |
$output['active_wpTitle'] = (isset($input['active_wpTitle'])) ? true:false;
|
53 |
$output['active_sns'] = (isset($input['active_sns'])) ? true:false;
|
54 |
$output['active_ga'] = (isset($input['active_ga'])) ? true:false;
|
55 |
$output['active_relatedPosts'] = (isset($input['active_relatedPosts'])) ? true:false;
|
56 |
$output['active_otherWidgets'] = (isset($input['active_otherWidgets'])) ? true:false;
|
57 |
$output['active_css_customize'] = (isset($input['active_css_customize'])) ? true:false;
|
|
|
58 |
|
59 |
return apply_filters( 'vkExUnit_common_options_validate', $output, $input, $defaults );
|
60 |
}
|
35 |
'active_relatedPosts' => true,
|
36 |
'active_otherWidgets' => true,
|
37 |
'active_css_customize' => true,
|
38 |
+
'active_auto_eyecatch' => true,
|
39 |
);
|
40 |
return apply_filters( 'vkExUnit_common_options_default', $default_options );
|
41 |
}
|
50 |
$output['active_fontawesome'] = (isset($input['active_fontawesome'])) ? true:false;
|
51 |
$output['active_metaDescription'] = (isset($input['active_metaDescription'])) ? true:false;
|
52 |
$output['active_metaKeyword'] = (isset($input['active_metaKeyword'])) ? true:false;
|
53 |
+
$output['active_icon'] = (isset($input['active_icon'])) ? true:false;
|
54 |
$output['active_wpTitle'] = (isset($input['active_wpTitle'])) ? true:false;
|
55 |
$output['active_sns'] = (isset($input['active_sns'])) ? true:false;
|
56 |
$output['active_ga'] = (isset($input['active_ga'])) ? true:false;
|
57 |
$output['active_relatedPosts'] = (isset($input['active_relatedPosts'])) ? true:false;
|
58 |
$output['active_otherWidgets'] = (isset($input['active_otherWidgets'])) ? true:false;
|
59 |
$output['active_css_customize'] = (isset($input['active_css_customize'])) ? true:false;
|
60 |
+
$output['active_auto_eyecatch'] = (isset($input['active_auto_eyecatch'])) ? true:false;
|
61 |
|
62 |
return apply_filters( 'vkExUnit_common_options_validate', $output, $input, $defaults );
|
63 |
}
|
css/style.css
CHANGED
@@ -1,8 +1,50 @@
|
|
|
|
1 |
/*-------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
/* ex_unit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/*-------------------------------------------*/
|
4 |
.link-list li { padding: 0.5em; }
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
.sitemap .sectionBox { padding-top: 0; }
|
7 |
|
8 |
.sitemap .sitemap-col { padding-bottom: 2em; }
|
@@ -17,7 +59,7 @@
|
|
17 |
.vkContentAddSection { display: block; clear: both; overflow: hidden; padding-top: 20px; }
|
18 |
|
19 |
/*-------------------------------------------*/
|
20 |
-
/*
|
21 |
/*-------------------------------------------*/
|
22 |
.socialSet ul { margin: 0px; padding: 0; }
|
23 |
|
@@ -71,33 +113,33 @@
|
|
71 |
/*-------------------------------------------*/
|
72 |
/* Profile wiget Plugin
|
73 |
/*-------------------------------------------*/
|
74 |
-
.
|
75 |
-
|
76 |
-
.
|
77 |
-
|
78 |
-
.
|
79 |
-
.
|
80 |
-
.
|
81 |
-
.
|
82 |
-
.
|
83 |
-
.
|
84 |
-
.
|
85 |
-
.
|
86 |
-
.
|
87 |
-
.
|
88 |
-
.
|
89 |
-
.
|
90 |
|
91 |
/*-------------------------------------------*/
|
92 |
/* 3PR area wiget Plugin
|
93 |
/*-------------------------------------------*/
|
94 |
-
.
|
95 |
-
.
|
96 |
-
.
|
97 |
-
.
|
98 |
-
.
|
99 |
-
.
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
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 |
+
/*-------------------------------------------------*/
|
21 |
+
/* .common
|
22 |
+
/*-------------------------------------------*/
|
23 |
+
/* .autoEyeCatchBox
|
24 |
+
/*-------------------------------------------*/
|
25 |
+
/* .sitemap
|
26 |
+
/*-------------------------------------------*/
|
27 |
+
/* fb Page Plugin
|
28 |
+
/*-------------------------------------------*/
|
29 |
+
/* .socialSet
|
30 |
+
/*-------------------------------------------*/
|
31 |
+
/* Profile wiget Plugin
|
32 |
+
/*-------------------------------------------*/
|
33 |
+
/* 3PR area wiget Plugin
|
34 |
+
/*-------------------------------------------*/
|
35 |
+
/*-------------------------------------------*/
|
36 |
+
/* .common
|
37 |
/*-------------------------------------------*/
|
38 |
.link-list li { padding: 0.5em; }
|
39 |
|
40 |
+
/*-------------------------------------------*/
|
41 |
+
/* .autoEyeCatchBox
|
42 |
+
/*-------------------------------------------*/
|
43 |
+
.autoEyeCatchBox { display: block; overflow: hidden; margin-bottom: 2em; }
|
44 |
+
|
45 |
+
/*-------------------------------------------*/
|
46 |
+
/* .sitemap
|
47 |
+
/*-------------------------------------------*/
|
48 |
.sitemap .sectionBox { padding-top: 0; }
|
49 |
|
50 |
.sitemap .sitemap-col { padding-bottom: 2em; }
|
59 |
.vkContentAddSection { display: block; clear: both; overflow: hidden; padding-top: 20px; }
|
60 |
|
61 |
/*-------------------------------------------*/
|
62 |
+
/* .socialSet
|
63 |
/*-------------------------------------------*/
|
64 |
.socialSet ul { margin: 0px; padding: 0; }
|
65 |
|
113 |
/*-------------------------------------------*/
|
114 |
/* Profile wiget Plugin
|
115 |
/*-------------------------------------------*/
|
116 |
+
.profile_media { margin: 0.5em 0; }
|
117 |
+
|
118 |
+
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
119 |
+
|
120 |
+
.sns_btns { margin: 0; padding: 0; width: 100%; }
|
121 |
+
.sns_btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
|
122 |
+
.sns_btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
|
123 |
+
.sns_btns a:hover { opacity: 0.8; color: #fff; text-decoration: none; }
|
124 |
+
.sns_btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
|
125 |
+
.sns_btns .facebook_btn a { background: #3b5998; }
|
126 |
+
.sns_btns .twitter_btn a { background: #55acee; }
|
127 |
+
.sns_btns .mail_btn a { background: #2F915F; }
|
128 |
+
.sns_btns .youtube_btn a { background: #C81D1C; }
|
129 |
+
.sns_btns .rss_btn a { background: #f26522; }
|
130 |
+
.sns_btns .instagram_btn a { background: #3f729b; }
|
131 |
+
.sns_btns .linkedin_btn a { background: #0077b5; }
|
132 |
|
133 |
/*-------------------------------------------*/
|
134 |
/* 3PR area wiget Plugin
|
135 |
/*-------------------------------------------*/
|
136 |
+
.prBox .subSection-title { font-size: 18px; }
|
137 |
+
.prBox .media_pr { margin-bottom: 0.5em; }
|
138 |
+
.prBox .media_pc { display: block; }
|
139 |
+
.prBox .media_sp { display: none; }
|
140 |
+
.prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
|
141 |
+
.prBox .linkurl a { text-decoration: none; }
|
142 |
+
|
143 |
+
@media screen and (max-width: 768px) { .prBox .media_pc { display: none; }
|
144 |
+
.prBox .media_sp { display: block; }
|
145 |
+
.prBox .linkurl { margin-bottom: 1.5em; } }
|
css/style_in_bs.css
CHANGED
@@ -2539,11 +2539,36 @@ button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background
|
|
2539 |
@media (max-width: 767px) { .media .postList_thumbnail { padding-right: 20px; }
|
2540 |
.media .media-body .media-heading { font-size: 1.2em; line-height: 1.3em; margin-bottom: 0.5em; } }
|
2541 |
@media (max-width: 500px) { .media .postList_thumbnail { width: 100px; } }
|
2542 |
-
|
2543 |
/* ex_unit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2544 |
/*-------------------------------------------*/
|
2545 |
.link-list li { padding: 0.5em; }
|
2546 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2547 |
.sitemap .sectionBox { padding-top: 0; }
|
2548 |
|
2549 |
.sitemap .sitemap-col { padding-bottom: 2em; }
|
@@ -2558,7 +2583,7 @@ button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background
|
|
2558 |
.vkContentAddSection { display: block; clear: both; overflow: hidden; padding-top: 20px; }
|
2559 |
|
2560 |
/*-------------------------------------------*/
|
2561 |
-
/*
|
2562 |
/*-------------------------------------------*/
|
2563 |
.socialSet ul { margin: 0px; padding: 0; }
|
2564 |
|
@@ -2612,31 +2637,33 @@ button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background
|
|
2612 |
/*-------------------------------------------*/
|
2613 |
/* Profile wiget Plugin
|
2614 |
/*-------------------------------------------*/
|
2615 |
-
.
|
2616 |
-
|
2617 |
-
.
|
2618 |
-
|
2619 |
-
.
|
2620 |
-
.
|
2621 |
-
.
|
2622 |
-
.
|
2623 |
-
.
|
2624 |
-
.
|
2625 |
-
.
|
2626 |
-
.
|
2627 |
-
.
|
2628 |
-
.
|
2629 |
-
.
|
2630 |
-
.
|
2631 |
|
2632 |
/*-------------------------------------------*/
|
2633 |
/* 3PR area wiget Plugin
|
2634 |
/*-------------------------------------------*/
|
2635 |
-
.
|
2636 |
-
.
|
2637 |
-
.
|
2638 |
-
.
|
2639 |
-
.
|
2640 |
-
.
|
2641 |
-
|
2642 |
-
|
|
|
|
2539 |
@media (max-width: 767px) { .media .postList_thumbnail { padding-right: 20px; }
|
2540 |
.media .media-body .media-heading { font-size: 1.2em; line-height: 1.3em; margin-bottom: 0.5em; } }
|
2541 |
@media (max-width: 500px) { .media .postList_thumbnail { width: 100px; } }
|
2542 |
+
/*-------------------------------------------------*/
|
2543 |
/* ex_unit
|
2544 |
+
/*-------------------------------------------------*/
|
2545 |
+
/* .common
|
2546 |
+
/*-------------------------------------------*/
|
2547 |
+
/* .autoEyeCatchBox
|
2548 |
+
/*-------------------------------------------*/
|
2549 |
+
/* .sitemap
|
2550 |
+
/*-------------------------------------------*/
|
2551 |
+
/* fb Page Plugin
|
2552 |
+
/*-------------------------------------------*/
|
2553 |
+
/* .socialSet
|
2554 |
+
/*-------------------------------------------*/
|
2555 |
+
/* Profile wiget Plugin
|
2556 |
+
/*-------------------------------------------*/
|
2557 |
+
/* 3PR area wiget Plugin
|
2558 |
+
/*-------------------------------------------*/
|
2559 |
+
/*-------------------------------------------*/
|
2560 |
+
/* .common
|
2561 |
/*-------------------------------------------*/
|
2562 |
.link-list li { padding: 0.5em; }
|
2563 |
|
2564 |
+
/*-------------------------------------------*/
|
2565 |
+
/* .autoEyeCatchBox
|
2566 |
+
/*-------------------------------------------*/
|
2567 |
+
.autoEyeCatchBox { display: block; overflow: hidden; margin-bottom: 2em; }
|
2568 |
+
|
2569 |
+
/*-------------------------------------------*/
|
2570 |
+
/* .sitemap
|
2571 |
+
/*-------------------------------------------*/
|
2572 |
.sitemap .sectionBox { padding-top: 0; }
|
2573 |
|
2574 |
.sitemap .sitemap-col { padding-bottom: 2em; }
|
2583 |
.vkContentAddSection { display: block; clear: both; overflow: hidden; padding-top: 20px; }
|
2584 |
|
2585 |
/*-------------------------------------------*/
|
2586 |
+
/* .socialSet
|
2587 |
/*-------------------------------------------*/
|
2588 |
.socialSet ul { margin: 0px; padding: 0; }
|
2589 |
|
2637 |
/*-------------------------------------------*/
|
2638 |
/* Profile wiget Plugin
|
2639 |
/*-------------------------------------------*/
|
2640 |
+
.profile_media { margin: 0.5em 0; }
|
2641 |
+
|
2642 |
+
.profile_text { margin-bottom: 0.5em; font-size: 14px; }
|
2643 |
+
|
2644 |
+
.sns_btns { margin: 0; padding: 0; width: 100%; }
|
2645 |
+
.sns_btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
|
2646 |
+
.sns_btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
|
2647 |
+
.sns_btns a:hover { opacity: 0.8; color: #fff; text-decoration: none; }
|
2648 |
+
.sns_btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
|
2649 |
+
.sns_btns .facebook_btn a { background: #3b5998; }
|
2650 |
+
.sns_btns .twitter_btn a { background: #55acee; }
|
2651 |
+
.sns_btns .mail_btn a { background: #2F915F; }
|
2652 |
+
.sns_btns .youtube_btn a { background: #C81D1C; }
|
2653 |
+
.sns_btns .rss_btn a { background: #f26522; }
|
2654 |
+
.sns_btns .instagram_btn a { background: #3f729b; }
|
2655 |
+
.sns_btns .linkedin_btn a { background: #0077b5; }
|
2656 |
|
2657 |
/*-------------------------------------------*/
|
2658 |
/* 3PR area wiget Plugin
|
2659 |
/*-------------------------------------------*/
|
2660 |
+
.prBox .subSection-title { font-size: 18px; }
|
2661 |
+
.prBox .media_pr { margin-bottom: 0.5em; }
|
2662 |
+
.prBox .media_pc { display: block; }
|
2663 |
+
.prBox .media_sp { display: none; }
|
2664 |
+
.prBox .summary { margin-bottom: 0.5em; font-size: 14px; line-height: 1.4em; }
|
2665 |
+
.prBox .linkurl a { text-decoration: none; }
|
2666 |
+
|
2667 |
+
@media screen and (max-width: 768px) { .prBox .media_pc { display: none; }
|
2668 |
+
.prBox .media_sp { display: block; }
|
2669 |
+
.prBox .linkurl { margin-bottom: 1.5em; } }
|
gulpfile.js
CHANGED
@@ -31,13 +31,13 @@ gulp.task( 'copy', function() {
|
|
31 |
|
32 |
// ファイル結合
|
33 |
gulp.task('scripts', function() {
|
34 |
-
return gulp.src(['./js/master.js'])
|
35 |
.pipe(concat('all.js'))
|
36 |
.pipe(gulp.dest('./js/'));
|
37 |
});
|
38 |
gulp.task('scripts_in_bs', function() {
|
39 |
// bootstrap use
|
40 |
-
return gulp.src(['./bootstrap/js/bootstrap.min.js','./js/master.js'])
|
41 |
.pipe(concat('all_in_bs.js'))
|
42 |
.pipe(gulp.dest('./js/'));
|
43 |
});
|
31 |
|
32 |
// ファイル結合
|
33 |
gulp.task('scripts', function() {
|
34 |
+
return gulp.src(['./js/jquery.flatheights.js','./js/master.js'])
|
35 |
.pipe(concat('all.js'))
|
36 |
.pipe(gulp.dest('./js/'));
|
37 |
});
|
38 |
gulp.task('scripts_in_bs', function() {
|
39 |
// bootstrap use
|
40 |
+
return gulp.src(['./js/jquery.flatheights.js','./bootstrap/js/bootstrap.min.js','./js/master.js'])
|
41 |
.pipe(concat('all_in_bs.js'))
|
42 |
.pipe(gulp.dest('./js/'));
|
43 |
});
|
js/all.js
CHANGED
@@ -1,29 +1,3 @@
|
|
1 |
-
pagePluginReSize();
|
2 |
-
jQuery(window).resize(function(){
|
3 |
-
pagePluginReSize();
|
4 |
-
});
|
5 |
-
|
6 |
-
/*-------------------------------------------*/
|
7 |
-
/* facebookLikeBox
|
8 |
-
/*-------------------------------------------*/
|
9 |
-
function pagePluginReSize(){
|
10 |
-
// jQuery('.fb_iframe_widget').each(function(){
|
11 |
-
// var element = jQuery(this).parent().width();
|
12 |
-
// console.log(element);
|
13 |
-
// jQuery(this).attr('data-width',element);
|
14 |
-
// jQuery(this).children('span:first').css({"width":element});
|
15 |
-
// jQuery(this).children('span iframe.fb_ltr').css({"width":element});
|
16 |
-
// });
|
17 |
-
}
|
18 |
-
|
19 |
-
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
|
20 |
-
|
21 |
-
/*-------------------------------------------*/
|
22 |
-
/* jquery.flatheights.js
|
23 |
-
/*-------------------------------------------*/
|
24 |
-
jQuery(function() {
|
25 |
-
jQuery('.pr-area > .subSection-title').flatHeights();
|
26 |
-
});
|
27 |
/*
|
28 |
======================================================================
|
29 |
jquery.flatheights.js
|
@@ -141,4 +115,31 @@ jQuery(document).ready(function($){
|
|
141 |
jQuery('.child_page_block').flatHeights();
|
142 |
jQuery('.child_page_block p').flatHeights();
|
143 |
jQuery('#content .child_page_block h4 a').flatHeights();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*
|
2 |
======================================================================
|
3 |
jquery.flatheights.js
|
115 |
jQuery('.child_page_block').flatHeights();
|
116 |
jQuery('.child_page_block p').flatHeights();
|
117 |
jQuery('#content .child_page_block h4 a').flatHeights();
|
118 |
+
});
|
119 |
+
pagePluginReSize();
|
120 |
+
jQuery(window).resize(function(){
|
121 |
+
pagePluginReSize();
|
122 |
+
});
|
123 |
+
|
124 |
+
/*-------------------------------------------*/
|
125 |
+
/* facebookLikeBox
|
126 |
+
/*-------------------------------------------*/
|
127 |
+
function pagePluginReSize(){
|
128 |
+
// jQuery('.fb_iframe_widget').each(function(){
|
129 |
+
// var element = jQuery(this).parent().width();
|
130 |
+
// console.log(element);
|
131 |
+
// jQuery(this).attr('data-width',element);
|
132 |
+
// jQuery(this).children('span:first').css({"width":element});
|
133 |
+
// jQuery(this).children('span iframe.fb_ltr').css({"width":element});
|
134 |
+
// });
|
135 |
+
}
|
136 |
+
|
137 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
|
138 |
+
|
139 |
+
/*-------------------------------------------*/
|
140 |
+
/* jquery.flatheights.js
|
141 |
+
/*-------------------------------------------*/
|
142 |
+
jQuery(function() {
|
143 |
+
jQuery('.prArea > .subSection-title').flatHeights();
|
144 |
+
jQuery('.prArea > .summary').flatHeights();
|
145 |
});
|
js/all.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
|
2 |
-
|
3 |
-
|
4 |
-
|
1 |
|
2 |
+
jQuery.changeLetterSize={handlers:[],interval:1000,currentSize:0};(function($){var self=$.changeLetterSize;var ins=$('<ins>M</ins>').css({display:'block',visibility:'hidden',position:'absolute',padding:'0',top:'0'});var isChanged=function(){ins.appendTo('body');var size=ins[0].offsetHeight;ins.remove();if(self.currentSize==size)return false;self.currentSize=size;return true;};$(isChanged);var observer=function(){if(!isChanged())return;$.each(self.handlers,function(i,handler){handler();});};self.addHandler=function(func){self.handlers.push(func);if(self.handlers.length==1){setInterval(observer,self.interval);}};})(jQuery);(function($){var sets=[];var flatHeights=function(set){var maxHeight=0;set.each(function(){var height=this.offsetHeight;if(height>maxHeight)maxHeight=height;});set.css('height',maxHeight+'px');};jQuery.fn.flatHeights=function(){if(this.length>1){flatHeights(this);sets.push(this);}
|
3 |
+
return this;};var reflatting=function(){$.each(sets,function(){this.height('auto');flatHeights(this);});};$.changeLetterSize.addHandler(reflatting);$(window).resize(reflatting);})(jQuery);jQuery(document).ready(function($){jQuery('.topPrTit a').flatHeights();jQuery('.topPrDescription').flatHeights();jQuery('.child_page_block').flatHeights();jQuery('.child_page_block p').flatHeights();jQuery('#content .child_page_block h4 a').flatHeights();});pagePluginReSize();jQuery(window).resize(function(){pagePluginReSize();});function pagePluginReSize(){}
|
4 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','twitter-wjs');jQuery(function(){jQuery('.prArea > .subSection-title').flatHeights();jQuery('.prArea > .summary').flatHeights();});
|
js/all_in_bs.js
CHANGED
@@ -1,36 +1,3 @@
|
|
1 |
-
/*!
|
2 |
-
* Bootstrap v3.3.4 (http://getbootstrap.com)
|
3 |
-
* Copyright 2011-2015 Twitter, Inc.
|
4 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5 |
-
*/
|
6 |
-
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){
|
7 |
-
var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
8 |
-
pagePluginReSize();
|
9 |
-
jQuery(window).resize(function(){
|
10 |
-
pagePluginReSize();
|
11 |
-
});
|
12 |
-
|
13 |
-
/*-------------------------------------------*/
|
14 |
-
/* facebookLikeBox
|
15 |
-
/*-------------------------------------------*/
|
16 |
-
function pagePluginReSize(){
|
17 |
-
// jQuery('.fb_iframe_widget').each(function(){
|
18 |
-
// var element = jQuery(this).parent().width();
|
19 |
-
// console.log(element);
|
20 |
-
// jQuery(this).attr('data-width',element);
|
21 |
-
// jQuery(this).children('span:first').css({"width":element});
|
22 |
-
// jQuery(this).children('span iframe.fb_ltr').css({"width":element});
|
23 |
-
// });
|
24 |
-
}
|
25 |
-
|
26 |
-
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
|
27 |
-
|
28 |
-
/*-------------------------------------------*/
|
29 |
-
/* jquery.flatheights.js
|
30 |
-
/*-------------------------------------------*/
|
31 |
-
jQuery(function() {
|
32 |
-
jQuery('.pr-area > .subSection-title').flatHeights();
|
33 |
-
});
|
34 |
/*
|
35 |
======================================================================
|
36 |
jquery.flatheights.js
|
@@ -148,4 +115,38 @@ jQuery(document).ready(function($){
|
|
148 |
jQuery('.child_page_block').flatHeights();
|
149 |
jQuery('.child_page_block p').flatHeights();
|
150 |
jQuery('#content .child_page_block h4 a').flatHeights();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*
|
2 |
======================================================================
|
3 |
jquery.flatheights.js
|
115 |
jQuery('.child_page_block').flatHeights();
|
116 |
jQuery('.child_page_block p').flatHeights();
|
117 |
jQuery('#content .child_page_block h4 a').flatHeights();
|
118 |
+
});
|
119 |
+
/*!
|
120 |
+
* Bootstrap v3.3.4 (http://getbootstrap.com)
|
121 |
+
* Copyright 2011-2015 Twitter, Inc.
|
122 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
123 |
+
*/
|
124 |
+
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){
|
125 |
+
var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
|
126 |
+
pagePluginReSize();
|
127 |
+
jQuery(window).resize(function(){
|
128 |
+
pagePluginReSize();
|
129 |
+
});
|
130 |
+
|
131 |
+
/*-------------------------------------------*/
|
132 |
+
/* facebookLikeBox
|
133 |
+
/*-------------------------------------------*/
|
134 |
+
function pagePluginReSize(){
|
135 |
+
// jQuery('.fb_iframe_widget').each(function(){
|
136 |
+
// var element = jQuery(this).parent().width();
|
137 |
+
// console.log(element);
|
138 |
+
// jQuery(this).attr('data-width',element);
|
139 |
+
// jQuery(this).children('span:first').css({"width":element});
|
140 |
+
// jQuery(this).children('span iframe.fb_ltr').css({"width":element});
|
141 |
+
// });
|
142 |
+
}
|
143 |
+
|
144 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');
|
145 |
+
|
146 |
+
/*-------------------------------------------*/
|
147 |
+
/* jquery.flatheights.js
|
148 |
+
/*-------------------------------------------*/
|
149 |
+
jQuery(function() {
|
150 |
+
jQuery('.prArea > .subSection-title').flatHeights();
|
151 |
+
jQuery('.prArea > .summary').flatHeights();
|
152 |
});
|
js/all_in_bs.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
|
2 |
-
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);pagePluginReSize();jQuery(window).resize(function(){pagePluginReSize();});function pagePluginReSize(){}
|
3 |
-
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','twitter-wjs');jQuery(function(){jQuery('.pr-area > .subSection-title').flatHeights();});jQuery.changeLetterSize={handlers:[],interval:1000,currentSize:0};(function($){var self=$.changeLetterSize;var ins=$('<ins>M</ins>').css({display:'block',visibility:'hidden',position:'absolute',padding:'0',top:'0'});var isChanged=function(){ins.appendTo('body');var size=ins[0].offsetHeight;ins.remove();if(self.currentSize==size)return false;self.currentSize=size;return true;};$(isChanged);var observer=function(){if(!isChanged())return;$.each(self.handlers,function(i,handler){handler();});};self.addHandler=function(func){self.handlers.push(func);if(self.handlers.length==1){setInterval(observer,self.interval);}};})(jQuery);(function($){var sets=[];var flatHeights=function(set){var maxHeight=0;set.each(function(){var height=this.offsetHeight;if(height>maxHeight)maxHeight=height;});set.css('height',maxHeight+'px');};jQuery.fn.flatHeights=function(){if(this.length>1){flatHeights(this);sets.push(this);}
|
4 |
-
|
1 |
|
2 |
+
jQuery.changeLetterSize={handlers:[],interval:1000,currentSize:0};(function($){var self=$.changeLetterSize;var ins=$('<ins>M</ins>').css({display:'block',visibility:'hidden',position:'absolute',padding:'0',top:'0'});var isChanged=function(){ins.appendTo('body');var size=ins[0].offsetHeight;ins.remove();if(self.currentSize==size)return false;self.currentSize=size;return true;};$(isChanged);var observer=function(){if(!isChanged())return;$.each(self.handlers,function(i,handler){handler();});};self.addHandler=function(func){self.handlers.push(func);if(self.handlers.length==1){setInterval(observer,self.interval);}};})(jQuery);(function($){var sets=[];var flatHeights=function(set){var maxHeight=0;set.each(function(){var height=this.offsetHeight;if(height>maxHeight)maxHeight=height;});set.css('height',maxHeight+'px');};jQuery.fn.flatHeights=function(){if(this.length>1){flatHeights(this);sets.push(this);}
|
3 |
+
return this;};var reflatting=function(){$.each(sets,function(){this.height('auto');flatHeights(this);});};$.changeLetterSize.addHandler(reflatting);$(window).resize(reflatting);})(jQuery);jQuery(document).ready(function($){jQuery('.topPrTit a').flatHeights();jQuery('.topPrDescription').flatHeights();jQuery('.child_page_block').flatHeights();jQuery('.child_page_block p').flatHeights();jQuery('#content .child_page_block h4 a').flatHeights();});if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(b){if(/(38|40|27|32)/.test(b.which)&&!/input|textarea/i.test(b.target.tagName)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var e=c(d),g=e.hasClass("open");if(!g&&27!=b.which||g&&27==b.which)return 27==b.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find('[role="menu"]'+h+', [role="listbox"]'+h);if(i.length){var j=i.index(b.target);38==b.which&&j>0&&j--,40==b.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="menu"]',g.prototype.keydown).on("keydown.bs.dropdown.data-api",'[role="listbox"]',g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in").attr("aria-hidden",!1),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a('<div class="modal-backdrop '+e+'" />').appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.init("tooltip",a,b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-m<p.top?"bottom":"right"==h&&k.right+l>p.width?"left":"left"==h&&k.left-l<p.left?"right":h,f.removeClass(n).addClass(h)}var q=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(q,h);var r=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",r).emulateTransitionEnd(c.TRANSITION_DURATION):r()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top=b.top+g,b.left=b.left+h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.4",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);pagePluginReSize();jQuery(window).resize(function(){pagePluginReSize();});function pagePluginReSize(){}
|
4 |
+
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','twitter-wjs');jQuery(function(){jQuery('.prArea > .subSection-title').flatHeights();jQuery('.prArea > .summary').flatHeights();});
|
js/master.js
CHANGED
@@ -22,5 +22,6 @@ function pagePluginReSize(){
|
|
22 |
/* jquery.flatheights.js
|
23 |
/*-------------------------------------------*/
|
24 |
jQuery(function() {
|
25 |
-
jQuery('.
|
|
|
26 |
});
|
22 |
/* jquery.flatheights.js
|
23 |
/*-------------------------------------------*/
|
24 |
jQuery(function() {
|
25 |
+
jQuery('.prArea > .subSection-title').flatHeights();
|
26 |
+
jQuery('.prArea > .summary').flatHeights();
|
27 |
});
|
languages/vkExUnit-ja.mo
CHANGED
Binary file
|
languages/vkExUnit-ja.po
CHANGED
@@ -1,166 +1,366 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"
|
5 |
-
"POT-Creation-Date: 2015-07-06 13:47+0900\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
|
9 |
-
"Language: ja\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Generator: Poedit 1.8.2\n"
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
16 |
-
"X-Poedit-
|
|
|
|
|
17 |
|
18 |
-
#: admin_wrapper.php:7 admin_wrapper.php:8
|
|
|
19 |
msgid "Main setting"
|
20 |
msgstr "メイン設定"
|
21 |
|
22 |
-
#: common_helpers.php:126
|
23 |
#, php-format
|
24 |
msgid "Search Results for : %s"
|
25 |
msgstr "検索結果 : %s"
|
26 |
|
27 |
-
#: common_helpers.php:129
|
28 |
msgid "Not found"
|
29 |
msgstr "見つかりません"
|
30 |
|
31 |
-
#: common_helpers.php:138 common_helpers.php:
|
32 |
#, php-format
|
33 |
msgid "Page of %s"
|
34 |
msgstr "%s のページ"
|
35 |
|
36 |
-
#: common_helpers.php:
|
37 |
#, php-format
|
38 |
msgid "About %s"
|
39 |
msgstr "%s について"
|
40 |
|
41 |
-
#: common_helpers.php:
|
42 |
-
msgctxt "yearly archives date format"
|
43 |
msgid "Y"
|
44 |
msgstr "年"
|
45 |
|
46 |
-
#: common_helpers.php:179
|
|
|
47 |
#, php-format
|
48 |
-
msgctxt "Yearly archive description"
|
49 |
msgid "Article of %s."
|
50 |
msgstr "%s の記事"
|
51 |
|
52 |
-
#: common_helpers.php:
|
53 |
-
msgctxt "monthly archives date format"
|
54 |
msgid "F Y"
|
55 |
-
msgstr "
|
56 |
-
|
57 |
-
#: common_helpers.php:183 common_helpers.php:187 common_helpers.php:191
|
58 |
-
#, php-format
|
59 |
-
msgctxt "Archive description"
|
60 |
-
msgid "Article of %s."
|
61 |
-
msgstr "%s の記事"
|
62 |
|
63 |
-
#: common_helpers.php:
|
64 |
#, php-format
|
65 |
msgid "Author: %s"
|
66 |
msgstr "著者: %s"
|
67 |
|
68 |
-
#: common_helpers.php:
|
69 |
-
msgctxt "daily archives date format"
|
70 |
msgid "F j, Y"
|
71 |
msgstr "月日, 年"
|
72 |
|
73 |
-
#: common_helpers.php:
|
74 |
-
msgctxt "post format archive title"
|
75 |
msgid "Asides"
|
76 |
msgstr "サイド"
|
77 |
|
78 |
-
#: common_helpers.php:
|
79 |
-
msgctxt "post format archive title"
|
80 |
msgid "Galleries"
|
81 |
msgstr "ギャラリー"
|
82 |
|
83 |
-
#: common_helpers.php:
|
84 |
-
msgctxt "post format archive title"
|
85 |
msgid "Images"
|
86 |
msgstr "画像"
|
87 |
|
88 |
-
#: common_helpers.php:
|
89 |
-
msgctxt "post format archive title"
|
90 |
msgid "Videos"
|
91 |
msgstr "ビデオ"
|
92 |
|
93 |
-
#: common_helpers.php:
|
94 |
-
msgctxt "post format archive title"
|
95 |
msgid "Quotes"
|
96 |
msgstr "引用"
|
97 |
|
98 |
-
#: common_helpers.php:
|
99 |
-
msgctxt "post format archive title"
|
100 |
msgid "Links"
|
101 |
msgstr "リンク"
|
102 |
|
103 |
-
#: common_helpers.php:
|
104 |
-
msgctxt "post format archive title"
|
105 |
msgid "Statuses"
|
106 |
msgstr "ステータス"
|
107 |
|
108 |
-
#: common_helpers.php:
|
109 |
-
msgctxt "post format archive title"
|
110 |
msgid "Audio"
|
111 |
msgstr "オーディオ"
|
112 |
|
113 |
-
#: common_helpers.php:
|
114 |
-
msgctxt "post format archive title"
|
115 |
msgid "Chats"
|
116 |
msgstr "チャット"
|
117 |
|
118 |
-
#: common_helpers.php:
|
|
|
119 |
msgid "Archives"
|
120 |
msgstr "アーカイブ"
|
121 |
|
122 |
-
#:
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid "CSS Customize"
|
126 |
msgstr "CSSカスタマイズ"
|
127 |
|
128 |
-
#: plugins/css_customize/css_customize-edit.php:5
|
129 |
msgid "You can add custom CSS here."
|
130 |
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
131 |
|
132 |
-
#: plugins/css_customize/css_customize-edit.php:10
|
133 |
msgid "Save CSS"
|
134 |
msgstr "CSSを保存する"
|
135 |
|
136 |
-
#: plugins/css_customize/css_customize.php:94
|
137 |
msgid "Your custom CSS was saved."
|
138 |
msgstr "CSSが保存されました"
|
139 |
|
140 |
-
#: plugins/css_customize/css_customize.php:99
|
141 |
msgid "Error occured. Please try again."
|
142 |
msgstr "何らかのエラー!! また試してみてください"
|
143 |
|
144 |
-
#: plugins/google_analytics/ga_admin.php:9
|
145 |
-
#: plugins/google_analytics/ga_admin.php:13
|
146 |
-
#: plugins/google_analytics/google_analytics.php:18
|
147 |
msgid "Google Analytics Settings"
|
148 |
msgstr "Google Analytics設定"
|
149 |
|
150 |
-
#: plugins/google_analytics/ga_admin.php:14
|
151 |
msgid ""
|
152 |
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
153 |
"the site."
|
154 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
155 |
|
156 |
-
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/
|
157 |
-
#: plugins/sns/old/sns_admin.php:
|
158 |
-
#: plugins/sns/old/sns_admin.php:
|
159 |
-
#: plugins/sns/sns_admin.php:
|
160 |
msgid "ex) "
|
161 |
msgstr "例: "
|
162 |
|
163 |
-
#: plugins/google_analytics/ga_admin.php:19
|
164 |
msgid ""
|
165 |
"Please select the type of Analytics code . (If you are unsure you can skip "
|
166 |
"this.)"
|
@@ -168,356 +368,449 @@ msgstr ""
|
|
168 |
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
169 |
"す )"
|
170 |
|
171 |
-
#: plugins/google_analytics/ga_admin.php:23
|
172 |
msgid "To output the Universal Analytics code (default)"
|
173 |
msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
|
174 |
|
175 |
-
#: plugins/google_analytics/ga_admin.php:24
|
176 |
msgid "To output only normal code"
|
177 |
msgstr "ノーマルのコードのみを出力します。"
|
178 |
|
179 |
-
#: plugins/google_analytics/ga_admin.php:25
|
180 |
msgid "To output both types"
|
181 |
msgstr "両タイプのコードを出力します。"
|
182 |
|
183 |
-
#: plugins/meta_description/meta_description
|
184 |
-
#: plugins/meta_description/meta_description
|
185 |
-
|
186 |
-
|
187 |
-
msgstr "Meta キーワード"
|
188 |
|
189 |
-
#: plugins/meta_description/meta_description
|
190 |
msgid ""
|
191 |
-
"
|
192 |
-
"
|
193 |
-
msgstr "
|
|
|
|
|
194 |
|
195 |
-
#: plugins/meta_description/meta_description
|
196 |
-
msgctxt "link to seo setting"
|
197 |
msgid ""
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
|
|
|
|
204 |
|
205 |
-
#: plugins/
|
206 |
msgid ""
|
207 |
-
"
|
208 |
-
"
|
|
|
209 |
msgstr ""
|
210 |
-
"
|
211 |
-
"
|
212 |
-
|
213 |
-
#: plugins/other_widget/old/widget-archive-list.php:14
|
214 |
-
msgid "archive list"
|
215 |
-
msgstr "アーカイブリスト"
|
216 |
-
|
217 |
-
#: plugins/other_widget/old/widget-archive-list.php:49
|
218 |
-
#: plugins/other_widget/old/widget-archive-list.php:50
|
219 |
-
msgid "Monthly archives"
|
220 |
-
msgstr "月別アーカイブ"
|
221 |
-
|
222 |
-
#: plugins/other_widget/old/widget-archive-list.php:59
|
223 |
-
msgid "Title"
|
224 |
-
msgstr "タイトル"
|
225 |
-
|
226 |
-
#: plugins/other_widget/old/widget-archive-list.php:63
|
227 |
-
msgid "Post type"
|
228 |
-
msgstr "ポストタイプ"
|
229 |
-
|
230 |
-
#: plugins/other_widget/old/widget-child-page-list.php:9
|
231 |
-
msgid "Displays list of child page for the current page."
|
232 |
-
msgstr "現在のページの子ページのリストを表示します。"
|
233 |
-
|
234 |
-
#: plugins/other_widget/old/widget-child-page-list.php:11
|
235 |
-
msgid "child pages list"
|
236 |
-
msgstr "子ページのリスト"
|
237 |
-
|
238 |
-
#: plugins/other_widget/old/widget-page-content.php:10
|
239 |
-
msgid "Displays the content of a chosen page."
|
240 |
-
msgstr "選択したページの内容を表示します。"
|
241 |
-
|
242 |
-
#: plugins/other_widget/old/widget-page-content.php:12
|
243 |
-
msgid "page content for top"
|
244 |
-
msgstr "トップのページコンテンツ"
|
245 |
-
|
246 |
-
#: plugins/other_widget/old/widget-page-content.php:30
|
247 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
248 |
-
msgid "Display page"
|
249 |
-
msgstr "ページを表示"
|
250 |
|
251 |
-
#: plugins/
|
252 |
-
msgid "
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
|
259 |
-
#: plugins/
|
260 |
-
msgid "
|
261 |
-
msgstr "
|
262 |
|
263 |
-
#: plugins/
|
264 |
-
msgid "
|
265 |
-
msgstr "
|
266 |
|
267 |
-
#: plugins/
|
268 |
-
msgid "
|
269 |
-
|
|
|
|
|
|
|
|
|
270 |
|
271 |
-
#: plugins/
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
|
|
|
|
274 |
|
275 |
-
#: plugins/
|
276 |
-
msgid "
|
277 |
-
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
-
#: plugins/
|
280 |
-
msgid "
|
281 |
-
msgstr "
|
282 |
|
283 |
-
#: plugins/
|
284 |
-
|
285 |
-
|
286 |
-
msgstr "カテゴリー"
|
287 |
|
288 |
-
#: plugins/
|
289 |
-
msgid "
|
290 |
-
|
|
|
|
|
291 |
|
292 |
-
#: plugins/
|
293 |
-
|
294 |
-
|
|
|
295 |
|
296 |
-
#: plugins/other_widget/widget-3pr-area.php:11
|
297 |
msgid "Displays a 3PR area"
|
298 |
msgstr "3PR エリアを表示します。"
|
299 |
|
300 |
-
#: plugins/other_widget/widget-3pr-area.php:13
|
301 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
302 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
303 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
304 |
msgid "3PR area"
|
305 |
msgstr "3PR エリア"
|
306 |
|
307 |
-
#: plugins/other_widget/widget-3pr-area.php:18
|
308 |
msgid "3PR area1 title"
|
309 |
msgstr "3PR エリア1 タイトル"
|
310 |
|
311 |
-
#: plugins/other_widget/widget-3pr-area.php:26
|
312 |
msgid "3PR area2 title"
|
313 |
msgstr "3PR エリア2 タイトル"
|
314 |
|
315 |
-
#: plugins/other_widget/widget-3pr-area.php:34
|
316 |
msgid "3PR area3 title"
|
317 |
msgstr "3PR エリア3 タイトル"
|
318 |
|
319 |
-
#: plugins/other_widget/widget-3pr-area.php:47
|
320 |
msgid "3PR area1 setting"
|
321 |
msgstr "3PR エリア1 設定"
|
322 |
|
323 |
-
#: plugins/other_widget/widget-3pr-area.php:49
|
324 |
-
#: plugins/other_widget/widget-3pr-area.php:102
|
325 |
-
#: plugins/other_widget/widget-3pr-area.php:154
|
326 |
-
#: plugins/other_widget/widget-new-posts.php:75
|
327 |
-
#: plugins/other_widget/widget-profile.php:35
|
328 |
-
#: plugins/sns/function_fbPagePlugin.php:75
|
329 |
msgid "Title:"
|
330 |
msgstr "タイトル"
|
331 |
|
332 |
-
#: plugins/other_widget/widget-3pr-area.php:55
|
333 |
-
#: plugins/other_widget/widget-3pr-area.php:108
|
334 |
-
#: plugins/other_widget/widget-3pr-area.php:160
|
335 |
msgid "Select image for PC:"
|
336 |
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
337 |
|
338 |
-
#: plugins/other_widget/widget-3pr-area.php:61
|
339 |
-
#: plugins/other_widget/widget-3pr-area.php:78
|
340 |
-
#: plugins/other_widget/widget-3pr-area.php:114
|
341 |
-
#: plugins/other_widget/widget-3pr-area.php:132
|
342 |
-
#: plugins/other_widget/widget-3pr-area.php:166
|
343 |
-
#: plugins/other_widget/widget-3pr-area.php:183
|
344 |
-
#: plugins/other_widget/widget-profile.php:46
|
345 |
msgid "Select image"
|
346 |
msgstr "画像を選択"
|
347 |
|
348 |
-
#: plugins/other_widget/widget-3pr-area.php:62
|
349 |
-
#: plugins/other_widget/widget-3pr-area.php:79
|
350 |
-
#: plugins/other_widget/widget-3pr-area.php:115
|
351 |
-
#: plugins/other_widget/widget-3pr-area.php:133
|
352 |
-
#: plugins/other_widget/widget-3pr-area.php:167
|
353 |
-
#: plugins/other_widget/widget-3pr-area.php:184
|
354 |
-
#: plugins/other_widget/widget-profile.php:47
|
355 |
msgid "Clear image"
|
356 |
msgstr "画像クリア"
|
357 |
|
358 |
-
#: plugins/other_widget/widget-3pr-area.php:72
|
359 |
-
#: plugins/other_widget/widget-3pr-area.php:126
|
360 |
-
#: plugins/other_widget/widget-3pr-area.php:177
|
361 |
msgid "Select image for Mobile:"
|
362 |
msgstr ""
|
363 |
"スマホ用(ウィンドウサイズが 992px 以下の場合)に表示される画像を選択(橫 "
|
364 |
"690px 以上推奨。空欄も可)"
|
365 |
|
366 |
-
#: plugins/other_widget/widget-3pr-area.php:88
|
367 |
-
#: plugins/other_widget/widget-3pr-area.php:142
|
368 |
-
#: plugins/other_widget/widget-3pr-area.php:194
|
369 |
msgid "Summary Text:"
|
370 |
msgstr "概要となるテキスト"
|
371 |
|
372 |
-
#: plugins/other_widget/widget-3pr-area.php:94
|
373 |
-
#: plugins/other_widget/widget-3pr-area.php:146
|
374 |
-
#: plugins/other_widget/widget-3pr-area.php:199
|
375 |
msgid "Link URL:"
|
376 |
msgstr "リンク先ページのURL"
|
377 |
|
378 |
-
#: plugins/other_widget/widget-3pr-area.php:100
|
379 |
msgid "3PR area2 setting"
|
380 |
msgstr "3PR エリア2 設定"
|
381 |
|
382 |
-
#: plugins/other_widget/widget-3pr-area.php:152
|
383 |
msgid "3PR area3 setting"
|
384 |
msgstr "3PR エリア3 設定"
|
385 |
|
386 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
387 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
388 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
389 |
msgid "Read more"
|
390 |
msgstr "詳しくはこちら"
|
391 |
|
392 |
-
#: plugins/other_widget/widget-new-posts.php:11
|
393 |
msgid "Displays a list of your most recent posts"
|
394 |
msgstr "最新の投稿記事リストを表示します。"
|
395 |
|
396 |
-
#: plugins/other_widget/widget-new-posts.php:13
|
397 |
-
#: plugins/other_widget/widget-new-posts.php:23
|
398 |
-
#: plugins/other_widget/widget-new-posts.php:66
|
399 |
msgid "Recent Posts"
|
400 |
msgstr "最新記事"
|
401 |
|
402 |
-
#: plugins/other_widget/widget-new-posts.php:80
|
403 |
msgid "Display count"
|
404 |
msgstr "表示する記事数"
|
405 |
|
406 |
-
#: plugins/other_widget/widget-new-posts.php:85
|
407 |
msgid "Slug for the custom type you want to display"
|
408 |
msgstr "表示したい記事タイプ"
|
409 |
|
410 |
-
#: plugins/other_widget/widget-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
msgid "Displays a your profile"
|
412 |
msgstr ""
|
413 |
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
414 |
|
415 |
-
#: plugins/other_widget/widget-profile.php:13
|
416 |
-
#: plugins/other_widget/widget-profile.php:19
|
417 |
msgid "Profile"
|
418 |
msgstr "プロフィール"
|
419 |
|
420 |
-
#: plugins/other_widget/widget-profile.php:22
|
421 |
msgid "Profile Text"
|
422 |
msgstr "プロフィールテキスト"
|
423 |
|
424 |
-
#: plugins/other_widget/widget-profile.php:40
|
425 |
msgid "Select Profile image:"
|
426 |
msgstr "プロフィール用画像を選択"
|
427 |
|
428 |
-
#: plugins/other_widget/widget-profile.php:57
|
429 |
msgid "Profile Text:"
|
430 |
msgstr "プロフィールテキスト"
|
431 |
|
432 |
-
#: plugins/other_widget/widget-profile.php:62
|
433 |
msgid "Facebook URL:"
|
434 |
msgstr "Facebook リンク先ページのURL"
|
435 |
|
436 |
-
#: plugins/other_widget/widget-profile.php:67
|
437 |
msgid "Twitter URL:"
|
438 |
msgstr "twitterリンク先ページのURL"
|
439 |
|
440 |
-
#: plugins/other_widget/widget-profile.php:72
|
441 |
msgid "Email Address:"
|
442 |
msgstr "Email リンク先ページのURL"
|
443 |
|
444 |
-
#: plugins/other_widget/widget-profile.php:77
|
445 |
msgid "Youtube URL:"
|
446 |
msgstr "Youtube リンク先ページのURL"
|
447 |
|
448 |
-
#: plugins/other_widget/widget-profile.php:82
|
449 |
msgid "RSS URL:"
|
450 |
msgstr "RSS リンク先ページのURL"
|
451 |
|
452 |
-
#: plugins/other_widget/widget-profile.php:87
|
453 |
msgid "instagram URL:"
|
454 |
msgstr "instagram リンク先ページのURL"
|
455 |
|
456 |
-
#: plugins/other_widget/widget-profile.php:91
|
457 |
msgid "linkedin URL:"
|
458 |
msgstr "linkedin リンク先ページのURL"
|
459 |
|
460 |
-
#: plugins/other_widget/widget-profile.php:121
|
461 |
msgid "Site's Profile"
|
462 |
msgstr "プロフィール"
|
463 |
|
464 |
-
#: plugins/
|
465 |
-
msgid "
|
466 |
-
|
|
|
|
|
|
|
|
|
467 |
|
468 |
-
#: plugins/
|
469 |
-
msgid "
|
470 |
-
msgstr "
|
471 |
|
472 |
-
#: plugins/
|
473 |
-
|
474 |
-
|
|
|
475 |
|
476 |
-
#: plugins/
|
477 |
-
msgid "
|
478 |
-
msgstr "
|
479 |
|
480 |
-
#: plugins/
|
481 |
-
msgid "
|
482 |
-
msgstr "
|
483 |
|
484 |
-
#: plugins/
|
485 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgstr "タイムラインを表示"
|
487 |
|
488 |
-
#: plugins/sns/function_follow.php:11
|
489 |
msgid "Follow me!"
|
490 |
msgstr "フォローして下さい!"
|
491 |
|
492 |
-
#: plugins/sns/
|
493 |
-
msgid "
|
494 |
-
msgstr "
|
495 |
|
496 |
-
#: plugins/sns/
|
497 |
-
msgid "
|
498 |
-
msgstr "
|
499 |
|
500 |
-
#: plugins/sns/
|
501 |
-
msgid "
|
502 |
-
msgstr "
|
503 |
|
504 |
-
#: plugins/sns/
|
505 |
msgid ""
|
506 |
-
"If
|
507 |
-
"
|
508 |
msgstr ""
|
509 |
-
"
|
510 |
-
"
|
511 |
|
512 |
-
#: plugins/sns/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
msgid "facebook application ID"
|
514 |
msgstr "facebookアプリケーションID"
|
515 |
|
516 |
-
#: plugins/sns/
|
517 |
msgid "I will check and get the application ID"
|
518 |
msgstr "アプリケーションIDを確認・取得する "
|
519 |
|
520 |
-
#: plugins/sns/
|
521 |
msgid ""
|
522 |
"* If an application ID is not specified, neither a Like button nor the "
|
523 |
"comment field displays and operates correctly."
|
@@ -525,7 +818,7 @@ msgstr ""
|
|
525 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
526 |
"ん。"
|
527 |
|
528 |
-
#: plugins/sns/
|
529 |
msgid ""
|
530 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
531 |
"much about how to get application ID for Facebook."
|
@@ -533,19 +826,75 @@ msgstr ""
|
|
533 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
534 |
"アプリケーションID 取得」などで検索して下さい。"
|
535 |
|
536 |
-
#: plugins/sns/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgid "Facebook user ID (optional)"
|
538 |
msgstr "Facebook ユーザーID( オプション )"
|
539 |
|
540 |
-
#: plugins/sns/old/sns_admin.php:36
|
541 |
msgid "Please enter the Facebook user ID of the administrator."
|
542 |
msgstr "管理者のFacebookユーザーIDを入力してください。"
|
543 |
|
544 |
-
#: plugins/sns/old/sns_admin.php:38
|
545 |
msgid "* It is not the application ID of the Facebook page."
|
546 |
msgstr "* FacebookページのアプリケーションIDではありません。"
|
547 |
|
548 |
-
#: plugins/sns/old/sns_admin.php:39
|
549 |
msgid ""
|
550 |
"You can see the personal Facebook ID when you access the following url "
|
551 |
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
@@ -553,29 +902,29 @@ msgstr ""
|
|
553 |
"このアドレス [ http://graph.facebook.com/( 自分の名前のURL (例 : hidekazu."
|
554 |
"ishikawa) ) ] にアクセスして個人の Facebook ID を確認できます。"
|
555 |
|
556 |
-
#: plugins/sns/old/sns_admin.php:40
|
557 |
msgid ""
|
558 |
"Please search for terms as [find facebook user ID] if you are still not sure."
|
559 |
msgstr ""
|
560 |
"まだ不明な場合は、[ FacebookのユーザーIDを検索 ] などのキーワードで検索して下"
|
561 |
"さい。"
|
562 |
|
563 |
-
#: plugins/sns/old/sns_admin.php:45
|
564 |
msgid "twitter account"
|
565 |
msgstr "Twitter アカウント"
|
566 |
|
567 |
-
#: plugins/sns/old/sns_admin.php:46
|
568 |
msgid ""
|
569 |
"If you would like to link to a Twitter account, banner will be displayed if "
|
570 |
"you enter the account name."
|
571 |
msgstr ""
|
572 |
"Twitterアカウントをバナーにリンクしたい場合は、アカウント名を入力して下さい。"
|
573 |
|
574 |
-
#: plugins/sns/old/sns_admin.php:48
|
575 |
msgid "widget"
|
576 |
msgstr "ウィジェット"
|
577 |
|
578 |
-
#: plugins/sns/old/sns_admin.php:49
|
579 |
#, php-format
|
580 |
msgid ""
|
581 |
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
@@ -584,60 +933,19 @@ msgstr ""
|
|
584 |
"Twitter のウィジェットなどを使用する時、ここを空にできます。%s にソースコード"
|
585 |
"を貼り付けます。"
|
586 |
|
587 |
-
#: plugins/sns/old/sns_admin.php:56
|
588 |
msgid "OGP default image"
|
589 |
msgstr "OGP デフォルト画像"
|
590 |
|
591 |
-
#: plugins/sns/old/sns_admin.php:
|
592 |
-
msgid ""
|
593 |
-
"If, for example someone pressed the Facebook [Like] button, this is the "
|
594 |
-
"image that appears on the Facebook timeline."
|
595 |
-
msgstr ""
|
596 |
-
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
597 |
-
"ムラインに表示されます。"
|
598 |
-
|
599 |
-
#: plugins/sns/old/sns_admin.php:58 plugins/sns/sns_admin.php:47
|
600 |
-
msgid "If a featured image is specified for the page, it takes precedence."
|
601 |
-
msgstr ""
|
602 |
-
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
603 |
-
"す。"
|
604 |
-
|
605 |
-
#: plugins/sns/old/sns_admin.php:60 plugins/sns/sns_admin.php:49
|
606 |
-
msgid "Select an image"
|
607 |
-
msgstr "画像を選択"
|
608 |
-
|
609 |
-
#: plugins/sns/old/sns_admin.php:62 plugins/sns/sns_admin.php:51
|
610 |
-
msgid ""
|
611 |
-
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
612 |
-
"recommended."
|
613 |
-
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
614 |
-
|
615 |
-
#: plugins/sns/old/sns_admin.php:67
|
616 |
msgid "Social buttons"
|
617 |
msgstr "ソーシャルボタン"
|
618 |
|
619 |
-
#: plugins/sns/old/sns_admin.php:68
|
620 |
msgid "Please check the type of page that displays the social button."
|
621 |
msgstr "ページに表示するソーシャルボタンの種類を選択して下さい。"
|
622 |
|
623 |
-
#: plugins/sns/old/sns_admin.php:
|
624 |
-
#: plugins/sns/old/sns_admin.php:108
|
625 |
-
msgctxt "sns display"
|
626 |
-
msgid "Home page"
|
627 |
-
msgstr "ホームページ"
|
628 |
-
|
629 |
-
#: plugins/sns/old/sns_admin.php:73 plugins/sns/old/sns_admin.php:90
|
630 |
-
msgctxt "sns display"
|
631 |
-
msgid "Page"
|
632 |
-
msgstr "ページ"
|
633 |
-
|
634 |
-
#: plugins/sns/old/sns_admin.php:75 plugins/sns/old/sns_admin.php:92
|
635 |
-
#: plugins/sns/old/sns_admin.php:94
|
636 |
-
msgctxt "sns display"
|
637 |
-
msgid "Post"
|
638 |
-
msgstr "投稿"
|
639 |
-
|
640 |
-
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
641 |
msgid ""
|
642 |
"Within the type of page that is checked, if there is a particular page you "
|
643 |
"do not wish to display, enter the Page ID. If multiple pages, please "
|
@@ -646,262 +954,99 @@ msgstr ""
|
|
646 |
"表示したくない特定のページが有る場合にページ ID を入力して下さい。複数のペー"
|
647 |
"ジがある場合は、カンマで区切って入力して下さい。"
|
648 |
|
649 |
-
#: plugins/sns/old/sns_admin.php:84
|
650 |
msgid "facebook comments box"
|
651 |
msgstr "Facebookのコメントボックス"
|
652 |
|
653 |
-
#: plugins/sns/old/sns_admin.php:85
|
654 |
msgid "Please check the type of the page to display Facebook comments."
|
655 |
msgstr "Facebook のコメントを表示するページタイプを確認して下さい。"
|
656 |
|
657 |
-
#: plugins/sns/old/sns_admin.php:104
|
658 |
msgid "If you wish to use Facebook LikeBox, please check the location."
|
659 |
msgstr "Facebook のいいねボックスを使用する場合は、場所を確認して下さい。"
|
660 |
|
661 |
-
#: plugins/sns/old/sns_admin.php:105
|
662 |
msgid "* Please be sure to set Facebook application ID."
|
663 |
msgstr "Facebook のアプリケーションIDを設定してください。"
|
664 |
|
665 |
-
#: plugins/sns/old/sns_admin.php:
|
666 |
-
msgctxt "sns display"
|
667 |
-
msgid "Side bar"
|
668 |
-
msgstr "サイドバー"
|
669 |
-
|
670 |
-
#: plugins/sns/old/sns_admin.php:113
|
671 |
msgid "URL of the Facebook page."
|
672 |
msgstr "Facebook ページの URL"
|
673 |
|
674 |
-
#: plugins/sns/old/sns_admin.php:116
|
675 |
msgid "Display stream"
|
676 |
msgstr "タイムラインを表示する"
|
677 |
|
678 |
-
#: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
|
679 |
msgid "Display"
|
680 |
msgstr "表示"
|
681 |
|
682 |
-
#: plugins/sns/old/sns_admin.php:118
|
683 |
msgid "Display faces"
|
684 |
msgstr "アイコンを表示する"
|
685 |
|
686 |
-
#: plugins/sns/old/sns_admin.php:120
|
687 |
msgid "Height of LikeBox"
|
688 |
msgstr "いいねボックスの高さ"
|
689 |
|
690 |
-
#: plugins/sns/old/sns_admin.php:128
|
691 |
msgid "Do not output the OGP"
|
692 |
msgstr "OGP を出力しません"
|
693 |
|
694 |
-
#: plugins/sns/old/sns_admin.php:130
|
695 |
msgid ""
|
696 |
"If other plug-ins are used for the OGP, do not output the OGP using "
|
697 |
"BizVektor."
|
698 |
msgstr ""
|
699 |
"他の OGP プラグインを使用している場合は、BizVektor を使用して出力しません。"
|
700 |
|
701 |
-
#: plugins/sns/old/sns_admin.php:133
|
702 |
msgid "I want to output the OGP tags using BizVektor"
|
703 |
msgstr "BizVektor を使用して OGP タグを出力したい。"
|
704 |
|
705 |
-
#: plugins/sns/old/sns_admin.php:134
|
706 |
msgid "Do not output OGP tags using BizVektor"
|
707 |
msgstr "BizVektor を使用して OGP タグを出力しない。"
|
708 |
|
709 |
-
#: plugins/sns/old/sns_admin.php:149
|
710 |
msgid "Page top"
|
711 |
msgstr "ページ先頭へ"
|
712 |
|
713 |
-
|
714 |
-
msgid "
|
715 |
-
msgstr "
|
716 |
-
|
717 |
-
#: plugins/sns/sns_admin.php:1
|
718 |
-
msgid "SNS Settings"
|
719 |
-
msgstr "SNS設定"
|
720 |
-
|
721 |
-
#: plugins/sns/sns_admin.php:13
|
722 |
-
msgid "Do not output the OG"
|
723 |
-
msgstr "OGタグ出力設定"
|
724 |
-
|
725 |
-
#: plugins/sns/sns_admin.php:15
|
726 |
-
msgid ""
|
727 |
-
"If other plug-ins are used for the OG, do not output the OG using this "
|
728 |
-
"plugin."
|
729 |
-
msgstr ""
|
730 |
-
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
731 |
-
"る場合は、このプラグインでの出力は必要ありません。"
|
732 |
-
|
733 |
-
#: plugins/sns/sns_admin.php:19
|
734 |
-
msgid "Output OG tags(default)"
|
735 |
-
msgstr "OGタグを出力する"
|
736 |
|
737 |
-
|
738 |
-
msgid "
|
739 |
-
msgstr "
|
740 |
|
741 |
-
|
742 |
-
msgid "
|
743 |
-
msgstr "
|
744 |
|
745 |
-
|
746 |
-
msgid "
|
747 |
-
msgstr "
|
748 |
|
749 |
-
|
750 |
-
msgid "
|
751 |
-
msgstr "
|
752 |
|
753 |
-
|
754 |
-
|
755 |
-
msgstr "全てを選択"
|
756 |
|
757 |
-
|
758 |
-
|
759 |
-
msgstr "有効化"
|
760 |
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
#: vkExUnit_admin.php:26
|
770 |
-
msgid "Print Bootstrap css and js"
|
771 |
-
msgstr "Bootstrap の CSS と js を出力"
|
772 |
-
|
773 |
-
#: vkExUnit_admin.php:30
|
774 |
-
msgid ""
|
775 |
-
"If your using theme has already including Bootstrap, you deactivate this "
|
776 |
-
"item."
|
777 |
-
msgstr ""
|
778 |
-
"Bootstrap の CSS と js を読み込むためのタグを html head 内へ出力します。使用"
|
779 |
-
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
780 |
-
"下さい。"
|
781 |
-
|
782 |
-
#: vkExUnit_admin.php:39
|
783 |
-
msgid "Choose Print link fontawesome."
|
784 |
-
msgstr "出力する fontawesome link を選択して下さい。"
|
785 |
-
|
786 |
-
#: vkExUnit_admin.php:44
|
787 |
-
msgid "Print link fontawesome."
|
788 |
-
msgstr "fontawesome link タグを出力"
|
789 |
-
|
790 |
-
#: vkExUnit_admin.php:48
|
791 |
-
msgid "Print fontawesome link tag to html head."
|
792 |
-
msgstr ""
|
793 |
-
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
794 |
-
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
795 |
-
"さい。"
|
796 |
-
|
797 |
-
#: vkExUnit_admin.php:57
|
798 |
-
msgid "Choose Print meta description."
|
799 |
-
msgstr "出力する meta description を選択して下さい。"
|
800 |
-
|
801 |
-
#: vkExUnit_admin.php:62
|
802 |
-
msgid "Print meta description"
|
803 |
-
msgstr "meta description タグを出力"
|
804 |
-
|
805 |
-
#: vkExUnit_admin.php:66
|
806 |
-
msgid "Print meta description to html head."
|
807 |
-
msgstr ""
|
808 |
-
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
809 |
-
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
810 |
-
"する場合はチェックを外して下さい。"
|
811 |
-
|
812 |
-
#: vkExUnit_admin.php:75
|
813 |
-
msgid "Choose Rewrite the print title tag"
|
814 |
-
msgstr "タイトルタグを独自ルールで書き換えるか選択"
|
815 |
-
|
816 |
-
#: vkExUnit_admin.php:80
|
817 |
-
msgid "Rewrite the print title tag"
|
818 |
-
msgstr "title タグ内のページタイトルを<br />VK EX Unit のルールで出力"
|
819 |
-
|
820 |
-
#: vkExUnit_admin.php:84
|
821 |
-
msgid "Print is rewritten by its own rules to html head."
|
822 |
-
msgstr ""
|
823 |
-
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
824 |
-
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
825 |
-
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
826 |
-
|
827 |
-
#: vkExUnit_admin.php:93
|
828 |
-
msgid "Choose Social media cooperation."
|
829 |
-
msgstr "連携するソーシャルメディアを選択します。"
|
830 |
-
|
831 |
-
#: vkExUnit_admin.php:98
|
832 |
-
msgid "Social media cooperation."
|
833 |
-
msgstr "ソーシャルメディアとの連携"
|
834 |
-
|
835 |
-
#: vkExUnit_admin.php:105 vkExUnit_admin.php:139
|
836 |
-
msgid "Setting"
|
837 |
-
msgstr "設定"
|
838 |
-
|
839 |
-
#: vkExUnit_admin.php:115
|
840 |
-
msgid "Print og tags to html head."
|
841 |
-
msgstr "OG タグを html head 内へ出力します。"
|
842 |
-
|
843 |
-
#: vkExUnit_admin.php:116
|
844 |
-
msgid "Print twitter card tags to html head."
|
845 |
-
msgstr "Twitter カードタグを html head 内へ出力します。"
|
846 |
-
|
847 |
-
#: vkExUnit_admin.php:117
|
848 |
-
msgid "Print social bookmarks."
|
849 |
-
msgstr "ソーシャルブックマークを表示します。"
|
850 |
-
|
851 |
-
#: vkExUnit_admin.php:118
|
852 |
-
msgid "Facebook Page Plugin."
|
853 |
-
msgstr ""
|
854 |
-
"Facebookページプラグインを表示します。<br><br>\n"
|
855 |
-
"※「設定」のリンクより「SNS Settings」画面へすすみ各ソーシャルメディアの設定を"
|
856 |
-
"行って下さい。\n"
|
857 |
-
"使用中のテーマやプラグインでソーシャルメディアとの連携を行う場合はチェックを"
|
858 |
-
"外して下さい。"
|
859 |
-
|
860 |
-
#: vkExUnit_admin.php:128
|
861 |
-
msgid "Choose Print Google Analytics tracking code."
|
862 |
-
msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
|
863 |
-
|
864 |
-
#: vkExUnit_admin.php:147
|
865 |
-
msgid "Print Google Analytics tracking code."
|
866 |
-
msgstr ""
|
867 |
-
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
868 |
-
"リンクより設定画面へすすみ Google アナリティクス ID を入力して下さい。使用中"
|
869 |
-
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
870 |
-
"合はチェックを外して下さい。"
|
871 |
-
|
872 |
-
#: vkExUnit_admin.php:156
|
873 |
-
msgid "Choose Related posts."
|
874 |
-
msgstr "関連記事を選択"
|
875 |
-
|
876 |
-
#: vkExUnit_admin.php:165
|
877 |
-
msgid "Print Related posts lists to post content bottom."
|
878 |
-
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
879 |
-
|
880 |
-
#: vkExUnit_admin.php:174 vkExUnit_admin.php:192
|
881 |
-
msgid "Choose other widgets."
|
882 |
-
msgstr "Other ウィジェットを選択"
|
883 |
-
|
884 |
-
#: vkExUnit_admin.php:179
|
885 |
-
msgid "Other Widgets"
|
886 |
-
msgstr "Other ウィジェット"
|
887 |
-
|
888 |
-
#: vkExUnit_admin.php:183
|
889 |
-
msgid "You can use various widgets."
|
890 |
-
msgstr ""
|
891 |
-
"次の機能のウィジェットを追加できます [ 最新記事を表示 / 3PRエリアを表示 / "
|
892 |
-
"Facebook ページプラグイン ( 旧Like box ) を表示 / プロフィールを表示 ] \n"
|
893 |
-
"各ウィジェットの設定は「外観」→「ウィジェット」の設定画面より行って下さい。"
|
894 |
-
|
895 |
-
#: vkExUnit_admin.php:197
|
896 |
-
msgid "CSS customize"
|
897 |
-
msgstr "CSSカスタマイズ"
|
898 |
-
|
899 |
-
#: vkExUnit_admin.php:201
|
900 |
-
msgid "You can set Customize CSS."
|
901 |
-
msgstr ""
|
902 |
-
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
903 |
-
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
904 |
-
"さい。"
|
905 |
|
906 |
#~ msgid "Displays a your site's profile"
|
907 |
#~ msgstr "サイトのプロフィールを表示します"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-08 13:40+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 |
"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.8.2\n"
|
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
|
19 |
+
#: ../plugins/meta_keyword/meta_keyword.php:84
|
20 |
msgid "Main setting"
|
21 |
msgstr "メイン設定"
|
22 |
|
23 |
+
#: ../common_helpers.php:126
|
24 |
#, php-format
|
25 |
msgid "Search Results for : %s"
|
26 |
msgstr "検索結果 : %s"
|
27 |
|
28 |
+
#: ../common_helpers.php:129
|
29 |
msgid "Not found"
|
30 |
msgstr "見つかりません"
|
31 |
|
32 |
+
#: ../common_helpers.php:138 ../common_helpers.php:202
|
33 |
#, php-format
|
34 |
msgid "Page of %s"
|
35 |
msgstr "%s のページ"
|
36 |
|
37 |
+
#: ../common_helpers.php:162 ../common_helpers.php:170
|
38 |
#, php-format
|
39 |
msgid "About %s"
|
40 |
msgstr "%s について"
|
41 |
|
42 |
+
#: ../common_helpers.php:174 ../common_helpers.php:223
|
|
|
43 |
msgid "Y"
|
44 |
msgstr "年"
|
45 |
|
46 |
+
#: ../common_helpers.php:175 ../common_helpers.php:179
|
47 |
+
#: ../common_helpers.php:183 ../common_helpers.php:187
|
48 |
#, php-format
|
|
|
49 |
msgid "Article of %s."
|
50 |
msgstr "%s の記事"
|
51 |
|
52 |
+
#: ../common_helpers.php:178 ../common_helpers.php:225
|
|
|
53 |
msgid "F Y"
|
54 |
+
msgstr "年月"
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
+
#: ../common_helpers.php:221
|
57 |
#, php-format
|
58 |
msgid "Author: %s"
|
59 |
msgstr "著者: %s"
|
60 |
|
61 |
+
#: ../common_helpers.php:227
|
|
|
62 |
msgid "F j, Y"
|
63 |
msgstr "月日, 年"
|
64 |
|
65 |
+
#: ../common_helpers.php:230
|
|
|
66 |
msgid "Asides"
|
67 |
msgstr "サイド"
|
68 |
|
69 |
+
#: ../common_helpers.php:232
|
|
|
70 |
msgid "Galleries"
|
71 |
msgstr "ギャラリー"
|
72 |
|
73 |
+
#: ../common_helpers.php:234
|
|
|
74 |
msgid "Images"
|
75 |
msgstr "画像"
|
76 |
|
77 |
+
#: ../common_helpers.php:236
|
|
|
78 |
msgid "Videos"
|
79 |
msgstr "ビデオ"
|
80 |
|
81 |
+
#: ../common_helpers.php:238
|
|
|
82 |
msgid "Quotes"
|
83 |
msgstr "引用"
|
84 |
|
85 |
+
#: ../common_helpers.php:240
|
|
|
86 |
msgid "Links"
|
87 |
msgstr "リンク"
|
88 |
|
89 |
+
#: ../common_helpers.php:242
|
|
|
90 |
msgid "Statuses"
|
91 |
msgstr "ステータス"
|
92 |
|
93 |
+
#: ../common_helpers.php:244
|
|
|
94 |
msgid "Audio"
|
95 |
msgstr "オーディオ"
|
96 |
|
97 |
+
#: ../common_helpers.php:246
|
|
|
98 |
msgid "Chats"
|
99 |
msgstr "チャット"
|
100 |
|
101 |
+
#: ../common_helpers.php:262
|
102 |
+
#: ../plugins/other_widget/old/widget-taxonomy-list.php:81
|
103 |
msgid "Archives"
|
104 |
msgstr "アーカイブ"
|
105 |
|
106 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:251
|
107 |
+
msgid "Select all"
|
108 |
+
msgstr "全てを選択"
|
109 |
+
|
110 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:251
|
111 |
+
msgid "Function"
|
112 |
+
msgstr "有効化"
|
113 |
+
|
114 |
+
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:251
|
115 |
+
msgid "Description"
|
116 |
+
msgstr "説明"
|
117 |
+
|
118 |
+
#: ../vkExUnit_admin.php:21
|
119 |
+
msgid "Choose Print Bootstrap css"
|
120 |
+
msgstr "Bootstrap の CSS を出力するか選択"
|
121 |
+
|
122 |
+
#: ../vkExUnit_admin.php:26
|
123 |
+
msgid "Print Bootstrap css and js"
|
124 |
+
msgstr "Bootstrap の CSS と js を出力"
|
125 |
+
|
126 |
+
#: ../vkExUnit_admin.php:30
|
127 |
+
msgid ""
|
128 |
+
"If your using theme has already including Bootstrap, you deactivate this "
|
129 |
+
"item."
|
130 |
+
msgstr ""
|
131 |
+
"Bootstrap の CSS と js を読み込むためのタグを html head 内へ出力します。使用"
|
132 |
+
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
133 |
+
"下さい。"
|
134 |
+
|
135 |
+
#: ../vkExUnit_admin.php:39
|
136 |
+
msgid "Choose Print link fontawesome."
|
137 |
+
msgstr "出力する fontawesome link を選択して下さい。"
|
138 |
+
|
139 |
+
#: ../vkExUnit_admin.php:44
|
140 |
+
msgid "Print link fontawesome."
|
141 |
+
msgstr "fontawesome link タグを出力"
|
142 |
+
|
143 |
+
#: ../vkExUnit_admin.php:48
|
144 |
+
msgid "Print fontawesome link tag to html head."
|
145 |
+
msgstr ""
|
146 |
+
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
147 |
+
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
148 |
+
"さい。"
|
149 |
+
|
150 |
+
#: ../vkExUnit_admin.php:57 ../vkExUnit_admin.php:111
|
151 |
+
msgid "Choose Print meta description."
|
152 |
+
msgstr "出力する meta description を選択して下さい。"
|
153 |
+
|
154 |
+
#: ../vkExUnit_admin.php:62
|
155 |
+
msgid "Favicon setting"
|
156 |
+
msgstr "ファビコン設定"
|
157 |
+
|
158 |
+
#: ../vkExUnit_admin.php:66
|
159 |
+
msgid "About favicon."
|
160 |
+
msgstr "ファビコンについて"
|
161 |
+
|
162 |
+
#: ../vkExUnit_admin.php:75
|
163 |
+
msgid "Choose Rewrite the title tag"
|
164 |
+
msgstr "タイトルタグの書き換えを選択する"
|
165 |
+
|
166 |
+
#: ../vkExUnit_admin.php:80
|
167 |
+
msgid "Rewrite the title tag"
|
168 |
+
msgstr "タイトルタグの書き換え"
|
169 |
+
|
170 |
+
#: ../vkExUnit_admin.php:84
|
171 |
+
msgid "Print is rewritten by its own rules to html head."
|
172 |
+
msgstr ""
|
173 |
+
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
174 |
+
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
175 |
+
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
176 |
+
|
177 |
+
#: ../vkExUnit_admin.php:93
|
178 |
+
msgid "Choose Print meta Keyword."
|
179 |
+
msgstr "メタキーワードを選んでください。"
|
180 |
+
|
181 |
+
#: ../vkExUnit_admin.php:98
|
182 |
+
msgid "Print meta Keyword"
|
183 |
+
msgstr "メタキーワードを出力"
|
184 |
+
|
185 |
+
#: ../vkExUnit_admin.php:102
|
186 |
+
msgid "Print meta Keyword to html head."
|
187 |
+
msgstr "ヘッダーにメタキーワードを出力します。"
|
188 |
+
|
189 |
+
#: ../vkExUnit_admin.php:116
|
190 |
+
msgid "Print meta description"
|
191 |
+
msgstr "メタディスクリプションタグを出力"
|
192 |
+
|
193 |
+
#: ../vkExUnit_admin.php:120
|
194 |
+
msgid "Print meta description to html head."
|
195 |
+
msgstr ""
|
196 |
+
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
197 |
+
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
198 |
+
"している場合はチェックを外して下さい。"
|
199 |
+
|
200 |
+
#: ../vkExUnit_admin.php:128
|
201 |
+
msgid "Choose Social media cooperation."
|
202 |
+
msgstr "連携するソーシャルメディアを選択します。"
|
203 |
+
|
204 |
+
#: ../vkExUnit_admin.php:133
|
205 |
+
msgid "Social media cooperation."
|
206 |
+
msgstr "ソーシャルメディアとの連携"
|
207 |
+
|
208 |
+
#: ../vkExUnit_admin.php:140 ../vkExUnit_admin.php:174
|
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:151
|
217 |
+
msgid "Print twitter card tags to html head."
|
218 |
+
msgstr "Twitter カードタグを html head 内へ出力します。"
|
219 |
+
|
220 |
+
#: ../vkExUnit_admin.php:152
|
221 |
+
msgid "Print social bookmarks."
|
222 |
+
msgstr "ソーシャルブックマークを表示します。"
|
223 |
+
|
224 |
+
#: ../vkExUnit_admin.php:153
|
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:182
|
238 |
+
msgid "Print Google Analytics tracking code."
|
239 |
+
msgstr ""
|
240 |
+
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
241 |
+
"リンクより設定画面へすすみ Google アナリティクス ID を入力して下さい。使用中"
|
242 |
+
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
243 |
+
"合はチェックを外して下さい。"
|
244 |
+
|
245 |
+
#: ../vkExUnit_admin.php:191
|
246 |
+
msgid "Choose Related posts."
|
247 |
+
msgstr "関連記事を選択"
|
248 |
+
|
249 |
+
#: ../vkExUnit_admin.php:196 ../plugins/related_posts/related_posts.php:34
|
250 |
+
msgid "Related posts"
|
251 |
+
msgstr "関連記事を表示"
|
252 |
+
|
253 |
+
#: ../vkExUnit_admin.php:200
|
254 |
+
msgid "Print Related posts lists to post content bottom."
|
255 |
+
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
256 |
+
|
257 |
+
#: ../vkExUnit_admin.php:209 ../vkExUnit_admin.php:234
|
258 |
+
msgid "Choose other widgets."
|
259 |
+
msgstr "Other ウィジェットを選択"
|
260 |
+
|
261 |
+
#: ../vkExUnit_admin.php:214
|
262 |
+
msgid "Other Widgets"
|
263 |
+
msgstr "Other ウィジェット"
|
264 |
+
|
265 |
+
#: ../vkExUnit_admin.php:218
|
266 |
+
msgid "You can use various widgets."
|
267 |
+
msgstr ""
|
268 |
+
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
|
269 |
+
"→「ウィジェット」の設定画面より行って下さい。"
|
270 |
+
|
271 |
+
#: ../vkExUnit_admin.php:220
|
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:221
|
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:222
|
284 |
+
msgid "VK_Profile - display the profile entered in the widget."
|
285 |
+
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
286 |
+
|
287 |
+
#: ../vkExUnit_admin.php:223
|
288 |
+
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
289 |
+
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
290 |
+
|
291 |
+
#: ../vkExUnit_admin.php:224
|
292 |
+
msgid "VK_3PR area - display the 3PR area."
|
293 |
+
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
294 |
+
|
295 |
+
#: ../vkExUnit_admin.php:239
|
296 |
+
msgid "CSS customize"
|
297 |
+
msgstr "CSSカスタマイズ"
|
298 |
+
|
299 |
+
#: ../vkExUnit_admin.php:243
|
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 "アイコン設定"
|
309 |
+
|
310 |
+
#: ../plugins/icons.php:59
|
311 |
+
msgid "Favicon Setting"
|
312 |
+
msgstr "ファビコン設定"
|
313 |
+
|
314 |
+
#: ../plugins/icons.php:61
|
315 |
+
msgid "Choose icon"
|
316 |
+
msgstr "アイコンを選択"
|
317 |
+
|
318 |
+
#: ../plugins/icons.php:62
|
319 |
+
msgid "Please upload your \".ico\" file"
|
320 |
+
msgstr "作成したicoファイルをアップロードしてください"
|
321 |
+
|
322 |
+
#: ../plugins/css_customize/css_customize-edit.php:2
|
323 |
+
#: ../plugins/css_customize/css_customize.php:35
|
324 |
+
#: ../plugins/css_customize/css_customize.php:36
|
325 |
msgid "CSS Customize"
|
326 |
msgstr "CSSカスタマイズ"
|
327 |
|
328 |
+
#: ../plugins/css_customize/css_customize-edit.php:5
|
329 |
msgid "You can add custom CSS here."
|
330 |
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
331 |
|
332 |
+
#: ../plugins/css_customize/css_customize-edit.php:10
|
333 |
msgid "Save CSS"
|
334 |
msgstr "CSSを保存する"
|
335 |
|
336 |
+
#: ../plugins/css_customize/css_customize.php:94
|
337 |
msgid "Your custom CSS was saved."
|
338 |
msgstr "CSSが保存されました"
|
339 |
|
340 |
+
#: ../plugins/css_customize/css_customize.php:99
|
341 |
msgid "Error occured. Please try again."
|
342 |
msgstr "何らかのエラー!! また試してみてください"
|
343 |
|
344 |
+
#: ../plugins/google_analytics/ga_admin.php:9
|
345 |
+
#: ../plugins/google_analytics/ga_admin.php:13
|
346 |
+
#: ../plugins/google_analytics/google_analytics.php:18
|
347 |
msgid "Google Analytics Settings"
|
348 |
msgstr "Google Analytics設定"
|
349 |
|
350 |
+
#: ../plugins/google_analytics/ga_admin.php:14
|
351 |
msgid ""
|
352 |
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
353 |
"the site."
|
354 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
355 |
|
356 |
+
#: ../plugins/google_analytics/ga_admin.php:16 ../plugins/sns/sns_admin.php:50
|
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
|
360 |
msgid "ex) "
|
361 |
msgstr "例: "
|
362 |
|
363 |
+
#: ../plugins/google_analytics/ga_admin.php:19
|
364 |
msgid ""
|
365 |
"Please select the type of Analytics code . (If you are unsure you can skip "
|
366 |
"this.)"
|
368 |
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
369 |
"す )"
|
370 |
|
371 |
+
#: ../plugins/google_analytics/ga_admin.php:23
|
372 |
msgid "To output the Universal Analytics code (default)"
|
373 |
msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
|
374 |
|
375 |
+
#: ../plugins/google_analytics/ga_admin.php:24
|
376 |
msgid "To output only normal code"
|
377 |
msgstr "ノーマルのコードのみを出力します。"
|
378 |
|
379 |
+
#: ../plugins/google_analytics/ga_admin.php:25
|
380 |
msgid "To output both types"
|
381 |
msgstr "両タイプのコードを出力します。"
|
382 |
|
383 |
+
#: ../plugins/meta_description/meta_description.php:7
|
384 |
+
#: ../plugins/meta_description/meta_description.php:19
|
385 |
+
msgid "Meta Description"
|
386 |
+
msgstr "メタディスクリプション"
|
|
|
387 |
|
388 |
+
#: ../plugins/meta_description/meta_description.php:25
|
389 |
msgid ""
|
390 |
+
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
391 |
+
"page will be reflected in the description of the meta tag."
|
392 |
+
msgstr ""
|
393 |
+
"各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
|
394 |
+
"反映されます"
|
395 |
|
396 |
+
#: ../plugins/meta_description/meta_description.php:26
|
|
|
397 |
msgid ""
|
398 |
+
"Description of meta tags in the search results screen of search sites such "
|
399 |
+
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
400 |
+
"excerpt column is blank, is 240 characters than text beginning of a sentence "
|
401 |
+
"has become a specification that is applied as a description."
|
402 |
+
msgstr ""
|
403 |
+
"トップページのメタディスクリプションにはサイトのキャッチフレーズが適用されま"
|
404 |
+
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
405 |
+
"内容が反映されます。"
|
406 |
|
407 |
+
#: ../plugins/meta_description/meta_description.php:27
|
408 |
msgid ""
|
409 |
+
"The meta description of the top page is subject to the catchphrase of the "
|
410 |
+
"site. However, its contents will be reflected if the excerpt is entered in "
|
411 |
+
"fixed page that was set on the top page."
|
412 |
msgstr ""
|
413 |
+
"トップページのメタディスクリプションにはサイトのキャッチフレーズが適用されま"
|
414 |
+
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
415 |
+
"内容が反映されます。"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
|
417 |
+
#: ../plugins/meta_description/meta_description.php:28
|
418 |
+
msgid ""
|
419 |
+
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
420 |
+
"each article edit page, and check the expert column display."
|
421 |
+
msgstr ""
|
422 |
+
"抜粋欄が表示されていない場合は、編集画面の右上に「表示」というタブがあります"
|
423 |
+
"ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
|
424 |
+
"で、チェックして下さい。"
|
425 |
+
|
426 |
+
#: ../plugins/meta_keyword/meta_keyword.php:28
|
427 |
+
#: ../plugins/meta_keyword/meta_keyword.php:74
|
428 |
+
#: ../plugins/meta_keyword/meta_keyword.php:75
|
429 |
+
#: ../plugins/meta_keyword/meta_keyword.php:82
|
430 |
+
msgid "Meta Keywords"
|
431 |
+
msgstr "メタキーワード"
|
432 |
|
433 |
+
#: ../plugins/meta_keyword/meta_keyword.php:54
|
434 |
+
msgid "Meta Keyword"
|
435 |
+
msgstr "メタキーワード"
|
436 |
|
437 |
+
#: ../plugins/meta_keyword/meta_keyword.php:57
|
438 |
+
msgid "Common Keywords"
|
439 |
+
msgstr "共通キーワード設定"
|
440 |
|
441 |
+
#: ../plugins/meta_keyword/meta_keyword.php:58
|
442 |
+
msgid ""
|
443 |
+
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
444 |
+
"if you want multiple keywords, enter with separator of \",\"."
|
445 |
+
msgstr ""
|
446 |
+
"メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
|
447 |
+
"のキーワードを設定します。複数ある場合は「,」で区切ってください。"
|
448 |
|
449 |
+
#: ../plugins/meta_keyword/meta_keyword.php:61
|
450 |
+
msgid "This is not seriously, Because the SearchEngine does not care this."
|
451 |
+
msgstr ""
|
452 |
+
"あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
|
453 |
+
"クターとはなりません。"
|
454 |
|
455 |
+
#: ../plugins/meta_keyword/meta_keyword.php:62
|
456 |
+
msgid ""
|
457 |
+
"For each page individual keyword is enter at the edit screen of each "
|
458 |
+
"article. 10 keywords maximum, together with a each article keywords is "
|
459 |
+
"desirable."
|
460 |
+
msgstr ""
|
461 |
+
"個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
|
462 |
+
"ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
|
463 |
|
464 |
+
#: ../plugins/meta_keyword/meta_keyword.php:63
|
465 |
+
msgid "\",\" separator at end of the last keyword is do not need."
|
466 |
+
msgstr "最後のキーワードの後ろに「,」は必要ありません。"
|
467 |
|
468 |
+
#: ../plugins/meta_keyword/meta_keyword.php:64
|
469 |
+
msgid "Example: WordPress,template,theme,free,GPL"
|
470 |
+
msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
|
|
|
471 |
|
472 |
+
#: ../plugins/meta_keyword/meta_keyword.php:83
|
473 |
+
msgid ""
|
474 |
+
"To distinguish between individual keywords, please enter a , delimiter "
|
475 |
+
"(optional)."
|
476 |
+
msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
|
477 |
|
478 |
+
#: ../plugins/meta_keyword/meta_keyword.php:85
|
479 |
+
#, php-format
|
480 |
+
msgid "* keywords common to the entire site can be set from %s."
|
481 |
+
msgstr "サイト全体のキーワードは %s より設定することができます。"
|
482 |
|
483 |
+
#: ../plugins/other_widget/widget-3pr-area.php:11
|
484 |
msgid "Displays a 3PR area"
|
485 |
msgstr "3PR エリアを表示します。"
|
486 |
|
487 |
+
#: ../plugins/other_widget/widget-3pr-area.php:13
|
488 |
+
#: ../plugins/other_widget/widget-3pr-area.php:245
|
489 |
+
#: ../plugins/other_widget/widget-3pr-area.php:287
|
490 |
+
#: ../plugins/other_widget/widget-3pr-area.php:330
|
491 |
msgid "3PR area"
|
492 |
msgstr "3PR エリア"
|
493 |
|
494 |
+
#: ../plugins/other_widget/widget-3pr-area.php:18
|
495 |
msgid "3PR area1 title"
|
496 |
msgstr "3PR エリア1 タイトル"
|
497 |
|
498 |
+
#: ../plugins/other_widget/widget-3pr-area.php:26
|
499 |
msgid "3PR area2 title"
|
500 |
msgstr "3PR エリア2 タイトル"
|
501 |
|
502 |
+
#: ../plugins/other_widget/widget-3pr-area.php:34
|
503 |
msgid "3PR area3 title"
|
504 |
msgstr "3PR エリア3 タイトル"
|
505 |
|
506 |
+
#: ../plugins/other_widget/widget-3pr-area.php:47
|
507 |
msgid "3PR area1 setting"
|
508 |
msgstr "3PR エリア1 設定"
|
509 |
|
510 |
+
#: ../plugins/other_widget/widget-3pr-area.php:49
|
511 |
+
#: ../plugins/other_widget/widget-3pr-area.php:102
|
512 |
+
#: ../plugins/other_widget/widget-3pr-area.php:154
|
513 |
+
#: ../plugins/other_widget/widget-new-posts.php:75
|
514 |
+
#: ../plugins/other_widget/widget-profile.php:35
|
515 |
+
#: ../plugins/sns/function_fbPagePlugin.php:75
|
516 |
msgid "Title:"
|
517 |
msgstr "タイトル"
|
518 |
|
519 |
+
#: ../plugins/other_widget/widget-3pr-area.php:55
|
520 |
+
#: ../plugins/other_widget/widget-3pr-area.php:108
|
521 |
+
#: ../plugins/other_widget/widget-3pr-area.php:160
|
522 |
msgid "Select image for PC:"
|
523 |
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
524 |
|
525 |
+
#: ../plugins/other_widget/widget-3pr-area.php:61
|
526 |
+
#: ../plugins/other_widget/widget-3pr-area.php:78
|
527 |
+
#: ../plugins/other_widget/widget-3pr-area.php:114
|
528 |
+
#: ../plugins/other_widget/widget-3pr-area.php:132
|
529 |
+
#: ../plugins/other_widget/widget-3pr-area.php:166
|
530 |
+
#: ../plugins/other_widget/widget-3pr-area.php:183
|
531 |
+
#: ../plugins/other_widget/widget-profile.php:46
|
532 |
msgid "Select image"
|
533 |
msgstr "画像を選択"
|
534 |
|
535 |
+
#: ../plugins/other_widget/widget-3pr-area.php:62
|
536 |
+
#: ../plugins/other_widget/widget-3pr-area.php:79
|
537 |
+
#: ../plugins/other_widget/widget-3pr-area.php:115
|
538 |
+
#: ../plugins/other_widget/widget-3pr-area.php:133
|
539 |
+
#: ../plugins/other_widget/widget-3pr-area.php:167
|
540 |
+
#: ../plugins/other_widget/widget-3pr-area.php:184
|
541 |
+
#: ../plugins/other_widget/widget-profile.php:47
|
542 |
msgid "Clear image"
|
543 |
msgstr "画像クリア"
|
544 |
|
545 |
+
#: ../plugins/other_widget/widget-3pr-area.php:72
|
546 |
+
#: ../plugins/other_widget/widget-3pr-area.php:126
|
547 |
+
#: ../plugins/other_widget/widget-3pr-area.php:177
|
548 |
msgid "Select image for Mobile:"
|
549 |
msgstr ""
|
550 |
"スマホ用(ウィンドウサイズが 992px 以下の場合)に表示される画像を選択(橫 "
|
551 |
"690px 以上推奨。空欄も可)"
|
552 |
|
553 |
+
#: ../plugins/other_widget/widget-3pr-area.php:88
|
554 |
+
#: ../plugins/other_widget/widget-3pr-area.php:142
|
555 |
+
#: ../plugins/other_widget/widget-3pr-area.php:194
|
556 |
msgid "Summary Text:"
|
557 |
msgstr "概要となるテキスト"
|
558 |
|
559 |
+
#: ../plugins/other_widget/widget-3pr-area.php:94
|
560 |
+
#: ../plugins/other_widget/widget-3pr-area.php:146
|
561 |
+
#: ../plugins/other_widget/widget-3pr-area.php:199
|
562 |
msgid "Link URL:"
|
563 |
msgstr "リンク先ページのURL"
|
564 |
|
565 |
+
#: ../plugins/other_widget/widget-3pr-area.php:100
|
566 |
msgid "3PR area2 setting"
|
567 |
msgstr "3PR エリア2 設定"
|
568 |
|
569 |
+
#: ../plugins/other_widget/widget-3pr-area.php:152
|
570 |
msgid "3PR area3 setting"
|
571 |
msgstr "3PR エリア3 設定"
|
572 |
|
573 |
+
#: ../plugins/other_widget/widget-3pr-area.php:274
|
574 |
+
#: ../plugins/other_widget/widget-3pr-area.php:316
|
575 |
+
#: ../plugins/other_widget/widget-3pr-area.php:359
|
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 "最新の投稿記事リストを表示します。"
|
582 |
|
583 |
+
#: ../plugins/other_widget/widget-new-posts.php:13
|
584 |
+
#: ../plugins/other_widget/widget-new-posts.php:23
|
585 |
+
#: ../plugins/other_widget/widget-new-posts.php:66
|
586 |
msgid "Recent Posts"
|
587 |
msgstr "最新記事"
|
588 |
|
589 |
+
#: ../plugins/other_widget/widget-new-posts.php:80
|
590 |
msgid "Display count"
|
591 |
msgstr "表示する記事数"
|
592 |
|
593 |
+
#: ../plugins/other_widget/widget-new-posts.php:85
|
594 |
msgid "Slug for the custom type you want to display"
|
595 |
msgstr "表示したい記事タイプ"
|
596 |
|
597 |
+
#: ../plugins/other_widget/widget-page.php:11
|
598 |
+
msgid "Displays a page contents to widget."
|
599 |
+
msgstr "選択したページの内容を表示します。"
|
600 |
+
|
601 |
+
#: ../plugins/other_widget/widget-page.php:13
|
602 |
+
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"
|
609 |
+
msgstr "ページを表示"
|
610 |
+
|
611 |
+
#: ../plugins/other_widget/widget-page.php:38
|
612 |
+
#: ../plugins/other_widget/old/widget-page-content.php:38
|
613 |
+
msgid "display title"
|
614 |
+
msgstr "タイトルを表示"
|
615 |
+
|
616 |
+
#: ../plugins/other_widget/widget-page.php:60
|
617 |
+
#: ../plugins/other_widget/old/widget-page-content.php:61
|
618 |
+
msgid "Edit"
|
619 |
+
msgstr "編集"
|
620 |
+
|
621 |
+
#: ../plugins/other_widget/widget-profile.php:11
|
622 |
msgid "Displays a your profile"
|
623 |
msgstr ""
|
624 |
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
625 |
|
626 |
+
#: ../plugins/other_widget/widget-profile.php:13
|
627 |
+
#: ../plugins/other_widget/widget-profile.php:19
|
628 |
msgid "Profile"
|
629 |
msgstr "プロフィール"
|
630 |
|
631 |
+
#: ../plugins/other_widget/widget-profile.php:22
|
632 |
msgid "Profile Text"
|
633 |
msgstr "プロフィールテキスト"
|
634 |
|
635 |
+
#: ../plugins/other_widget/widget-profile.php:40
|
636 |
msgid "Select Profile image:"
|
637 |
msgstr "プロフィール用画像を選択"
|
638 |
|
639 |
+
#: ../plugins/other_widget/widget-profile.php:57
|
640 |
msgid "Profile Text:"
|
641 |
msgstr "プロフィールテキスト"
|
642 |
|
643 |
+
#: ../plugins/other_widget/widget-profile.php:62
|
644 |
msgid "Facebook URL:"
|
645 |
msgstr "Facebook リンク先ページのURL"
|
646 |
|
647 |
+
#: ../plugins/other_widget/widget-profile.php:67
|
648 |
msgid "Twitter URL:"
|
649 |
msgstr "twitterリンク先ページのURL"
|
650 |
|
651 |
+
#: ../plugins/other_widget/widget-profile.php:72
|
652 |
msgid "Email Address:"
|
653 |
msgstr "Email リンク先ページのURL"
|
654 |
|
655 |
+
#: ../plugins/other_widget/widget-profile.php:77
|
656 |
msgid "Youtube URL:"
|
657 |
msgstr "Youtube リンク先ページのURL"
|
658 |
|
659 |
+
#: ../plugins/other_widget/widget-profile.php:82
|
660 |
msgid "RSS URL:"
|
661 |
msgstr "RSS リンク先ページのURL"
|
662 |
|
663 |
+
#: ../plugins/other_widget/widget-profile.php:87
|
664 |
msgid "instagram URL:"
|
665 |
msgstr "instagram リンク先ページのURL"
|
666 |
|
667 |
+
#: ../plugins/other_widget/widget-profile.php:91
|
668 |
msgid "linkedin URL:"
|
669 |
msgstr "linkedin リンク先ページのURL"
|
670 |
|
671 |
+
#: ../plugins/other_widget/widget-profile.php:121
|
672 |
msgid "Site's Profile"
|
673 |
msgstr "プロフィール"
|
674 |
|
675 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:12
|
676 |
+
msgid ""
|
677 |
+
"Displays a list of archives. You can choose the post type and also to "
|
678 |
+
"display archives by month or by year."
|
679 |
+
msgstr ""
|
680 |
+
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
681 |
+
"プを選択できます。"
|
682 |
|
683 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:14
|
684 |
+
msgid "archive list"
|
685 |
+
msgstr "アーカイブリスト"
|
686 |
|
687 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:49
|
688 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:50
|
689 |
+
msgid "Monthly archives"
|
690 |
+
msgstr "月別アーカイブ"
|
691 |
|
692 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:59
|
693 |
+
msgid "Title"
|
694 |
+
msgstr "タイトル"
|
695 |
|
696 |
+
#: ../plugins/other_widget/old/widget-archive-list.php:63
|
697 |
+
msgid "Post type"
|
698 |
+
msgstr "ポストタイプ"
|
699 |
|
700 |
+
#: ../plugins/other_widget/old/widget-child-page-list.php:9
|
701 |
+
msgid "Displays list of child page for the current page."
|
702 |
+
msgstr "現在のページの子ページのリストを表示します。"
|
703 |
+
|
704 |
+
#: ../plugins/other_widget/old/widget-child-page-list.php:11
|
705 |
+
msgid "child pages list"
|
706 |
+
msgstr "子ページのリスト"
|
707 |
+
|
708 |
+
#: ../plugins/other_widget/old/widget-page-content.php:10
|
709 |
+
msgid "Displays the content of a chosen page."
|
710 |
+
msgstr "選択したページの内容を表示します。"
|
711 |
+
|
712 |
+
#: ../plugins/other_widget/old/widget-page-content.php:12
|
713 |
+
msgid "page content for top"
|
714 |
+
msgstr "トップのページコンテンツ"
|
715 |
+
|
716 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:9
|
717 |
+
msgid "Displays entries list from a RSS feed link."
|
718 |
+
msgstr "RSSフィードリンクからエントリーリストを表示します。"
|
719 |
+
|
720 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:11
|
721 |
+
msgid "RSS entries for top"
|
722 |
+
msgstr "トップのRSSエントリー"
|
723 |
+
|
724 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:25
|
725 |
+
msgid "Blog entries"
|
726 |
+
msgstr "ブログエントリー"
|
727 |
+
|
728 |
+
#: ../plugins/other_widget/old/widget-rss-widget.php:30
|
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 ページプラグインを表示します。"
|
756 |
+
|
757 |
+
#: ../plugins/sns/function_fbPagePlugin.php:85
|
758 |
+
msgid "Height"
|
759 |
+
msgstr "高さ"
|
760 |
+
|
761 |
+
#: ../plugins/sns/function_fbPagePlugin.php:90
|
762 |
+
msgid "Show Friend's Faces"
|
763 |
+
msgstr "アイコンを表示する"
|
764 |
+
|
765 |
+
#: ../plugins/sns/function_fbPagePlugin.php:95
|
766 |
+
msgid "Hide Cover Photo"
|
767 |
+
msgstr "カバー画像を表示しない"
|
768 |
+
|
769 |
+
#: ../plugins/sns/function_fbPagePlugin.php:100
|
770 |
+
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:19
|
778 |
+
msgid "SNS"
|
779 |
+
msgstr "SNS"
|
780 |
|
781 |
+
#: ../plugins/sns/sns_admin.php:1
|
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:34 ../plugins/sns/old/sns_admin.php:28
|
810 |
msgid "I will check and get the application ID"
|
811 |
msgstr "アプリケーションIDを確認・取得する "
|
812 |
|
813 |
+
#: ../plugins/sns/sns_admin.php:35 ../plugins/sns/old/sns_admin.php:29
|
814 |
msgid ""
|
815 |
"* If an application ID is not specified, neither a Like button nor the "
|
816 |
"comment field displays and operates correctly."
|
818 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
819 |
"ん。"
|
820 |
|
821 |
+
#: ../plugins/sns/sns_admin.php:36 ../plugins/sns/old/sns_admin.php:30
|
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 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
827 |
"アプリケーションID 取得」などで検索して下さい。"
|
828 |
|
829 |
+
#: ../plugins/sns/sns_admin.php:40
|
830 |
+
msgid "facebook page URL"
|
831 |
+
msgstr "FacebookページURL"
|
832 |
+
|
833 |
+
#: ../plugins/sns/sns_admin.php:45
|
834 |
+
msgid "OG default image"
|
835 |
+
msgstr "デフォルトのOGPイメージ"
|
836 |
+
|
837 |
+
#: ../plugins/sns/sns_admin.php:46 ../plugins/sns/old/sns_admin.php:57
|
838 |
+
msgid ""
|
839 |
+
"If, for example someone pressed the Facebook [Like] button, this is the "
|
840 |
+
"image that appears on the Facebook timeline."
|
841 |
+
msgstr ""
|
842 |
+
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
843 |
+
"ムラインに表示されます。"
|
844 |
+
|
845 |
+
#: ../plugins/sns/sns_admin.php:47 ../plugins/sns/old/sns_admin.php:58
|
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:49 ../plugins/sns/old/sns_admin.php:60
|
852 |
+
msgid "Select an image"
|
853 |
+
msgstr "画像を選択"
|
854 |
+
|
855 |
+
#: ../plugins/sns/sns_admin.php:51 ../plugins/sns/old/sns_admin.php:62
|
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:55
|
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 "* テーマオプションページで設定する必要があります。"
|
868 |
+
|
869 |
+
#: ../plugins/sns/old/sns_admin.php:12
|
870 |
+
msgid "Social media"
|
871 |
+
msgstr "ソーシャルメディア"
|
872 |
+
|
873 |
+
#: ../plugins/sns/old/sns_admin.php:13
|
874 |
+
msgid "If you are unsure, you can leave for later."
|
875 |
+
msgstr "不明な場合は後で設定することができます。"
|
876 |
+
|
877 |
+
#: ../plugins/sns/old/sns_admin.php:18
|
878 |
+
msgid ""
|
879 |
+
"If you wish to link to a personal account or a Facebook page banner will be "
|
880 |
+
"displayed if you enter the URL."
|
881 |
+
msgstr ""
|
882 |
+
"個人アカウントやFacebookページのバナーにリンクしたい場合は URL を入力して下さ"
|
883 |
+
"い。"
|
884 |
+
|
885 |
+
#: ../plugins/sns/old/sns_admin.php:35
|
886 |
msgid "Facebook user ID (optional)"
|
887 |
msgstr "Facebook ユーザーID( オプション )"
|
888 |
|
889 |
+
#: ../plugins/sns/old/sns_admin.php:36
|
890 |
msgid "Please enter the Facebook user ID of the administrator."
|
891 |
msgstr "管理者のFacebookユーザーIDを入力してください。"
|
892 |
|
893 |
+
#: ../plugins/sns/old/sns_admin.php:38
|
894 |
msgid "* It is not the application ID of the Facebook page."
|
895 |
msgstr "* FacebookページのアプリケーションIDではありません。"
|
896 |
|
897 |
+
#: ../plugins/sns/old/sns_admin.php:39
|
898 |
msgid ""
|
899 |
"You can see the personal Facebook ID when you access the following url "
|
900 |
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
902 |
"このアドレス [ http://graph.facebook.com/( 自分の名前のURL (例 : hidekazu."
|
903 |
"ishikawa) ) ] にアクセスして個人の Facebook ID を確認できます。"
|
904 |
|
905 |
+
#: ../plugins/sns/old/sns_admin.php:40
|
906 |
msgid ""
|
907 |
"Please search for terms as [find facebook user ID] if you are still not sure."
|
908 |
msgstr ""
|
909 |
"まだ不明な場合は、[ FacebookのユーザーIDを検索 ] などのキーワードで検索して下"
|
910 |
"さい。"
|
911 |
|
912 |
+
#: ../plugins/sns/old/sns_admin.php:45
|
913 |
msgid "twitter account"
|
914 |
msgstr "Twitter アカウント"
|
915 |
|
916 |
+
#: ../plugins/sns/old/sns_admin.php:46
|
917 |
msgid ""
|
918 |
"If you would like to link to a Twitter account, banner will be displayed if "
|
919 |
"you enter the account name."
|
920 |
msgstr ""
|
921 |
"Twitterアカウントをバナーにリンクしたい場合は、アカウント名を入力して下さい。"
|
922 |
|
923 |
+
#: ../plugins/sns/old/sns_admin.php:48
|
924 |
msgid "widget"
|
925 |
msgstr "ウィジェット"
|
926 |
|
927 |
+
#: ../plugins/sns/old/sns_admin.php:49
|
928 |
#, php-format
|
929 |
msgid ""
|
930 |
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
933 |
"Twitter のウィジェットなどを使用する時、ここを空にできます。%s にソースコード"
|
934 |
"を貼り付けます。"
|
935 |
|
936 |
+
#: ../plugins/sns/old/sns_admin.php:56
|
937 |
msgid "OGP default image"
|
938 |
msgstr "OGP デフォルト画像"
|
939 |
|
940 |
+
#: ../plugins/sns/old/sns_admin.php:67
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
msgid "Social buttons"
|
942 |
msgstr "ソーシャルボタン"
|
943 |
|
944 |
+
#: ../plugins/sns/old/sns_admin.php:68
|
945 |
msgid "Please check the type of page that displays the social button."
|
946 |
msgstr "ページに表示するソーシャルボタンの種類を選択して下さい。"
|
947 |
|
948 |
+
#: ../plugins/sns/old/sns_admin.php:77 ../plugins/sns/old/sns_admin.php:96
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
msgid ""
|
950 |
"Within the type of page that is checked, if there is a particular page you "
|
951 |
"do not wish to display, enter the Page ID. If multiple pages, please "
|
954 |
"表示したくない特定のページが有る場合にページ ID を入力して下さい。複数のペー"
|
955 |
"ジがある場合は、カンマで区切って入力して下さい。"
|
956 |
|
957 |
+
#: ../plugins/sns/old/sns_admin.php:84
|
958 |
msgid "facebook comments box"
|
959 |
msgstr "Facebookのコメントボックス"
|
960 |
|
961 |
+
#: ../plugins/sns/old/sns_admin.php:85
|
962 |
msgid "Please check the type of the page to display Facebook comments."
|
963 |
msgstr "Facebook のコメントを表示するページタイプを確認して下さい。"
|
964 |
|
965 |
+
#: ../plugins/sns/old/sns_admin.php:104
|
966 |
msgid "If you wish to use Facebook LikeBox, please check the location."
|
967 |
msgstr "Facebook のいいねボックスを使用する場合は、場所を確認して下さい。"
|
968 |
|
969 |
+
#: ../plugins/sns/old/sns_admin.php:105
|
970 |
msgid "* Please be sure to set Facebook application ID."
|
971 |
msgstr "Facebook のアプリケーションIDを設定してください。"
|
972 |
|
973 |
+
#: ../plugins/sns/old/sns_admin.php:113
|
|
|
|
|
|
|
|
|
|
|
974 |
msgid "URL of the Facebook page."
|
975 |
msgstr "Facebook ページの URL"
|
976 |
|
977 |
+
#: ../plugins/sns/old/sns_admin.php:116
|
978 |
msgid "Display stream"
|
979 |
msgstr "タイムラインを表示する"
|
980 |
|
981 |
+
#: ../plugins/sns/old/sns_admin.php:117 ../plugins/sns/old/sns_admin.php:119
|
982 |
msgid "Display"
|
983 |
msgstr "表示"
|
984 |
|
985 |
+
#: ../plugins/sns/old/sns_admin.php:118
|
986 |
msgid "Display faces"
|
987 |
msgstr "アイコンを表示する"
|
988 |
|
989 |
+
#: ../plugins/sns/old/sns_admin.php:120
|
990 |
msgid "Height of LikeBox"
|
991 |
msgstr "いいねボックスの高さ"
|
992 |
|
993 |
+
#: ../plugins/sns/old/sns_admin.php:128
|
994 |
msgid "Do not output the OGP"
|
995 |
msgstr "OGP を出力しません"
|
996 |
|
997 |
+
#: ../plugins/sns/old/sns_admin.php:130
|
998 |
msgid ""
|
999 |
"If other plug-ins are used for the OGP, do not output the OGP using "
|
1000 |
"BizVektor."
|
1001 |
msgstr ""
|
1002 |
"他の OGP プラグインを使用している場合は、BizVektor を使用して出力しません。"
|
1003 |
|
1004 |
+
#: ../plugins/sns/old/sns_admin.php:133
|
1005 |
msgid "I want to output the OGP tags using BizVektor"
|
1006 |
msgstr "BizVektor を使用して OGP タグを出力したい。"
|
1007 |
|
1008 |
+
#: ../plugins/sns/old/sns_admin.php:134
|
1009 |
msgid "Do not output OGP tags using BizVektor"
|
1010 |
msgstr "BizVektor を使用して OGP タグを出力しない。"
|
1011 |
|
1012 |
+
#: ../plugins/sns/old/sns_admin.php:149
|
1013 |
msgid "Page top"
|
1014 |
msgstr "ページ先頭へ"
|
1015 |
|
1016 |
+
#~ msgctxt "Archive description"
|
1017 |
+
#~ msgid "Article of %s."
|
1018 |
+
#~ msgstr "%s の記事"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
|
1020 |
+
#~ msgctxt "sns display"
|
1021 |
+
#~ msgid "Home page"
|
1022 |
+
#~ msgstr "ホームページ"
|
1023 |
|
1024 |
+
#~ msgctxt "sns display"
|
1025 |
+
#~ msgid "Page"
|
1026 |
+
#~ msgstr "ページ"
|
1027 |
|
1028 |
+
#~ msgctxt "sns display"
|
1029 |
+
#~ msgid "Post"
|
1030 |
+
#~ msgstr "投稿"
|
1031 |
|
1032 |
+
#~ msgctxt "sns display"
|
1033 |
+
#~ msgid "Side bar"
|
1034 |
+
#~ msgstr "サイドバー"
|
1035 |
|
1036 |
+
#~ msgid "WebClip Setting"
|
1037 |
+
#~ msgstr "ウェブクリップ設定"
|
|
|
1038 |
|
1039 |
+
#~ msgid "Choose image"
|
1040 |
+
#~ msgstr "画像を選択"
|
|
|
1041 |
|
1042 |
+
#~ msgid ""
|
1043 |
+
#~ "Description of meta tags in the search results screen of search sites "
|
1044 |
+
#~ "such as Google, will be Displayed, such as the bottom of the site title.\n"
|
1045 |
+
#~ "If the excerpt column is blank, is 240 characters than text beginning of "
|
1046 |
+
#~ "a sentence has become a specification that is applied as a description."
|
1047 |
+
#~ msgstr ""
|
1048 |
+
#~ "メタタグのディスクリプションはGoogleなどの検索サイトの検索結果画面で、サイ"
|
1049 |
+
#~ "トタイトルの下などに表示されます。"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1050 |
|
1051 |
#~ msgid "Displays a your site's profile"
|
1052 |
#~ msgstr "サイトのプロフィールを表示します"
|
languages/vkexunit.mo
CHANGED
Binary file
|
languages/vkexunit.pot
CHANGED
@@ -1,30 +1,21 @@
|
|
1 |
-
# WordPress Blank Pot
|
2 |
-
# Copyright (C) 2014 ...
|
3 |
-
# This file is distrubuted under the GPL-2.0+
|
4 |
-
#, fuzzy
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
-
"Project-Id-Version:
|
8 |
-
"
|
9 |
-
"POT-Creation-Date: 2015-07-06 13:46+0900\n"
|
10 |
"PO-Revision-Date: \n"
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
13 |
-
"Language: en_US\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"
|
18 |
-
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
-
"X-Poedit-KeywordsList: __;_e;_x
|
21 |
-
"
|
22 |
-
"__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
23 |
-
"X-Poedit-Basepath: ..\n"
|
24 |
-
"X-Generator: Poedit 1.8.2\n"
|
25 |
"X-Poedit-SearchPath-0: .\n"
|
26 |
|
27 |
#: admin_wrapper.php:7 admin_wrapper.php:8
|
|
|
28 |
msgid "Main setting"
|
29 |
msgstr ""
|
30 |
|
@@ -37,97 +28,268 @@ msgstr ""
|
|
37 |
msgid "Not found"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: common_helpers.php:138 common_helpers.php:
|
41 |
#, php-format
|
42 |
msgid "Page of %s"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: common_helpers.php:
|
46 |
#, php-format
|
47 |
msgid "About %s"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: common_helpers.php:
|
51 |
-
msgctxt "yearly archives date format"
|
52 |
msgid "Y"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: common_helpers.php:179
|
|
|
56 |
#, php-format
|
57 |
-
msgctxt "Yearly archive description"
|
58 |
msgid "Article of %s."
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: common_helpers.php:
|
62 |
-
msgctxt "monthly archives date format"
|
63 |
msgid "F Y"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: common_helpers.php:
|
67 |
-
#, php-format
|
68 |
-
msgctxt "Archive description"
|
69 |
-
msgid "Article of %s."
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
#: common_helpers.php:225
|
73 |
#, php-format
|
74 |
msgid "Author: %s"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: common_helpers.php:
|
78 |
-
msgctxt "daily archives date format"
|
79 |
msgid "F j, Y"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: common_helpers.php:
|
83 |
-
msgctxt "post format archive title"
|
84 |
msgid "Asides"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: common_helpers.php:
|
88 |
-
msgctxt "post format archive title"
|
89 |
msgid "Galleries"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: common_helpers.php:
|
93 |
-
msgctxt "post format archive title"
|
94 |
msgid "Images"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: common_helpers.php:
|
98 |
-
msgctxt "post format archive title"
|
99 |
msgid "Videos"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: common_helpers.php:
|
103 |
-
msgctxt "post format archive title"
|
104 |
msgid "Quotes"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: common_helpers.php:
|
108 |
-
msgctxt "post format archive title"
|
109 |
msgid "Links"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: common_helpers.php:
|
113 |
-
msgctxt "post format archive title"
|
114 |
msgid "Statuses"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: common_helpers.php:
|
118 |
-
msgctxt "post format archive title"
|
119 |
msgid "Audio"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: common_helpers.php:
|
123 |
-
msgctxt "post format archive title"
|
124 |
msgid "Chats"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: common_helpers.php:
|
128 |
msgid "Archives"
|
129 |
msgstr ""
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
#: plugins/css_customize/css_customize-edit.php:2
|
132 |
#: plugins/css_customize/css_customize.php:35
|
133 |
#: plugins/css_customize/css_customize.php:36
|
@@ -162,10 +324,10 @@ msgid ""
|
|
162 |
"the site."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/
|
166 |
-
#: plugins/sns/old/sns_admin.php:
|
167 |
-
#: plugins/sns/old/sns_admin.php:
|
168 |
-
#: plugins/sns/sns_admin.php:
|
169 |
msgid "ex) "
|
170 |
msgstr ""
|
171 |
|
@@ -187,115 +349,87 @@ msgstr ""
|
|
187 |
msgid "To output both types"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: plugins/meta_description/meta_description
|
191 |
-
#: plugins/meta_description/meta_description
|
192 |
-
|
193 |
-
msgid "Meta Keywords"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: plugins/meta_description/meta_description
|
197 |
msgid ""
|
198 |
-
"
|
199 |
-
"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: plugins/meta_description/meta_description
|
203 |
-
msgctxt "link to seo setting"
|
204 |
msgid ""
|
|
|
|
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: plugins/meta_description/meta_description
|
208 |
-
#, php-format
|
209 |
-
msgid "* keywords common to the entire site can be set from %s."
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: plugins/other_widget/old/widget-archive-list.php:12
|
213 |
msgid ""
|
214 |
-
"
|
215 |
-
"
|
216 |
-
|
217 |
-
|
218 |
-
#: plugins/other_widget/old/widget-archive-list.php:14
|
219 |
-
msgid "archive list"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: plugins/other_widget/old/widget-archive-list.php:49
|
223 |
-
#: plugins/other_widget/old/widget-archive-list.php:50
|
224 |
-
msgid "Monthly archives"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: plugins/other_widget/old/widget-archive-list.php:59
|
228 |
-
msgid "Title"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: plugins/other_widget/old/widget-archive-list.php:63
|
232 |
-
msgid "Post type"
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: plugins/other_widget/old/widget-child-page-list.php:9
|
236 |
-
msgid "Displays list of child page for the current page."
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: plugins/other_widget/old/widget-child-page-list.php:11
|
240 |
-
msgid "child pages list"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: plugins/other_widget/old/widget-page-content.php:10
|
244 |
-
msgid "Displays the content of a chosen page."
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: plugins/other_widget/old/widget-page-content.php:12
|
248 |
-
msgid "page content for top"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: plugins/other_widget/old/widget-page-content.php:30
|
252 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
253 |
-
msgid "Display page"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: plugins/
|
257 |
-
msgid "
|
|
|
|
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: plugins/
|
261 |
-
|
|
|
|
|
|
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: plugins/
|
265 |
-
msgid "
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: plugins/
|
269 |
-
msgid "
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: plugins/
|
273 |
-
msgid "
|
|
|
|
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: plugins/
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: plugins/
|
281 |
-
msgid "
|
|
|
|
|
|
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: plugins/
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: plugins/
|
289 |
-
|
290 |
-
msgid "Category"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: plugins/
|
294 |
-
msgid "
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: plugins/
|
298 |
-
|
|
|
299 |
msgstr ""
|
300 |
|
301 |
#: plugins/other_widget/widget-3pr-area.php:11
|
@@ -303,9 +437,9 @@ msgid "Displays a 3PR area"
|
|
303 |
msgstr ""
|
304 |
|
305 |
#: plugins/other_widget/widget-3pr-area.php:13
|
306 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
307 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
308 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
309 |
msgid "3PR area"
|
310 |
msgstr ""
|
311 |
|
@@ -386,9 +520,9 @@ msgstr ""
|
|
386 |
msgid "3PR area3 setting"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
390 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
391 |
-
#: plugins/other_widget/widget-3pr-area.php:
|
392 |
msgid "Read more"
|
393 |
msgstr ""
|
394 |
|
@@ -410,6 +544,30 @@ msgstr ""
|
|
410 |
msgid "Slug for the custom type you want to display"
|
411 |
msgstr ""
|
412 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
#: plugins/other_widget/widget-profile.php:11
|
414 |
msgid "Displays a your profile"
|
415 |
msgstr ""
|
@@ -463,8 +621,80 @@ msgstr ""
|
|
463 |
msgid "Site's Profile"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: plugins/
|
467 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
468 |
msgstr ""
|
469 |
|
470 |
#: plugins/sns/function_fbPagePlugin.php:10
|
@@ -491,44 +721,102 @@ msgstr ""
|
|
491 |
msgid "Follow me!"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: plugins/sns/
|
495 |
-
msgid "
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: plugins/sns/
|
499 |
-
msgid "
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: plugins/sns/
|
503 |
-
msgid "
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: plugins/sns/
|
507 |
msgid ""
|
508 |
-
"If
|
509 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: plugins/sns/
|
513 |
msgid "facebook application ID"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: plugins/sns/
|
517 |
msgid "I will check and get the application ID"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: plugins/sns/
|
521 |
msgid ""
|
522 |
"* If an application ID is not specified, neither a Like button nor the "
|
523 |
"comment field displays and operates correctly."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: plugins/sns/
|
527 |
msgid ""
|
528 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
529 |
"much about how to get application ID for Facebook."
|
530 |
msgstr ""
|
531 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
#: plugins/sns/old/sns_admin.php:35
|
533 |
msgid "Facebook user ID (optional)"
|
534 |
msgstr ""
|
@@ -577,26 +865,6 @@ msgstr ""
|
|
577 |
msgid "OGP default image"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: plugins/sns/old/sns_admin.php:57 plugins/sns/sns_admin.php:46
|
581 |
-
msgid ""
|
582 |
-
"If, for example someone pressed the Facebook [Like] button, this is the "
|
583 |
-
"image that appears on the Facebook timeline."
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: plugins/sns/old/sns_admin.php:58 plugins/sns/sns_admin.php:47
|
587 |
-
msgid "If a featured image is specified for the page, it takes precedence."
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: plugins/sns/old/sns_admin.php:60 plugins/sns/sns_admin.php:49
|
591 |
-
msgid "Select an image"
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: plugins/sns/old/sns_admin.php:62 plugins/sns/sns_admin.php:51
|
595 |
-
msgid ""
|
596 |
-
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
597 |
-
"recommended."
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
#: plugins/sns/old/sns_admin.php:67
|
601 |
msgid "Social buttons"
|
602 |
msgstr ""
|
@@ -605,23 +873,6 @@ msgstr ""
|
|
605 |
msgid "Please check the type of page that displays the social button."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: plugins/sns/old/sns_admin.php:71 plugins/sns/old/sns_admin.php:88
|
609 |
-
#: plugins/sns/old/sns_admin.php:108
|
610 |
-
msgctxt "sns display"
|
611 |
-
msgid "Home page"
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: plugins/sns/old/sns_admin.php:73 plugins/sns/old/sns_admin.php:90
|
615 |
-
msgctxt "sns display"
|
616 |
-
msgid "Page"
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: plugins/sns/old/sns_admin.php:75 plugins/sns/old/sns_admin.php:92
|
620 |
-
#: plugins/sns/old/sns_admin.php:94
|
621 |
-
msgctxt "sns display"
|
622 |
-
msgid "Post"
|
623 |
-
msgstr ""
|
624 |
-
|
625 |
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
626 |
msgid ""
|
627 |
"Within the type of page that is checked, if there is a particular page you "
|
@@ -645,11 +896,6 @@ msgstr ""
|
|
645 |
msgid "* Please be sure to set Facebook application ID."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: plugins/sns/old/sns_admin.php:110
|
649 |
-
msgctxt "sns display"
|
650 |
-
msgid "Side bar"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
#: plugins/sns/old/sns_admin.php:113
|
654 |
msgid "URL of the Facebook page."
|
655 |
msgstr ""
|
@@ -691,167 +937,3 @@ msgstr ""
|
|
691 |
#: plugins/sns/old/sns_admin.php:149
|
692 |
msgid "Page top"
|
693 |
msgstr ""
|
694 |
-
|
695 |
-
#: plugins/sns/sns.php:19
|
696 |
-
msgid "SNS"
|
697 |
-
msgstr ""
|
698 |
-
|
699 |
-
#: plugins/sns/sns_admin.php:1
|
700 |
-
msgid "SNS Settings"
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: plugins/sns/sns_admin.php:13
|
704 |
-
msgid "Do not output the OG"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: plugins/sns/sns_admin.php:15
|
708 |
-
msgid ""
|
709 |
-
"If other plug-ins are used for the OG, do not output the OG using this "
|
710 |
-
"plugin."
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: plugins/sns/sns_admin.php:19
|
714 |
-
msgid "Output OG tags(default)"
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
#: plugins/sns/sns_admin.php:20
|
718 |
-
msgid "Do not output OG tags"
|
719 |
-
msgstr ""
|
720 |
-
|
721 |
-
#: plugins/sns/sns_admin.php:40
|
722 |
-
msgid "facebook page URL"
|
723 |
-
msgstr ""
|
724 |
-
|
725 |
-
#: plugins/sns/sns_admin.php:45
|
726 |
-
msgid "OG default image"
|
727 |
-
msgstr ""
|
728 |
-
|
729 |
-
#: plugins/sns/sns_admin.php:55
|
730 |
-
msgid "twitter ID"
|
731 |
-
msgstr ""
|
732 |
-
|
733 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:209
|
734 |
-
msgid "Select all"
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:209
|
738 |
-
msgid "Function"
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:209
|
742 |
-
msgid "Description"
|
743 |
-
msgstr ""
|
744 |
-
|
745 |
-
#: vkExUnit_admin.php:21
|
746 |
-
msgid "Choose Print Bootstrap css"
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: vkExUnit_admin.php:26
|
750 |
-
msgid "Print Bootstrap css and js"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: vkExUnit_admin.php:30
|
754 |
-
msgid ""
|
755 |
-
"If your using theme has already including Bootstrap, you deactivate this "
|
756 |
-
"item."
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: vkExUnit_admin.php:39
|
760 |
-
msgid "Choose Print link fontawesome."
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: vkExUnit_admin.php:44
|
764 |
-
msgid "Print link fontawesome."
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: vkExUnit_admin.php:48
|
768 |
-
msgid "Print fontawesome link tag to html head."
|
769 |
-
msgstr ""
|
770 |
-
|
771 |
-
#: vkExUnit_admin.php:57
|
772 |
-
msgid "Choose Print meta description."
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: vkExUnit_admin.php:62
|
776 |
-
msgid "Print meta description"
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: vkExUnit_admin.php:66
|
780 |
-
msgid "Print meta description to html head."
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: vkExUnit_admin.php:75
|
784 |
-
msgid "Choose Rewrite the print title tag"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: vkExUnit_admin.php:80
|
788 |
-
msgid "Rewrite the print title tag"
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: vkExUnit_admin.php:84
|
792 |
-
msgid "Print is rewritten by its own rules to html head."
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: vkExUnit_admin.php:93
|
796 |
-
msgid "Choose Social media cooperation."
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: vkExUnit_admin.php:98
|
800 |
-
msgid "Social media cooperation."
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: vkExUnit_admin.php:105 vkExUnit_admin.php:139
|
804 |
-
msgid "Setting"
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
#: vkExUnit_admin.php:115
|
808 |
-
msgid "Print og tags to html head."
|
809 |
-
msgstr ""
|
810 |
-
|
811 |
-
#: vkExUnit_admin.php:116
|
812 |
-
msgid "Print twitter card tags to html head."
|
813 |
-
msgstr ""
|
814 |
-
|
815 |
-
#: vkExUnit_admin.php:117
|
816 |
-
msgid "Print social bookmarks."
|
817 |
-
msgstr ""
|
818 |
-
|
819 |
-
#: vkExUnit_admin.php:118
|
820 |
-
msgid "Facebook Page Plugin."
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: vkExUnit_admin.php:128
|
824 |
-
msgid "Choose Print Google Analytics tracking code."
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: vkExUnit_admin.php:147
|
828 |
-
msgid "Print Google Analytics tracking code."
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: vkExUnit_admin.php:156
|
832 |
-
msgid "Choose Related posts."
|
833 |
-
msgstr ""
|
834 |
-
|
835 |
-
#: vkExUnit_admin.php:165
|
836 |
-
msgid "Print Related posts lists to post content bottom."
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: vkExUnit_admin.php:174 vkExUnit_admin.php:192
|
840 |
-
msgid "Choose other widgets."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: vkExUnit_admin.php:179
|
844 |
-
msgid "Other Widgets"
|
845 |
-
msgstr ""
|
846 |
-
|
847 |
-
#: vkExUnit_admin.php:183
|
848 |
-
msgid "You can use various widgets."
|
849 |
-
msgstr ""
|
850 |
-
|
851 |
-
#: vkExUnit_admin.php:197
|
852 |
-
msgid "CSS customize"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: vkExUnit_admin.php:201
|
856 |
-
msgid "You can set Customize CSS."
|
857 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-08 13:40+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"
|
|
|
|
|
|
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
#: admin_wrapper.php:7 admin_wrapper.php:8
|
18 |
+
#: plugins/meta_keyword/meta_keyword.php:84
|
19 |
msgid "Main setting"
|
20 |
msgstr ""
|
21 |
|
28 |
msgid "Not found"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: common_helpers.php:138 common_helpers.php:202
|
32 |
#, php-format
|
33 |
msgid "Page of %s"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: common_helpers.php:162 common_helpers.php:170
|
37 |
#, php-format
|
38 |
msgid "About %s"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: common_helpers.php:174 common_helpers.php:223
|
|
|
42 |
msgid "Y"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: common_helpers.php:175 common_helpers.php:179 common_helpers.php:183
|
46 |
+
#: common_helpers.php:187
|
47 |
#, php-format
|
|
|
48 |
msgid "Article of %s."
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: common_helpers.php:178 common_helpers.php:225
|
|
|
52 |
msgid "F Y"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: common_helpers.php:221
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
#, php-format
|
57 |
msgid "Author: %s"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: common_helpers.php:227
|
|
|
61 |
msgid "F j, Y"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: common_helpers.php:230
|
|
|
65 |
msgid "Asides"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: common_helpers.php:232
|
|
|
69 |
msgid "Galleries"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: common_helpers.php:234
|
|
|
73 |
msgid "Images"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: common_helpers.php:236
|
|
|
77 |
msgid "Videos"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: common_helpers.php:238
|
|
|
81 |
msgid "Quotes"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: common_helpers.php:240
|
|
|
85 |
msgid "Links"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: common_helpers.php:242
|
|
|
89 |
msgid "Statuses"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: common_helpers.php:244
|
|
|
93 |
msgid "Audio"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: common_helpers.php:246
|
|
|
97 |
msgid "Chats"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: common_helpers.php:262 plugins/other_widget/old/widget-taxonomy-list.php:81
|
101 |
msgid "Archives"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:251
|
105 |
+
msgid "Select all"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:251
|
109 |
+
msgid "Function"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:251
|
113 |
+
msgid "Description"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: vkExUnit_admin.php:21
|
117 |
+
msgid "Choose Print Bootstrap css"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: vkExUnit_admin.php:26
|
121 |
+
msgid "Print Bootstrap css and js"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: vkExUnit_admin.php:30
|
125 |
+
msgid ""
|
126 |
+
"If your using theme has already including Bootstrap, you deactivate this "
|
127 |
+
"item."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: vkExUnit_admin.php:39
|
131 |
+
msgid "Choose Print link fontawesome."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: vkExUnit_admin.php:44
|
135 |
+
msgid "Print link fontawesome."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: vkExUnit_admin.php:48
|
139 |
+
msgid "Print fontawesome link tag to html head."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: vkExUnit_admin.php:57 vkExUnit_admin.php:111
|
143 |
+
msgid "Choose Print meta description."
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: vkExUnit_admin.php:62
|
147 |
+
msgid "Favicon setting"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: vkExUnit_admin.php:66
|
151 |
+
msgid "About favicon."
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: vkExUnit_admin.php:75
|
155 |
+
msgid "Choose Rewrite the title tag"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: vkExUnit_admin.php:80
|
159 |
+
msgid "Rewrite the title tag"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: vkExUnit_admin.php:84
|
163 |
+
msgid "Print is rewritten by its own rules to html head."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: vkExUnit_admin.php:93
|
167 |
+
msgid "Choose Print meta Keyword."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: vkExUnit_admin.php:98
|
171 |
+
msgid "Print meta Keyword"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: vkExUnit_admin.php:102
|
175 |
+
msgid "Print meta Keyword to html head."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: vkExUnit_admin.php:116
|
179 |
+
msgid "Print meta description"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: vkExUnit_admin.php:120
|
183 |
+
msgid "Print meta description to html head."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: vkExUnit_admin.php:128
|
187 |
+
msgid "Choose Social media cooperation."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: vkExUnit_admin.php:133
|
191 |
+
msgid "Social media cooperation."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: vkExUnit_admin.php:140 vkExUnit_admin.php:174
|
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:151
|
203 |
+
msgid "Print twitter card tags to html head."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: vkExUnit_admin.php:152
|
207 |
+
msgid "Print social bookmarks."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: vkExUnit_admin.php:153
|
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:182
|
219 |
+
msgid "Print Google Analytics tracking code."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: vkExUnit_admin.php:191
|
223 |
+
msgid "Choose Related posts."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: vkExUnit_admin.php:196 plugins/related_posts/related_posts.php:34
|
227 |
+
msgid "Related posts"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: vkExUnit_admin.php:200
|
231 |
+
msgid "Print Related posts lists to post content bottom."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: vkExUnit_admin.php:209 vkExUnit_admin.php:234
|
235 |
+
msgid "Choose other widgets."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: vkExUnit_admin.php:214
|
239 |
+
msgid "Other Widgets"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: vkExUnit_admin.php:218
|
243 |
+
msgid "You can use various widgets."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: vkExUnit_admin.php:220
|
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:221
|
253 |
+
msgid ""
|
254 |
+
"VK_Page content to widget - display the contents of the page to the widgets."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: vkExUnit_admin.php:222
|
258 |
+
msgid "VK_Profile - display the profile entered in the widget."
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: vkExUnit_admin.php:223
|
262 |
+
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: vkExUnit_admin.php:224
|
266 |
+
msgid "VK_3PR area - display the 3PR area."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: vkExUnit_admin.php:239
|
270 |
+
msgid "CSS customize"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: vkExUnit_admin.php:243
|
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 ""
|
280 |
+
|
281 |
+
#: plugins/icons.php:59
|
282 |
+
msgid "Favicon Setting"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: plugins/icons.php:61
|
286 |
+
msgid "Choose icon"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: plugins/icons.php:62
|
290 |
+
msgid "Please upload your \".ico\" file"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
#: plugins/css_customize/css_customize-edit.php:2
|
294 |
#: plugins/css_customize/css_customize.php:35
|
295 |
#: plugins/css_customize/css_customize.php:36
|
324 |
"the site."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/sns_admin.php:50
|
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
|
331 |
msgid "ex) "
|
332 |
msgstr ""
|
333 |
|
349 |
msgid "To output both types"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: plugins/meta_description/meta_description.php:7
|
353 |
+
#: plugins/meta_description/meta_description.php:19
|
354 |
+
msgid "Meta Description"
|
|
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: plugins/meta_description/meta_description.php:25
|
358 |
msgid ""
|
359 |
+
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
360 |
+
"page will be reflected in the description of the meta tag."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: plugins/meta_description/meta_description.php:26
|
|
|
364 |
msgid ""
|
365 |
+
"Description of meta tags in the search results screen of search sites such "
|
366 |
+
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
367 |
+
"excerpt column is blank, is 240 characters than text beginning of a sentence "
|
368 |
+
"has become a specification that is applied as a description."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: plugins/meta_description/meta_description.php:27
|
|
|
|
|
|
|
|
|
|
|
372 |
msgid ""
|
373 |
+
"The meta description of the top page is subject to the catchphrase of the "
|
374 |
+
"site. However, its contents will be reflected if the excerpt is entered in "
|
375 |
+
"fixed page that was set on the top page."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: plugins/meta_description/meta_description.php:28
|
379 |
+
msgid ""
|
380 |
+
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
381 |
+
"each article edit page, and check the expert column display."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: plugins/meta_keyword/meta_keyword.php:28
|
385 |
+
#: plugins/meta_keyword/meta_keyword.php:74
|
386 |
+
#: plugins/meta_keyword/meta_keyword.php:75
|
387 |
+
#: plugins/meta_keyword/meta_keyword.php:82
|
388 |
+
msgid "Meta Keywords"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: plugins/meta_keyword/meta_keyword.php:54
|
392 |
+
msgid "Meta Keyword"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: plugins/meta_keyword/meta_keyword.php:57
|
396 |
+
msgid "Common Keywords"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: plugins/meta_keyword/meta_keyword.php:58
|
400 |
+
msgid ""
|
401 |
+
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
402 |
+
"if you want multiple keywords, enter with separator of \",\"."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: plugins/meta_keyword/meta_keyword.php:61
|
406 |
+
msgid "This is not seriously, Because the SearchEngine does not care this."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: plugins/meta_keyword/meta_keyword.php:62
|
410 |
+
msgid ""
|
411 |
+
"For each page individual keyword is enter at the edit screen of each "
|
412 |
+
"article. 10 keywords maximum, together with a each article keywords is "
|
413 |
+
"desirable."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: plugins/meta_keyword/meta_keyword.php:63
|
417 |
+
msgid "\",\" separator at end of the last keyword is do not need."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: plugins/meta_keyword/meta_keyword.php:64
|
421 |
+
msgid "Example: WordPress,template,theme,free,GPL"
|
|
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: plugins/meta_keyword/meta_keyword.php:83
|
425 |
+
msgid ""
|
426 |
+
"To distinguish between individual keywords, please enter a , delimiter "
|
427 |
+
"(optional)."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: plugins/meta_keyword/meta_keyword.php:85
|
431 |
+
#, php-format
|
432 |
+
msgid "* keywords common to the entire site can be set from %s."
|
433 |
msgstr ""
|
434 |
|
435 |
#: plugins/other_widget/widget-3pr-area.php:11
|
437 |
msgstr ""
|
438 |
|
439 |
#: plugins/other_widget/widget-3pr-area.php:13
|
440 |
+
#: plugins/other_widget/widget-3pr-area.php:245
|
441 |
+
#: plugins/other_widget/widget-3pr-area.php:287
|
442 |
+
#: plugins/other_widget/widget-3pr-area.php:330
|
443 |
msgid "3PR area"
|
444 |
msgstr ""
|
445 |
|
520 |
msgid "3PR area3 setting"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: plugins/other_widget/widget-3pr-area.php:274
|
524 |
+
#: plugins/other_widget/widget-3pr-area.php:316
|
525 |
+
#: plugins/other_widget/widget-3pr-area.php:359
|
526 |
msgid "Read more"
|
527 |
msgstr ""
|
528 |
|
544 |
msgid "Slug for the custom type you want to display"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: plugins/other_widget/widget-page.php:11
|
548 |
+
msgid "Displays a page contents to widget."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: plugins/other_widget/widget-page.php:13
|
552 |
+
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"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: plugins/other_widget/widget-page.php:38
|
562 |
+
#: plugins/other_widget/old/widget-page-content.php:38
|
563 |
+
msgid "display title"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: plugins/other_widget/widget-page.php:60
|
567 |
+
#: plugins/other_widget/old/widget-page-content.php:61
|
568 |
+
msgid "Edit"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
#: plugins/other_widget/widget-profile.php:11
|
572 |
msgid "Displays a your profile"
|
573 |
msgstr ""
|
621 |
msgid "Site's Profile"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: plugins/other_widget/old/widget-archive-list.php:12
|
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/old/widget-archive-list.php:14
|
631 |
+
msgid "archive list"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: plugins/other_widget/old/widget-archive-list.php:49
|
635 |
+
#: plugins/other_widget/old/widget-archive-list.php:50
|
636 |
+
msgid "Monthly archives"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: plugins/other_widget/old/widget-archive-list.php:59
|
640 |
+
msgid "Title"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: plugins/other_widget/old/widget-archive-list.php:63
|
644 |
+
msgid "Post type"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: plugins/other_widget/old/widget-child-page-list.php:9
|
648 |
+
msgid "Displays list of child page for the current page."
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: plugins/other_widget/old/widget-child-page-list.php:11
|
652 |
+
msgid "child pages list"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: plugins/other_widget/old/widget-page-content.php:10
|
656 |
+
msgid "Displays the content of a chosen page."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: plugins/other_widget/old/widget-page-content.php:12
|
660 |
+
msgid "page content for top"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: plugins/other_widget/old/widget-rss-widget.php:9
|
664 |
+
msgid "Displays entries list from a RSS feed link."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: plugins/other_widget/old/widget-rss-widget.php:11
|
668 |
+
msgid "RSS entries for top"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: plugins/other_widget/old/widget-rss-widget.php:25
|
672 |
+
msgid "Blog entries"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: plugins/other_widget/old/widget-rss-widget.php:30
|
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
|
721 |
msgid "Follow me!"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: plugins/sns/sns.php:19
|
725 |
+
msgid "SNS"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: plugins/sns/sns_admin.php:1
|
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:34 plugins/sns/old/sns_admin.php:28
|
755 |
msgid "I will check and get the application ID"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: plugins/sns/sns_admin.php:35 plugins/sns/old/sns_admin.php:29
|
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:36 plugins/sns/old/sns_admin.php:30
|
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:40
|
771 |
+
msgid "facebook page URL"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: plugins/sns/sns_admin.php:45
|
775 |
+
msgid "OG default image"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: plugins/sns/sns_admin.php:46 plugins/sns/old/sns_admin.php:57
|
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:47 plugins/sns/old/sns_admin.php:58
|
785 |
+
msgid "If a featured image is specified for the page, it takes precedence."
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: plugins/sns/sns_admin.php:49 plugins/sns/old/sns_admin.php:60
|
789 |
+
msgid "Select an image"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: plugins/sns/sns_admin.php:51 plugins/sns/old/sns_admin.php:62
|
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:55
|
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 ""
|
805 |
+
|
806 |
+
#: plugins/sns/old/sns_admin.php:12
|
807 |
+
msgid "Social media"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: plugins/sns/old/sns_admin.php:13
|
811 |
+
msgid "If you are unsure, you can leave for later."
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: plugins/sns/old/sns_admin.php:18
|
815 |
+
msgid ""
|
816 |
+
"If you wish to link to a personal account or a Facebook page banner will be "
|
817 |
+
"displayed if you enter the URL."
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
#: plugins/sns/old/sns_admin.php:35
|
821 |
msgid "Facebook user ID (optional)"
|
822 |
msgstr ""
|
865 |
msgid "OGP default image"
|
866 |
msgstr ""
|
867 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
868 |
#: plugins/sns/old/sns_admin.php:67
|
869 |
msgid "Social buttons"
|
870 |
msgstr ""
|
873 |
msgid "Please check the type of page that displays the social button."
|
874 |
msgstr ""
|
875 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
876 |
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
877 |
msgid ""
|
878 |
"Within the type of page that is checked, if there is a particular page you "
|
896 |
msgid "* Please be sure to set Facebook application ID."
|
897 |
msgstr ""
|
898 |
|
|
|
|
|
|
|
|
|
|
|
899 |
#: plugins/sns/old/sns_admin.php:113
|
900 |
msgid "URL of the Facebook page."
|
901 |
msgstr ""
|
937 |
#: plugins/sns/old/sns_admin.php:149
|
938 |
msgid "Page top"
|
939 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
plugins/auto_eyecatch.php
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class vExUnit_eyecatch {
|
4 |
+
private static $instance;
|
5 |
+
|
6 |
+
public static $allowed_post_types = array( 'post', 'page' );
|
7 |
+
|
8 |
+
public static function instance() {
|
9 |
+
if ( isset( self::$instance ) )
|
10 |
+
return self::$instance;
|
11 |
+
|
12 |
+
self::$instance = new vExUnit_eyecatch;
|
13 |
+
self::$instance->run_init();
|
14 |
+
return self::$instance;
|
15 |
+
}
|
16 |
+
|
17 |
+
|
18 |
+
private function __construct() {
|
19 |
+
}
|
20 |
+
|
21 |
+
|
22 |
+
protected function run_init() {
|
23 |
+
add_action('admin_menu', array($this, 'add_custom_field'));
|
24 |
+
add_action('save_post' , array($this, 'save_custom_field'));
|
25 |
+
add_filter('the_content', array($this, 'set_eyecatch' ), 1);
|
26 |
+
}
|
27 |
+
|
28 |
+
|
29 |
+
public function add_custom_field(){
|
30 |
+
|
31 |
+
foreach( self::$allowed_post_types as $post_type ){
|
32 |
+
add_meta_box('vkExUnit_EyeCatch', __('Automatic EyeCatch', 'vkExUnit'), array( $this, 'render_meta_box' ), $post_type, 'normal', 'high');
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
36 |
+
|
37 |
+
public function render_meta_box(){
|
38 |
+
global $post;
|
39 |
+
$disable_autoeyecatch = get_post_meta(get_the_id(), 'vkExUnit_EyeCatch_disable', true);
|
40 |
+
|
41 |
+
echo '<input type="hidden" name="_nonce_vkExUnit__custom_auto_eyecatch" id="_nonce_vkExUnit__custom_auto_eyecatch_noonce" value="'.wp_create_nonce(plugin_basename(__FILE__)).'" />';
|
42 |
+
echo '<label ><input type="checkbox" name="vkExUnit_auto_eyecatch" value="true" ' . ( ($disable_autoeyecatch)? 'checked' : '' ) . ' />'.__("Do not set eyecatch image automatic.", 'vkExUnit').'</label>';
|
43 |
+
|
44 |
+
}
|
45 |
+
|
46 |
+
|
47 |
+
public function save_custom_field($post_id){
|
48 |
+
|
49 |
+
$metaKeyword = isset($_POST['_nonce_vkExUnit__custom_auto_eyecatch']) ? htmlspecialchars($_POST['_nonce_vkExUnit__custom_auto_eyecatch']) : null;
|
50 |
+
|
51 |
+
$keyword = get_post_meta($post_id, 'vkExUnit_metaKeyword', true);
|
52 |
+
|
53 |
+
// if autosave then deny
|
54 |
+
if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
|
55 |
+
return $post_id;
|
56 |
+
|
57 |
+
if(!wp_verify_nonce($metaKeyword, plugin_basename(__FILE__))){
|
58 |
+
return $post_id;
|
59 |
+
}
|
60 |
+
|
61 |
+
delete_post_meta($post_id, 'vkExUnit_EyeCatch_disable');
|
62 |
+
if( isset($_POST['vkExUnit_auto_eyecatch']) && $_POST['vkExUnit_auto_eyecatch'] ){
|
63 |
+
add_post_meta($post_id, 'vkExUnit_EyeCatch_disable', true );
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
|
68 |
+
public static function is_my_turn(){
|
69 |
+
|
70 |
+
if(get_the_id()){
|
71 |
+
|
72 |
+
if( in_array( get_post_type(get_the_id()), self::$allowed_post_types ) ){
|
73 |
+
|
74 |
+
if( has_post_thumbnail( get_the_id() ) ){
|
75 |
+
|
76 |
+
if(!get_post_meta( get_the_id(), 'vkExUnit_EyeCatch_disable', true) ){
|
77 |
+
|
78 |
+
return true;
|
79 |
+
}
|
80 |
+
}
|
81 |
+
}
|
82 |
+
}
|
83 |
+
|
84 |
+
return false;
|
85 |
+
}
|
86 |
+
|
87 |
+
|
88 |
+
public function set_eyecatch($content){
|
89 |
+
|
90 |
+
if( !self::is_my_turn() ){ return $content; }
|
91 |
+
|
92 |
+
$imageHtml = self::render_eyecatch( get_the_id() );
|
93 |
+
|
94 |
+
$content = $imageHtml . $content;
|
95 |
+
|
96 |
+
return $content;
|
97 |
+
}
|
98 |
+
|
99 |
+
|
100 |
+
public function render_eyecatch($post_id){
|
101 |
+
$html = '';
|
102 |
+
|
103 |
+
$image_tag = get_the_post_thumbnail( $post_id, 'large' );
|
104 |
+
|
105 |
+
$html = <<<EOF
|
106 |
+
<div class="autoEyeCatchBox">{$image_tag}</div>
|
107 |
+
EOF;
|
108 |
+
return $html;
|
109 |
+
}
|
110 |
+
|
111 |
+
}
|
112 |
+
|
113 |
+
vExUnit_eyecatch::instance();
|
plugins/icons.php
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class vExUnit_icons {
|
4 |
+
// singleton instance
|
5 |
+
private static $instance;
|
6 |
+
|
7 |
+
public static function instance() {
|
8 |
+
if ( isset( self::$instance ) )
|
9 |
+
return self::$instance;
|
10 |
+
|
11 |
+
self::$instance = new vExUnit_icons;
|
12 |
+
self::$instance->run_init();
|
13 |
+
return self::$instance;
|
14 |
+
}
|
15 |
+
|
16 |
+
private function __construct() {
|
17 |
+
}
|
18 |
+
|
19 |
+
protected function run_init() {
|
20 |
+
add_action('admin_init', array($this, 'option_init' ));
|
21 |
+
add_action('wp_head', array($this, 'output_tag' ));
|
22 |
+
}
|
23 |
+
|
24 |
+
public function option_init() {
|
25 |
+
vkExUnit_register_setting(
|
26 |
+
__('icon setting', 'vkExUnit'), // tab label.
|
27 |
+
'vkExUnit_icon_settings', // name attr
|
28 |
+
array( $this, 'sanitize_config' ), // sanitaise function name
|
29 |
+
array( $this, 'render_configPage' ) // setting_page function name
|
30 |
+
);
|
31 |
+
}
|
32 |
+
|
33 |
+
public static function get_default_option(){
|
34 |
+
$option = '';
|
35 |
+
return $option;
|
36 |
+
}
|
37 |
+
|
38 |
+
public function sanitize_config( $option ){
|
39 |
+
|
40 |
+
$output = self::get_default_option();
|
41 |
+
$output = $option;
|
42 |
+
return $output;
|
43 |
+
}
|
44 |
+
|
45 |
+
|
46 |
+
public static function get_option(){
|
47 |
+
return get_option( 'vkExUnit_icon_settings', self::get_default_option() );
|
48 |
+
}
|
49 |
+
|
50 |
+
|
51 |
+
public function render_configPage(){
|
52 |
+
$options = self::get_option();
|
53 |
+
?>
|
54 |
+
<h3><?php _e('icon setting', 'vkExUnit'); ?></h3>
|
55 |
+
<div id="on_setting" class="sectionBox">
|
56 |
+
<table class="form-table">
|
57 |
+
<!-- Favicon -->
|
58 |
+
<tr>
|
59 |
+
<th><?php _e('Favicon Setting', 'vkExUnit'); ?></th>
|
60 |
+
<td><input type="text" name="vkExUnit_icon_settings" id="favicon" value="<?php echo $options ?>" style="width:60%;" />
|
61 |
+
<button id="media_favicon" class="media_btn button button-default"><?php _e('Choose icon', 'vkExUnit'); ?></button>
|
62 |
+
<p><?php _e('Please upload your ".ico" file','vkExUnit'); ?></p>
|
63 |
+
</td>
|
64 |
+
</tr>
|
65 |
+
</table>
|
66 |
+
<p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="変更を保存" /></p>
|
67 |
+
</div>
|
68 |
+
<?php
|
69 |
+
}
|
70 |
+
|
71 |
+
|
72 |
+
public function output_tag(){
|
73 |
+
$options = self::get_option();
|
74 |
+
if(isset($options) && $options){
|
75 |
+
echo '<link rel="SHORTCUT ICON" HREF="'.$options.'" />';
|
76 |
+
}
|
77 |
+
}
|
78 |
+
|
79 |
+
}
|
80 |
+
|
81 |
+
vExUnit_icons::instance();
|
plugins/meta_description/meta_description.php
CHANGED
@@ -21,11 +21,11 @@ function vkExUnit_add_description_options_page(){
|
|
21 |
<table class="form-table">
|
22 |
<tr><th>ディスクリプション</th>
|
23 |
<td>
|
24 |
-
|
25 |
-
meta
|
26 |
-
|
27 |
-
|
28 |
-
*
|
29 |
</td></tr>
|
30 |
</table>
|
31 |
</div>
|
21 |
<table class="form-table">
|
22 |
<tr><th>ディスクリプション</th>
|
23 |
<td>
|
24 |
+
|
25 |
+
<?php _e('What you have to complete the "excerpt" column of the edit screen of each page will be reflected in the description of the meta tag.','vkExUnit') ?><br/>
|
26 |
+
<?php _e('Description of meta tags in the search results screen of search sites such as Google, will be Displayed, such as the bottom of the site title. If the excerpt column is blank, is 240 characters than text beginning of a sentence has become a specification that is applied as a description.','vkExUnit') ?><br/>
|
27 |
+
<?php _e('The meta description of the top page is subject to the catchphrase of the site. However, its contents will be reflected if the excerpt is entered in fixed page that was set on the top page.','vkExUnit') ?><br/>
|
28 |
+
* <?php _e('If "excerpt" column is not found, Click "Display Option" of page top at each article edit page, and check the expert column display.','vkExUnit') ?><br/>
|
29 |
</td></tr>
|
30 |
</table>
|
31 |
</div>
|
plugins/meta_keyword/meta_keyword.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class
|
4 |
// singleton instance
|
5 |
private static $instance;
|
6 |
|
@@ -8,7 +8,7 @@ class vExUnit_meta_description {
|
|
8 |
if ( isset( self::$instance ) )
|
9 |
return self::$instance;
|
10 |
|
11 |
-
self::$instance = new
|
12 |
self::$instance->run_init();
|
13 |
return self::$instance;
|
14 |
}
|
@@ -25,10 +25,10 @@ class vExUnit_meta_description {
|
|
25 |
|
26 |
public function option_init() {
|
27 |
vkExUnit_register_setting(
|
28 |
-
__('Meta Keywords', 'vkExUnit'),
|
29 |
-
'vkExUnit_common_keywords',
|
30 |
-
array( $this, 'sanitize_config' ),
|
31 |
-
array( $this, 'render_configPage' )
|
32 |
);
|
33 |
}
|
34 |
|
@@ -51,16 +51,17 @@ class vExUnit_meta_description {
|
|
51 |
|
52 |
public function render_configPage(){
|
53 |
?>
|
54 |
-
<h3><?php _e('Meta
|
55 |
-
<div id="
|
56 |
<table class="form-table">
|
57 |
-
<tr><th
|
58 |
-
<td
|
59 |
<input type="text" name="vkExUnit_common_keywords" id="commonKeyWords" value="<?php echo self::get_option(); ?>" style="width:90%;" /><br />
|
60 |
-
|
61 |
-
*
|
62 |
-
*
|
63 |
-
|
|
|
64 |
</table>
|
65 |
<p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="変更を保存" /></p>
|
66 |
</div>
|
@@ -80,15 +81,15 @@ class vExUnit_meta_description {
|
|
80 |
echo '<input type="hidden" name="_nonce_vkExUnit__custom_field_metaKeyword" id="_nonce_vkExUnit__custom_field_metaKeyword" value="'.wp_create_nonce(plugin_basename(__FILE__)).'" />';
|
81 |
echo '<label class="hidden" for="vkExUnit_metaKeyword">'.__('Meta Keywords', 'biz-vektor').'</label><input type="text" id="vkExUnit_metaKeyword" name="vkExUnit_metaKeyword" size="50" value="'.get_post_meta($post->ID, 'vkExUnit_metaKeyword', true).'" />';
|
82 |
echo '<p>'.__('To distinguish between individual keywords, please enter a , delimiter (optional).', 'vkExUnit').'<br />';
|
83 |
-
$theme_option_seo_link = '<a href="'.get_admin_url().'/
|
84 |
-
sprintf(__('* keywords common to the entire site can be set from %s.', 'vkExUnit'),$theme_option_seo_link);
|
85 |
echo '</p>';
|
86 |
}
|
87 |
|
88 |
public function save_custom_field($post_id){
|
89 |
$metaKeyword = isset($_POST['_nonce_vkExUnit__custom_field_metaKeyword']) ? htmlspecialchars($_POST['_nonce_vkExUnit__custom_field_metaKeyword']) : null;
|
90 |
|
91 |
-
//
|
92 |
if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
|
93 |
return $post_id;
|
94 |
|
@@ -114,6 +115,7 @@ class vExUnit_meta_description {
|
|
114 |
|
115 |
public function get_postKeyword(){
|
116 |
$post_id = get_the_id();
|
|
|
117 |
if(empty($post_id))
|
118 |
return null;
|
119 |
|
@@ -136,5 +138,4 @@ class vExUnit_meta_description {
|
|
136 |
|
137 |
}
|
138 |
|
139 |
-
|
140 |
-
|
1 |
<?php
|
2 |
|
3 |
+
class vExUnit_meta_keywords {
|
4 |
// singleton instance
|
5 |
private static $instance;
|
6 |
|
8 |
if ( isset( self::$instance ) )
|
9 |
return self::$instance;
|
10 |
|
11 |
+
self::$instance = new vExUnit_meta_keywords;
|
12 |
self::$instance->run_init();
|
13 |
return self::$instance;
|
14 |
}
|
25 |
|
26 |
public function option_init() {
|
27 |
vkExUnit_register_setting(
|
28 |
+
__('Meta Keywords', 'vkExUnit'), // tab label.
|
29 |
+
'vkExUnit_common_keywords', // name attr
|
30 |
+
array( $this, 'sanitize_config' ), // sanitaise function name
|
31 |
+
array( $this, 'render_configPage' ) // setting_page function name
|
32 |
);
|
33 |
}
|
34 |
|
51 |
|
52 |
public function render_configPage(){
|
53 |
?>
|
54 |
+
<h3><?php _e('Meta Keyword', 'vkExUnit'); ?></h3>
|
55 |
+
<div id="meta_keyword" class="sectionBox">
|
56 |
<table class="form-table">
|
57 |
+
<tr><th><?php _e('Common Keywords','vkExUnit'); ?></th>
|
58 |
+
<td><?php _e('Keywords for meta tag. This words will set Meta Keyword with post keywords. if you want multiple keywords, enter with separator of ",".','vkExUnit'); ?><br />
|
59 |
<input type="text" name="vkExUnit_common_keywords" id="commonKeyWords" value="<?php echo self::get_option(); ?>" style="width:90%;" /><br />
|
60 |
+
|
61 |
+
* <?php _e('This is not seriously, Because the SearchEngine does not care this.','vkExUnit') ?><br/>
|
62 |
+
* <?php _e('For each page individual keyword is enter at the edit screen of each article. 10 keywords maximum, together with a each article keywords is desirable.','vkExUnit') ?><br/>
|
63 |
+
* <?php _e('"," separator at end of the last keyword is do not need.','vkExUnit') ?><br/>
|
64 |
+
<?php _e('Example: WordPress,template,theme,free,GPL','vkExUnit'); ?></td></tr>
|
65 |
</table>
|
66 |
<p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="変更を保存" /></p>
|
67 |
</div>
|
81 |
echo '<input type="hidden" name="_nonce_vkExUnit__custom_field_metaKeyword" id="_nonce_vkExUnit__custom_field_metaKeyword" value="'.wp_create_nonce(plugin_basename(__FILE__)).'" />';
|
82 |
echo '<label class="hidden" for="vkExUnit_metaKeyword">'.__('Meta Keywords', 'biz-vektor').'</label><input type="text" id="vkExUnit_metaKeyword" name="vkExUnit_metaKeyword" size="50" value="'.get_post_meta($post->ID, 'vkExUnit_metaKeyword', true).'" />';
|
83 |
echo '<p>'.__('To distinguish between individual keywords, please enter a , delimiter (optional).', 'vkExUnit').'<br />';
|
84 |
+
$theme_option_seo_link = '<a href="'.get_admin_url().'/admin.php?page=vkExUnit_main_setting#vkExUnit_common_keywords" target="_blank">'.vkExUnit_get_name().' '.__('Main setting', 'vkExUnit').'</a>';
|
85 |
+
echo sprintf(__('* keywords common to the entire site can be set from %s.', 'vkExUnit'),$theme_option_seo_link);
|
86 |
echo '</p>';
|
87 |
}
|
88 |
|
89 |
public function save_custom_field($post_id){
|
90 |
$metaKeyword = isset($_POST['_nonce_vkExUnit__custom_field_metaKeyword']) ? htmlspecialchars($_POST['_nonce_vkExUnit__custom_field_metaKeyword']) : null;
|
91 |
|
92 |
+
// if autosave is to deny
|
93 |
if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
|
94 |
return $post_id;
|
95 |
|
115 |
|
116 |
public function get_postKeyword(){
|
117 |
$post_id = get_the_id();
|
118 |
+
|
119 |
if(empty($post_id))
|
120 |
return null;
|
121 |
|
138 |
|
139 |
}
|
140 |
|
141 |
+
vExUnit_meta_keywords::instance();
|
|
plugins/other_widget/js/widget-3pr-uploader.js
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
//
|
2 |
function clickClear3pr(value){
|
3 |
(function ($) {
|
4 |
-
$(value).siblings('.
|
5 |
-
$(value).siblings('.
|
6 |
-
$(value).parent('p').next('.media.
|
7 |
})(jQuery);
|
8 |
}
|
9 |
|
10 |
-
//
|
11 |
function clickSelect3pr(value){
|
12 |
(function ($) {
|
13 |
|
14 |
var custom_uploader,
|
15 |
-
$imageUrl = $(value).siblings('.
|
16 |
-
$imageAlt = $(value).siblings('.
|
17 |
-
$mediaWrap = $(value).parent('p').next('.media.
|
18 |
|
19 |
if (custom_uploader) {
|
20 |
custom_uploader.open();
|
@@ -39,7 +39,7 @@ function clickSelect3pr(value){
|
|
39 |
$imageUrl.val(file.toJSON().url);
|
40 |
$imageAlt.val(file.toJSON().title);
|
41 |
|
42 |
-
$mediaWrap.append('<img class="
|
43 |
});
|
44 |
});
|
45 |
custom_uploader.open();
|
@@ -47,23 +47,23 @@ function clickSelect3pr(value){
|
|
47 |
})(jQuery);
|
48 |
}
|
49 |
|
50 |
-
//
|
51 |
function clickClear3prSP(value){
|
52 |
(function ($) {
|
53 |
-
$(value).siblings('.
|
54 |
-
$(value).siblings('.
|
55 |
-
$(value).parent('p').next('.media.
|
56 |
})(jQuery);
|
57 |
}
|
58 |
|
59 |
-
//
|
60 |
function clickSelect3prSP(value){
|
61 |
(function ($) {
|
62 |
|
63 |
var custom_uploader,
|
64 |
-
$imageUrl = $(value).siblings('.
|
65 |
-
$imageAlt = $(value).siblings('.
|
66 |
-
$mediaWrap = $(value).parent('p').next('.media.
|
67 |
|
68 |
if (custom_uploader) {
|
69 |
custom_uploader.open();
|
@@ -88,7 +88,7 @@ function clickSelect3prSP(value){
|
|
88 |
$imageUrl.val(file.toJSON().url);
|
89 |
$imageAlt.val(file.toJSON().title);
|
90 |
|
91 |
-
$mediaWrap.append('<img class="
|
92 |
});
|
93 |
});
|
94 |
custom_uploader.open();
|
1 |
+
// ClearBtn for pcImage
|
2 |
function clickClear3pr(value){
|
3 |
(function ($) {
|
4 |
+
$(value).siblings('.media_image_3pr_pc').val('');
|
5 |
+
$(value).siblings('.media_alt_3pr_pc').val('');
|
6 |
+
$(value).parent('p').next('.media.image_3pr').empty();
|
7 |
})(jQuery);
|
8 |
}
|
9 |
|
10 |
+
// SelectBtn for pcImage
|
11 |
function clickSelect3pr(value){
|
12 |
(function ($) {
|
13 |
|
14 |
var custom_uploader,
|
15 |
+
$imageUrl = $(value).siblings('.media_image_3pr_pc'),
|
16 |
+
$imageAlt = $(value).siblings('.media_alt_3pr_pc'),
|
17 |
+
$mediaWrap = $(value).parent('p').next('.media.image_3pr');
|
18 |
|
19 |
if (custom_uploader) {
|
20 |
custom_uploader.open();
|
39 |
$imageUrl.val(file.toJSON().url);
|
40 |
$imageAlt.val(file.toJSON().title);
|
41 |
|
42 |
+
$mediaWrap.append('<img class="media_image 3pr_image" src="'+ file.toJSON().url +'" alt="'+ file.toJSON().title +'" />');
|
43 |
});
|
44 |
});
|
45 |
custom_uploader.open();
|
47 |
})(jQuery);
|
48 |
}
|
49 |
|
50 |
+
// ClearBtn for spImage
|
51 |
function clickClear3prSP(value){
|
52 |
(function ($) {
|
53 |
+
$(value).siblings('.media_image_3pr_sp').val('');
|
54 |
+
$(value).siblings('.media_alt_3pr_sp').val('');
|
55 |
+
$(value).parent('p').next('.media.image_3pr_sp').empty();
|
56 |
})(jQuery);
|
57 |
}
|
58 |
|
59 |
+
// ClearBtn for spImage
|
60 |
function clickSelect3prSP(value){
|
61 |
(function ($) {
|
62 |
|
63 |
var custom_uploader,
|
64 |
+
$imageUrl = $(value).siblings('.media_image_3pr_sp'),
|
65 |
+
$imageAlt = $(value).siblings('.media_alt_3pr_sp'),
|
66 |
+
$mediaWrap = $(value).parent('p').next('.media.image_3pr_sp');
|
67 |
|
68 |
if (custom_uploader) {
|
69 |
custom_uploader.open();
|
88 |
$imageUrl.val(file.toJSON().url);
|
89 |
$imageAlt.val(file.toJSON().title);
|
90 |
|
91 |
+
$mediaWrap.append('<img class="media_image image_3pr_sp" src="'+ file.toJSON().url +'" alt="'+ file.toJSON().title +'" />');
|
92 |
});
|
93 |
});
|
94 |
custom_uploader.open();
|
plugins/other_widget/js/widget-prof-uploader.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
function clickClear(value){
|
2 |
(function ($) {
|
3 |
-
$(value).siblings('.
|
4 |
-
$(value).siblings('.
|
5 |
$(value).parent('p').next('.media').empty();
|
6 |
})(jQuery);
|
7 |
}
|
@@ -9,8 +9,8 @@ function clickClear(value){
|
|
9 |
function clickSelect(value){
|
10 |
(function ($) {
|
11 |
var custom_uploader,
|
12 |
-
$imageUrl = $(value).siblings('.
|
13 |
-
$imageAlt = $(value).siblings('.
|
14 |
$mediaWrap = $(value).parent('p').next('.media');
|
15 |
|
16 |
if (custom_uploader) {
|
@@ -35,7 +35,7 @@ function clickSelect(value){
|
|
35 |
$imageUrl.val(file.toJSON().url);
|
36 |
$imageAlt.val(file.toJSON().title);
|
37 |
|
38 |
-
$mediaWrap.append('<img class="
|
39 |
});
|
40 |
});
|
41 |
custom_uploader.open();
|
1 |
function clickClear(value){
|
2 |
(function ($) {
|
3 |
+
$(value).siblings('.media_url').val('');
|
4 |
+
$(value).siblings('.media_alt').val('');
|
5 |
$(value).parent('p').next('.media').empty();
|
6 |
})(jQuery);
|
7 |
}
|
9 |
function clickSelect(value){
|
10 |
(function ($) {
|
11 |
var custom_uploader,
|
12 |
+
$imageUrl = $(value).siblings('.media_url'),
|
13 |
+
$imageAlt = $(value).siblings('.media_alt'),
|
14 |
$mediaWrap = $(value).parent('p').next('.media');
|
15 |
|
16 |
if (custom_uploader) {
|
35 |
$imageUrl.val(file.toJSON().url);
|
36 |
$imageAlt.val(file.toJSON().title);
|
37 |
|
38 |
+
$mediaWrap.append('<img class="media_image" src="'+ file.toJSON().url +'" alt="'+ file.toJSON().title +'" />');
|
39 |
});
|
40 |
});
|
41 |
custom_uploader.open();
|
plugins/other_widget/other_widget.php
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
<?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';
|
|
1 |
<?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';
|
plugins/other_widget/widget-3pr-area.php
CHANGED
@@ -15,189 +15,189 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
15 |
}
|
16 |
function form($instance){
|
17 |
$defaults = array(
|
18 |
-
'
|
19 |
-
'
|
20 |
-
'
|
21 |
-
'
|
22 |
-
'
|
23 |
-
'
|
24 |
-
'
|
25 |
|
26 |
-
'
|
27 |
-
'
|
28 |
-
'
|
29 |
-
'
|
30 |
-
'
|
31 |
-
'
|
32 |
-
'
|
33 |
|
34 |
-
'
|
35 |
-
'
|
36 |
-
'
|
37 |
-
'
|
38 |
-
'
|
39 |
-
'
|
40 |
-
'
|
41 |
);
|
42 |
$instance = wp_parse_args((array) $instance, $defaults);
|
43 |
?>
|
44 |
|
45 |
<?php // 3PR area 1 =========================================================== ?>
|
46 |
<?php // 3PR area 1 タイトル ?>
|
47 |
-
<h5 class="
|
48 |
<p>
|
49 |
-
<label for="<?php echo $this->get_field_id('
|
50 |
-
<input type="text" id="<?php echo $this->get_field_id('
|
51 |
</p>
|
52 |
|
53 |
<?php // 3PR area 1 メディアアップローダー PC ?>
|
54 |
<p>
|
55 |
-
<label for="<?php echo $this->get_field_id('
|
56 |
|
57 |
-
<input type="hidden" class="
|
58 |
|
59 |
-
<input type="hidden" class="
|
60 |
|
61 |
-
<input type="button" class="
|
62 |
-
<input type="button" class="
|
63 |
</p>
|
64 |
-
<div class="media
|
65 |
-
<?php if(!empty($instance['
|
66 |
-
<img class="
|
67 |
<?php endif; ?>
|
68 |
</div>
|
69 |
|
70 |
<?php // 3PR area 1 メディアアップローダー sp image ?>
|
71 |
<p>
|
72 |
-
<label for="<?php echo $this->get_field_id('
|
73 |
|
74 |
-
<input type="hidden" class="
|
75 |
|
76 |
-
<input type="hidden" class="
|
77 |
|
78 |
-
<input type="button" class="
|
79 |
-
<input type="button" class="
|
80 |
</p>
|
81 |
-
<div class="media
|
82 |
-
<?php if(!empty($instance['
|
83 |
-
<img class="
|
84 |
<?php endif; ?>
|
85 |
</div>
|
86 |
|
87 |
<?php // 概要テキスト ?>
|
88 |
-
<p><label for="<?php echo $this->get_field_id('
|
89 |
</p>
|
90 |
|
91 |
-
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('
|
92 |
|
93 |
<?php // リンク先_URL ?>
|
94 |
-
<p><label for="<?php echo $this->get_field_id('
|
95 |
-
<input type="text" id="<?php echo $this->get_field_id('
|
96 |
</p>
|
97 |
|
98 |
<hr /><?php // 3PR area 2 =================================================?>
|
99 |
<?php // 3PR area 2 タイトル ?>
|
100 |
-
<h5 class="
|
101 |
<p>
|
102 |
-
<label for="<?php echo $this->get_field_id('
|
103 |
-
<input type="text" id="<?php echo $this->get_field_id('
|
104 |
</p>
|
105 |
|
106 |
<?php // 3PR area 1 メディアアップローダー PC ?>
|
107 |
<p>
|
108 |
-
<label for="<?php echo $this->get_field_id('
|
109 |
|
110 |
-
<input type="hidden" class="
|
111 |
|
112 |
-
<input type="hidden" class="
|
113 |
|
114 |
-
<input type="button" class="
|
115 |
-
<input type="button" class="
|
116 |
</p>
|
117 |
|
118 |
-
<div class="media
|
119 |
-
<?php if(!empty($instance['
|
120 |
-
<img class="
|
121 |
<?php endif; ?>
|
122 |
</div>
|
123 |
|
124 |
<?php // 3PR area 2 メディアアップローダー sp ?>
|
125 |
<p>
|
126 |
-
<label for="<?php echo $this->get_field_id('
|
127 |
|
128 |
-
<input type="hidden" class="
|
129 |
|
130 |
-
<input type="hidden" class="
|
131 |
|
132 |
-
<input type="button" class="
|
133 |
-
<input type="button" class="
|
134 |
</p>
|
135 |
-
<div class="media
|
136 |
-
<?php if(!empty($instance['
|
137 |
-
<img class="
|
138 |
<?php endif; ?>
|
139 |
</div>
|
140 |
|
141 |
<?php //概要テキスト ?>
|
142 |
-
<p><label for="<?php echo $this->get_field_id('
|
143 |
-
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('
|
144 |
|
145 |
<?php //リンク先_URL ?>
|
146 |
-
<p><label for="<?php echo $this->get_field_id('
|
147 |
-
<input type="text" id="<?php echo $this->get_field_id('
|
148 |
</p>
|
149 |
|
150 |
<hr /><?php // 3PR area 3 =================================================?>
|
151 |
<?php // 3PR area 3 タイトル ?>
|
152 |
-
<h5 class="
|
153 |
<p>
|
154 |
-
<label for="<?php echo $this->get_field_id('
|
155 |
-
<input type="text" id="<?php echo $this->get_field_id('
|
156 |
</p>
|
157 |
|
158 |
<?php // 3PR area 1 メディアアップローダー PC ?>
|
159 |
<p>
|
160 |
-
<label for="<?php echo $this->get_field_id('
|
161 |
|
162 |
-
<input type="hidden" class="
|
163 |
|
164 |
-
<input type="hidden" class="
|
165 |
|
166 |
-
<input type="button" class="
|
167 |
-
<input type="button" class="
|
168 |
</p>
|
169 |
-
<div class="media
|
170 |
-
<?php if(!empty($instance['
|
171 |
-
<img class="
|
172 |
<?php endif; ?>
|
173 |
</div>
|
174 |
|
175 |
<?php // 3PR area 2 メディアアップローダー sp ?>
|
176 |
<p>
|
177 |
-
<label for="<?php echo $this->get_field_id('
|
178 |
|
179 |
-
<input type="hidden" class="
|
180 |
|
181 |
-
<input type="hidden" class="
|
182 |
|
183 |
-
<input type="button" class="
|
184 |
-
<input type="button" class="
|
185 |
</p>
|
186 |
|
187 |
-
<div class="media
|
188 |
-
<?php if(!empty($instance['
|
189 |
-
<img class="
|
190 |
<?php endif; ?>
|
191 |
</div>
|
192 |
|
193 |
<?php //概要テキスト ?>
|
194 |
-
<p><label for="<?php echo $this->get_field_id('
|
195 |
</p>
|
196 |
-
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('
|
197 |
|
198 |
<?php //リンク先_URL ?>
|
199 |
-
<p><label for="<?php echo $this->get_field_id('
|
200 |
-
<input type="text" id="<?php echo $this->get_field_id('
|
201 |
</p>
|
202 |
|
203 |
<?php }
|
@@ -206,185 +206,162 @@ class WP_Widget_vkExUnit_3PR_area extends WP_Widget {
|
|
206 |
|
207 |
$instance = $old_instance;
|
208 |
|
209 |
-
$instance['
|
210 |
-
$instance['
|
211 |
-
$instance['
|
212 |
-
$instance['
|
213 |
-
$instance['
|
214 |
-
$instance['
|
215 |
-
$instance['
|
216 |
|
217 |
-
$instance['
|
218 |
-
$instance['
|
219 |
-
$instance['
|
220 |
-
$instance['
|
221 |
-
$instance['
|
222 |
-
$instance['
|
223 |
-
$instance['
|
224 |
|
225 |
-
$instance['
|
226 |
-
$instance['
|
227 |
-
$instance['
|
228 |
-
$instance['
|
229 |
-
$instance['
|
230 |
-
$instance['
|
231 |
-
$instance['
|
232 |
|
233 |
return $instance;
|
234 |
}
|
235 |
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
}
|
280 |
-
if( !empty($instance['linkurl-1']) ){
|
281 |
-
echo '<p class="linkurl"><a href="'.esc_attr($instance['linkurl-1']).'" class="btn btn-default btn-sm">'.__('Read more', 'vkExUnit' ).'</a></p>';
|
282 |
-
}
|
283 |
-
?>
|
284 |
-
</div>
|
285 |
-
<!-- // div.pr-area -->
|
286 |
-
<?php endif; ?>
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
if( !empty($instance['linkurl-2']) ){
|
331 |
-
echo '<p class="linkurl"><a href="'.esc_attr($instance['linkurl-2']).'" class="btn btn-default btn-sm">'.__('Read more', 'vkExUnit' ).'</a></p>';
|
332 |
-
}
|
333 |
-
?>
|
334 |
-
</div>
|
335 |
-
<!-- // div.pr-area -->
|
336 |
-
<?php endif; ?>
|
337 |
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
if( !empty($instance['linkurl-3']) ){
|
381 |
-
echo '<p class="linkurl"><a href="'.esc_attr($instance['linkurl-3']).'" class="btn btn-default btn-sm">'.__('Read more', 'vkExUnit' ).'</a></p>';
|
382 |
-
}
|
383 |
-
?>
|
384 |
-
</div>
|
385 |
-
<!-- // div.pr-area -->
|
386 |
-
<?php endif; ?>
|
387 |
-
</div>
|
388 |
<?php }
|
389 |
}
|
390 |
add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_vkExUnit_3PR_area");'));
|
@@ -402,7 +379,7 @@ add_action( 'admin_print_scripts', 'my_admin_scripts_3pr' );
|
|
402 |
// 3PR widget CSS
|
403 |
function style_3PR() {
|
404 |
echo '<style>
|
405 |
-
.
|
406 |
box-sizing: border-box;
|
407 |
padding: 0.8em;
|
408 |
width: 100%;
|
@@ -410,10 +387,10 @@ echo '<style>
|
|
410 |
background: #EDEDED;
|
411 |
font-size: 1em;
|
412 |
}
|
413 |
-
.
|
414 |
width: 100%;
|
415 |
}
|
416 |
-
.
|
417 |
margin-top: -1em;
|
418 |
}
|
419 |
</style>'.PHP_EOL;
|
15 |
}
|
16 |
function form($instance){
|
17 |
$defaults = array(
|
18 |
+
'label_1' => __( '3PR area1 title', 'vkExUnit' ),
|
19 |
+
'media_3pr_image_1' => '',
|
20 |
+
'media_3pr_alt_1' => '',
|
21 |
+
'media_3pr_image_sp_1' => '',
|
22 |
+
'media_3pr_alt_sp_1' => '',
|
23 |
+
'summary_1' => '',
|
24 |
+
'linkurl_1' => '',
|
25 |
|
26 |
+
'label_2' => __( '3PR area2 title', 'vkExUnit' ),
|
27 |
+
'media_3pr_image_2' => '',
|
28 |
+
'media_3pr_alt_2' => '',
|
29 |
+
'media_3pr_image_sp_2' => '',
|
30 |
+
'media_3pr_alt_sp_2' => '',
|
31 |
+
'summary_2' => '',
|
32 |
+
'linkurl_2' => '',
|
33 |
|
34 |
+
'label_3' => __( '3PR area3 title', 'vkExUnit' ),
|
35 |
+
'media_3pr_image_3' => '',
|
36 |
+
'media_3pr_alt_3' => '',
|
37 |
+
'media_3pr_image_sp_3' => '',
|
38 |
+
'media_3pr_alt_sp_3' => '',
|
39 |
+
'summary_3' => '',
|
40 |
+
'linkurl_3' => ''
|
41 |
);
|
42 |
$instance = wp_parse_args((array) $instance, $defaults);
|
43 |
?>
|
44 |
|
45 |
<?php // 3PR area 1 =========================================================== ?>
|
46 |
<?php // 3PR area 1 タイトル ?>
|
47 |
+
<h5 class="pr_subTitle"><?php _e( '3PR area1 setting', 'vkExUnit' ); ?></h5>
|
48 |
<p>
|
49 |
+
<label for="<?php echo $this->get_field_id('label_1'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
|
50 |
+
<input type="text" id="<?php echo $this->get_field_id('label_1'); ?>-title" class="pr-input" name="<?php echo $this->get_field_name('label_1'); ?>" value="<?php echo $instance['label_1']; ?>" />
|
51 |
</p>
|
52 |
|
53 |
<?php // 3PR area 1 メディアアップローダー PC ?>
|
54 |
<p>
|
55 |
+
<label for="<?php echo $this->get_field_id('media_3pr_image_1'); ?>"><?php _e( 'Select image for PC:', 'vkExUnit' ); ?></label><br/>
|
56 |
|
57 |
+
<input type="hidden" class="media_image_3pr_pc <?php echo $this->get_field_id('media_3pr_image_1'); ?>" id="<?php echo $this->get_field_id('media_3pr_image_1'); ?>-image" name="<?php echo $this->get_field_name('media_3pr_image_1'); ?>" value="<?php echo esc_attr($instance['media_3pr_image_1']); ?>" />
|
58 |
|
59 |
+
<input type="hidden" class="media_alt_3pr_pc" id="<?php echo $this->get_field_id('media_3pr_alt_1'); ?>-alt" name="<?php echo $this->get_field_name('media_3pr_alt_1'); ?>" value="<?php echo esc_attr($instance['media_3pr_alt_1']); ?>" />
|
60 |
|
61 |
+
<input type="button" class="media_select select_3pr" value="<?php _e( 'Select image', 'vkExUnit' ); ?>" onclick="clickSelect3pr(event.target);" />
|
62 |
+
<input type="button" class="media_clear" value="<?php _e( 'Clear image', 'vkExUnit' ); ?>" onclick="clickClear3pr(event.target);" />
|
63 |
</p>
|
64 |
+
<div class="media image_3pr">
|
65 |
+
<?php if(!empty($instance['media_3pr_image_1'])): ?>
|
66 |
+
<img class="media_image image_3pr" src="<?php echo esc_url($instance['media_3pr_image_1']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_1']); ?>" />
|
67 |
<?php endif; ?>
|
68 |
</div>
|
69 |
|
70 |
<?php // 3PR area 1 メディアアップローダー sp image ?>
|
71 |
<p>
|
72 |
+
<label for="<?php echo $this->get_field_id('media_3pr_image_sp_1'); ?>"><?php _e( 'Select image for Mobile:', 'vkExUnit' ); ?></label><br/>
|
73 |
|
74 |
+
<input type="hidden" class="media_image_3pr_sp" id="<?php echo $this->get_field_id('media_3pr_image_sp_1'); ?>_image" name="<?php echo $this->get_field_name('media_3pr_image_sp_1'); ?>" value="<?php echo esc_attr($instance['media_3pr_image_sp_1']); ?>" />
|
75 |
|
76 |
+
<input type="hidden" class="media_alt_3pr_sp" id="<?php echo $this->get_field_id('media_3pr_alt_sp_1'); ?>-alt" name="<?php echo $this->get_field_name('media_3pr_alt_sp_1'); ?>" value="<?php echo esc_attr($instance['media_3pr_alt_sp_1']); ?>" />
|
77 |
|
78 |
+
<input type="button" class="media_select" value="<?php _e( 'Select image', 'vkExUnit' ); ?>" onclick="clickSelect3prSP(event.target);" />
|
79 |
+
<input type="button" class="media_clear" value="<?php _e( 'Clear image', 'vkExUnit' ); ?>" onclick="clickClear3prSP(event.target);" />
|
80 |
</p>
|
81 |
+
<div class="media image_3pr_sp">
|
82 |
+
<?php if(!empty($instance['media_3pr_image_sp_1'])): ?>
|
83 |
+
<img class="media_image image_3pr_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_1']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_1']); ?>" />
|
84 |
<?php endif; ?>
|
85 |
</div>
|
86 |
|
87 |
<?php // 概要テキスト ?>
|
88 |
+
<p><label for="<?php echo $this->get_field_id('summary_1'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label><br/>
|
89 |
</p>
|
90 |
|
91 |
+
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('summary_1'); ?>_text" class="pr_input textarea" name="<?php echo $this->get_field_name('summary_1'); ?>"><?php echo $instance['summary_1']; ?></textarea>
|
92 |
|
93 |
<?php // リンク先_URL ?>
|
94 |
+
<p><label for="<?php echo $this->get_field_id('linkurl_1'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
|
95 |
+
<input type="text" id="<?php echo $this->get_field_id('linkurl_1'); ?>_title" class="pr_input" name="<?php echo $this->get_field_name('linkurl_1'); ?>" value="<?php echo $instance['linkurl_1']; ?>" />
|
96 |
</p>
|
97 |
|
98 |
<hr /><?php // 3PR area 2 =================================================?>
|
99 |
<?php // 3PR area 2 タイトル ?>
|
100 |
+
<h5 class="pr_subTitle"><?php _e( '3PR area2 setting', 'vkExUnit' ); ?></h5>
|
101 |
<p>
|
102 |
+
<label for="<?php echo $this->get_field_id('label_2'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
|
103 |
+
<input type="text" id="<?php echo $this->get_field_id('label_2'); ?>_title" class="pr_input" name="<?php echo $this->get_field_name('label_2'); ?>" value="<?php echo $instance['label_2']; ?>" />
|
104 |
</p>
|
105 |
|
106 |
<?php // 3PR area 1 メディアアップローダー PC ?>
|
107 |
<p>
|
108 |
+
<label for="<?php echo $this->get_field_id('media_3pr_image_2'); ?>"><?php _e( 'Select image for PC:', 'vkExUnit' ); ?></label><br/>
|
109 |
|
110 |
+
<input type="hidden" class="media_image_3pr_pc <?php echo $this->get_field_id('media_3pr_image_2'); ?>" id="<?php echo $this->get_field_id('media_3pr_image_2'); ?>_image" name="<?php echo $this->get_field_name('media_3pr_image_2'); ?>" value="<?php echo esc_attr($instance['media_3pr_image_2']); ?>" />
|
111 |
|
112 |
+
<input type="hidden" class="media_alt_3pr_pc" id="<?php echo $this->get_field_id('media_3pr_alt_2'); ?>_alt" name="<?php echo $this->get_field_name('media_3pr_alt_2'); ?>" value="<?php echo esc_attr($instance['media_3pr_alt_2']); ?>" />
|
113 |
|
114 |
+
<input type="button" class="media_select select_3pr" value="<?php _e( 'Select image', 'vkExUnit' ); ?>" onclick="clickSelect3pr(event.target);" />
|
115 |
+
<input type="button" class="media_clear" value="<?php _e( 'Clear image', 'vkExUnit' ); ?>" onclick="clickClear3pr(event.target);" />
|
116 |
</p>
|
117 |
|
118 |
+
<div class="media image_3pr">
|
119 |
+
<?php if(!empty($instance['media_3pr_image_2'])): ?>
|
120 |
+
<img class="media_image image_3pr" src="<?php echo esc_url($instance['media_3pr_image_2']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_2']); ?>" />
|
121 |
<?php endif; ?>
|
122 |
</div>
|
123 |
|
124 |
<?php // 3PR area 2 メディアアップローダー sp ?>
|
125 |
<p>
|
126 |
+
<label for="<?php echo $this->get_field_id('media_3pr_image_sp_2'); ?>"><?php _e( 'Select image for Mobile:', 'vkExUnit' ); ?></label><br/>
|
127 |
|
128 |
+
<input type="hidden" class="media_image_3pr_sp" id="<?php echo $this->get_field_id('media_3pr_image_sp_2'); ?>_image" name="<?php echo $this->get_field_name('media_3pr_image_sp_2'); ?>" value="<?php echo esc_attr($instance['media_3pr_image_sp_2']); ?>" />
|
129 |
|
130 |
+
<input type="hidden" class="media_alt_3pr_sp" id="<?php echo $this->get_field_id('media_3pr_alt_sp_2'); ?>_alt" name="<?php echo $this->get_field_name('media_3pr_alt_sp_2'); ?>" value="<?php echo esc_attr($instance['media_3pr_alt_sp_2']); ?>" />
|
131 |
|
132 |
+
<input type="button" class="media_select" value="<?php _e( 'Select image', 'vkExUnit' ); ?>" onclick="clickSelect3prSP(event.target);" />
|
133 |
+
<input type="button" class="media_clear" value="<?php _e( 'Clear image', 'vkExUnit' ); ?>" onclick="clickClear3prSP(event.target);" />
|
134 |
</p>
|
135 |
+
<div class="media image_3pr_sp">
|
136 |
+
<?php if(!empty($instance['media_3pr_image_sp_2'])): ?>
|
137 |
+
<img class="media_image image_3pr_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_2']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_2']); ?>" />
|
138 |
<?php endif; ?>
|
139 |
</div>
|
140 |
|
141 |
<?php //概要テキスト ?>
|
142 |
+
<p><label for="<?php echo $this->get_field_id('summary_2'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label></p>
|
143 |
+
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('summary_2'); ?>_text" class="pr_input textarea" name="<?php echo $this->get_field_name('summary_2'); ?>"><?php echo $instance['summary_2']; ?></textarea>
|
144 |
|
145 |
<?php //リンク先_URL ?>
|
146 |
+
<p><label for="<?php echo $this->get_field_id('linkurl_2'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
|
147 |
+
<input type="text" id="<?php echo $this->get_field_id('linkurl_2'); ?>_title" class="pr_input" name="<?php echo $this->get_field_name('linkurl_2'); ?>" value="<?php echo $instance['linkurl_2']; ?>" />
|
148 |
</p>
|
149 |
|
150 |
<hr /><?php // 3PR area 3 =================================================?>
|
151 |
<?php // 3PR area 3 タイトル ?>
|
152 |
+
<h5 class="pr_subTitle"><?php _e( '3PR area3 setting', 'vkExUnit' ); ?></h5>
|
153 |
<p>
|
154 |
+
<label for="<?php echo $this->get_field_id('label_3'); ?>"><?php _e( 'Title:', 'vkExUnit' ); ?></label><br/>
|
155 |
+
<input type="text" id="<?php echo $this->get_field_id('label_3'); ?>_title" class="pr_input" name="<?php echo $this->get_field_name('label_3'); ?>" value="<?php echo $instance['label_3']; ?>" />
|
156 |
</p>
|
157 |
|
158 |
<?php // 3PR area 1 メディアアップローダー PC ?>
|
159 |
<p>
|
160 |
+
<label for="<?php echo $this->get_field_id('media_3pr_image_3'); ?>"><?php _e( 'Select image for PC:', 'vkExUnit' ); ?></label><br/>
|
161 |
|
162 |
+
<input type="hidden" class="media_image_3pr_pc <?php echo $this->get_field_id('media_3pr_image_3'); ?>" id="<?php echo $this->get_field_id('media_3pr_image_3'); ?>_image" name="<?php echo $this->get_field_name('media_3pr_image_3'); ?>" value="<?php echo esc_attr($instance['media_3pr_image_3']); ?>" />
|
163 |
|
164 |
+
<input type="hidden" class="media_alt_3pr_pc" id="<?php echo $this->get_field_id('media_3pr_alt_3'); ?>-alt" name="<?php echo $this->get_field_name('media_3pr_alt_3'); ?>" value="<?php echo esc_attr($instance['media_3pr_alt_3']); ?>" />
|
165 |
|
166 |
+
<input type="button" class="media_select select_3pr" value="<?php _e( 'Select image', 'vkExUnit' ); ?>" onclick="clickSelect3pr(event.target);" />
|
167 |
+
<input type="button" class="media_clear" value="<?php _e( 'Clear image', 'vkExUnit' ); ?>" onclick="clickClear3pr(event.target);" />
|
168 |
</p>
|
169 |
+
<div class="media image_3pr">
|
170 |
+
<?php if(!empty($instance['media_3pr_image_3'])): ?>
|
171 |
+
<img class="media_image image_3pr" src="<?php echo esc_url($instance['media_3pr_image_3']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_3']); ?>" />
|
172 |
<?php endif; ?>
|
173 |
</div>
|
174 |
|
175 |
<?php // 3PR area 2 メディアアップローダー sp ?>
|
176 |
<p>
|
177 |
+
<label for="<?php echo $this->get_field_id('media_3pr_image_sp_3'); ?>"><?php _e( 'Select image for Mobile:', 'vkExUnit' ); ?></label><br/>
|
178 |
|
179 |
+
<input type="hidden" class="media_image_3pr_sp" id="<?php echo $this->get_field_id('media_3pr_image_sp_3'); ?>_image" name="<?php echo $this->get_field_name('media_3pr_image_sp_3'); ?>" value="<?php echo esc_attr($instance['media_3pr_image_sp_3']); ?>" />
|
180 |
|
181 |
+
<input type="hidden" class="media_alt_3pr_sp" id="<?php echo $this->get_field_id('media_3pr_alt_sp_3'); ?>_alt" name="<?php echo $this->get_field_name('media_3pr_alt_sp_3'); ?>" value="<?php echo esc_attr($instance['media_3pr_alt_sp_3']); ?>" />
|
182 |
|
183 |
+
<input type="button" class="media_select" value="<?php _e( 'Select image', 'vkExUnit' ); ?>" onclick="clickSelect3prSP(event.target);" />
|
184 |
+
<input type="button" class="media_clear" value="<?php _e( 'Clear image', 'vkExUnit' ); ?>" onclick="clickClear3prSP(event.target);" />
|
185 |
</p>
|
186 |
|
187 |
+
<div class="media image_3pr_sp">
|
188 |
+
<?php if(!empty($instance['media_3pr_image_sp_3'])): ?>
|
189 |
+
<img class="media_image image_3pr_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_3']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_3']); ?>" />
|
190 |
<?php endif; ?>
|
191 |
</div>
|
192 |
|
193 |
<?php //概要テキスト ?>
|
194 |
+
<p><label for="<?php echo $this->get_field_id('summary_3'); ?>"><?php _e( 'Summary Text:', 'vkExUnit' ); ?></label>
|
195 |
</p>
|
196 |
+
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('summary_3'); ?>_text" class="pr_input textarea" name="<?php echo $this->get_field_name('summary_3'); ?>"><?php echo $instance['summary_3']; ?></textarea>
|
197 |
|
198 |
<?php //リンク先_URL ?>
|
199 |
+
<p><label for="<?php echo $this->get_field_id('linkurl_3'); ?>"><?php _e( 'Link URL:', 'vkExUnit' ); ?></label><br/>
|
200 |
+
<input type="text" id="<?php echo $this->get_field_id('linkurl_3'); ?>_title" class="pr_input" name="<?php echo $this->get_field_name('linkurl_3'); ?>" value="<?php echo $instance['linkurl_3']; ?>" />
|
201 |
</p>
|
202 |
|
203 |
<?php }
|
206 |
|
207 |
$instance = $old_instance;
|
208 |
|
209 |
+
$instance['label_1'] = $new_instance['label_1'];
|
210 |
+
$instance['media_3pr_image_1'] = $new_instance['media_3pr_image_1'];
|
211 |
+
$instance['media_3pr_alt_1'] = $new_instance['media_3pr_alt_1'];
|
212 |
+
$instance['media_3pr_image_sp_1'] = $new_instance['media_3pr_image_sp_1'];
|
213 |
+
$instance['media_3pr_alt_sp_1'] = $new_instance['media_3pr_alt_sp_1'];
|
214 |
+
$instance['summary_1'] = $new_instance['summary_1'];
|
215 |
+
$instance['linkurl_1'] = $new_instance['linkurl_1'];
|
216 |
|
217 |
+
$instance['label_2'] = $new_instance['label_2'];
|
218 |
+
$instance['media_3pr_image_2'] = $new_instance['media_3pr_image_2'];
|
219 |
+
$instance['media_3pr_alt_2'] = $new_instance['media_3pr_alt_2'];
|
220 |
+
$instance['media_3pr_image_sp_2'] = $new_instance['media_3pr_image_sp_2'];
|
221 |
+
$instance['media_3pr_alt_sp_2'] = $new_instance['media_3pr_alt_sp_2'];
|
222 |
+
$instance['summary_2'] = $new_instance['summary_2'];
|
223 |
+
$instance['linkurl_2'] = $new_instance['linkurl_2'];
|
224 |
|
225 |
+
$instance['label_3'] = $new_instance['label_3'];
|
226 |
+
$instance['media_3pr_image_3'] = $new_instance['media_3pr_image_3'];
|
227 |
+
$instance['media_3pr_alt_3'] = $new_instance['media_3pr_alt_3'];
|
228 |
+
$instance['media_3pr_image_sp_3'] = $new_instance['media_3pr_image_sp_3'];
|
229 |
+
$instance['media_3pr_alt_sp_3'] = $new_instance['media_3pr_alt_sp_3'];
|
230 |
+
$instance['summary_3'] = $new_instance['summary_3'];
|
231 |
+
$instance['linkurl_3'] = $new_instance['linkurl_3'];
|
232 |
|
233 |
return $instance;
|
234 |
}
|
235 |
|
236 |
+
function widget($args, $instance) {
|
237 |
+
echo PHP_EOL.'<div class="widget prBox row">'.PHP_EOL;
|
238 |
+
if( isset($instance['label_1']) && $instance['label_1'] ): ?>
|
239 |
+
<div class="prArea col-md-4">
|
240 |
+
<?php
|
241 |
+
echo '<h1 class="subSection-title">';
|
242 |
+
if ( isset($instance['label_1']) && $instance['label_1'] ) {
|
243 |
+
echo $instance['label_1'];
|
244 |
+
} else {
|
245 |
+
_e("3PR area", 'vkExUnit' );
|
246 |
+
}
|
247 |
+
echo '</h1>'.PHP_EOL; ?>
|
248 |
+
<?php if( isset($instance['media_3pr_image_1'], $instance['media_3pr_image_sp_1']) ): ?>
|
249 |
+
<div class="media_pr">
|
250 |
+
<?php if( !empty($instance['linkurl_1']) ): ?>
|
251 |
+
<a href="<?php echo esc_url($instance['linkurl_1']); ?>" >
|
252 |
+
<?php if( !empty($instance['media_3pr_image_1']) ): ?>
|
253 |
+
<img <?php if( !empty($instance['media_3pr_image_sp_1']) ){ echo 'class="media_pc"'; } ?> src="<?php echo esc_url($instance['media_3pr_image_1']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_1']); ?>" />
|
254 |
+
<?php endif;
|
255 |
+
if( !empty($instance['media_3pr_image_sp_1']) ): ?>
|
256 |
+
<img class="media_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_1']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_1']); ?>" />
|
257 |
+
<?php endif; ?>
|
258 |
+
</a>
|
259 |
+
<?php else:
|
260 |
+
if( !empty($instance['media_3pr_image_1']) ): ?>
|
261 |
+
<img <?php if( !empty($instance['media_3pr_image_sp_1']) ){ echo 'class="media_pc"'; } ?> src="<?php echo esc_url($instance['media_3pr_image_1']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_1']); ?>" />
|
262 |
+
<?php endif; ?>
|
263 |
+
<?php if( !empty($instance['media_3pr_image_sp_1']) ): ?>
|
264 |
+
<img class="media_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_1']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_1']); ?>" />
|
265 |
+
<?php endif;
|
266 |
+
endif; ?>
|
267 |
+
</div>
|
268 |
+
<!--//.media_pr -->
|
269 |
+
<?php endif;
|
270 |
+
if( !empty($instance['summary_1']) ){
|
271 |
+
echo '<p class="summary">'.nl2br(esc_attr($instance['summary_1'])).'</p>'.PHP_EOL;
|
272 |
+
}
|
273 |
+
if( !empty($instance['linkurl_1']) ){
|
274 |
+
echo '<p class="linkurl"><a href="'.esc_attr($instance['linkurl_1']).'" class="btn btn-default btn-sm">'.__('Read more', 'vkExUnit' ).'</a></p>';
|
275 |
+
} ?>
|
276 |
+
</div>
|
277 |
+
<!-- // div.prArea1 -->
|
278 |
+
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
|
280 |
+
<?php if( isset($instance['label_2']) && $instance['label_2'] ): ?>
|
281 |
+
<div class="prArea col-md-4">
|
282 |
+
<?php
|
283 |
+
echo '<h1 class="subSection-title">';
|
284 |
+
if ( isset($instance['label_2']) && $instance['label_2'] ) {
|
285 |
+
echo $instance['label_2'];
|
286 |
+
} else {
|
287 |
+
_e("3PR area", 'vkExUnit' );
|
288 |
+
}
|
289 |
+
echo '</h1>'.PHP_EOL;
|
290 |
+
if( isset($instance['media_3pr_image_2'], $instance['media_3pr_image_sp_2']) ): ?>
|
291 |
+
<div class="media_pr">
|
292 |
+
<?php if( !empty($instance['linkurl_2']) ): ?>
|
293 |
+
<a href="<?php echo esc_url($instance['linkurl_2']); ?>" >
|
294 |
+
<?php if( !empty($instance['media_3pr_image_2']) ): ?>
|
295 |
+
<img <?php if( !empty($instance['media_3pr_image_sp_2']) ){ echo 'class="media_pc"'; } ?> src="<?php echo esc_url($instance['media_3pr_image_2']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_2']); ?>" />
|
296 |
+
<?php endif;
|
297 |
+
if( !empty($instance['media_3pr_image_sp_2']) ): ?>
|
298 |
+
<img class="media_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_2']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_2']); ?>" />
|
299 |
+
<?php endif; ?>
|
300 |
+
</a>
|
301 |
+
<?php else:
|
302 |
+
if( !empty($instance['media_3pr_image_2']) ): ?>
|
303 |
+
<img <?php if( !empty($instance['media_3pr_image_sp_2']) ){ echo 'class="media_pc"'; } ?> src="<?php echo esc_url($instance['media_3pr_image_2']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_2']); ?>" />
|
304 |
+
<?php endif;
|
305 |
+
if( !empty($instance['media_3pr_image_sp_2']) ): ?>
|
306 |
+
<img class="media_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_2']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_2']); ?>" />
|
307 |
+
<?php endif;
|
308 |
+
endif; ?>
|
309 |
+
</div>
|
310 |
+
<!--//.media_pr -->
|
311 |
+
<?php endif;
|
312 |
+
if( !empty($instance['summary_2']) ){
|
313 |
+
echo '<p class="summary">'.nl2br(esc_attr($instance['summary_2'])).'</p>'.PHP_EOL;
|
314 |
+
}
|
315 |
+
if( !empty($instance['linkurl_2']) ){
|
316 |
+
echo '<p class="linkurl"><a href="'.esc_attr($instance['linkurl_2']).'" class="btn btn-default btn-sm">'.__('Read more', 'vkExUnit' ).'</a></p>';
|
317 |
+
}
|
318 |
+
?>
|
319 |
+
</div>
|
320 |
+
<!-- // div.prArea2 -->
|
321 |
+
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
|
323 |
+
<?php if( isset($instance['label_3']) && $instance['label_3'] ): ?>
|
324 |
+
<div class="prArea col-md-4">
|
325 |
+
<?php
|
326 |
+
echo '<h1 class="subSection-title">';
|
327 |
+
if ( isset($instance['label_3']) && $instance['label_3'] ) {
|
328 |
+
echo $instance['label_3'];
|
329 |
+
} else {
|
330 |
+
_e("3PR area", 'vkExUnit' );
|
331 |
+
}
|
332 |
+
echo '</h1>'.PHP_EOL;
|
333 |
+
if( isset($instance['media_3pr_image_3'], $instance['media_3pr_image_sp_3']) ): ?>
|
334 |
+
<div class="media_pr">
|
335 |
+
<?php if( !empty($instance['linkurl_3']) ): // has link ?>
|
336 |
+
<a href="<?php echo esc_url($instance['linkurl_3']); ?>" >
|
337 |
+
<?php if( !empty($instance['media_3pr_image_3']) ): ?>
|
338 |
+
<img <?php if( !empty($instance['media_3pr_image_sp_3']) ){ echo 'class="media_pc"'; } ?> src="<?php echo esc_url($instance['media_3pr_image_3']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_3']); ?>" />
|
339 |
+
<?php endif;
|
340 |
+
if( !empty($instance['media_3pr_image_sp_3']) ): ?>
|
341 |
+
<img class="media_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_3']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_3']); ?>" />
|
342 |
+
<?php endif; ?>
|
343 |
+
</a>
|
344 |
+
<?php else: // no link
|
345 |
+
if( !empty($instance['media_3pr_image_3']) ): ?>
|
346 |
+
<img <?php if( !empty($instance['media_3pr_image_sp_3']) ){ echo 'class="media_pc"'; } ?> src="<?php echo esc_url($instance['media_3pr_image_3']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_3']); ?>" />
|
347 |
+
<?php endif;
|
348 |
+
if( !empty($instance['media_3pr_image_sp_3']) ): ?>
|
349 |
+
<img class="media_sp" src="<?php echo esc_url($instance['media_3pr_image_sp_3']); ?>" alt="<?php echo esc_attr($instance['media_3pr_alt_sp_3']); ?>" />
|
350 |
+
<?php endif;
|
351 |
+
endif; ?>
|
352 |
+
</div>
|
353 |
+
<!--//.media_pr -->
|
354 |
+
<?php endif;
|
355 |
+
if( !empty($instance['summary_3']) ){
|
356 |
+
echo '<p class="summary">'.nl2br(esc_attr($instance['summary_3'])).'</p>'.PHP_EOL;
|
357 |
+
}
|
358 |
+
if( !empty($instance['linkurl_3']) ){
|
359 |
+
echo '<p class="linkurl"><a href="'.esc_attr($instance['linkurl_3']).'" class="btn btn-default btn-sm">'.__('Read more', 'vkExUnit' ).'</a></p>';
|
360 |
+
} ?>
|
361 |
+
</div>
|
362 |
+
<!-- // div.prArea3 -->
|
363 |
+
<?php endif; ?>
|
364 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
<?php }
|
366 |
}
|
367 |
add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_vkExUnit_3PR_area");'));
|
379 |
// 3PR widget CSS
|
380 |
function style_3PR() {
|
381 |
echo '<style>
|
382 |
+
.pr_subTitle{
|
383 |
box-sizing: border-box;
|
384 |
padding: 0.8em;
|
385 |
width: 100%;
|
387 |
background: #EDEDED;
|
388 |
font-size: 1em;
|
389 |
}
|
390 |
+
.pr_input{
|
391 |
width: 100%;
|
392 |
}
|
393 |
+
.pr_input.textarea{
|
394 |
margin-top: -1em;
|
395 |
}
|
396 |
</style>'.PHP_EOL;
|
plugins/other_widget/widget-page.php
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*-------------------------------------------*/
|
4 |
+
/* page widget
|
5 |
+
/*-------------------------------------------*/
|
6 |
+
class WP_Widget_vkExUnit_widget_page extends WP_Widget {
|
7 |
+
|
8 |
+
function WP_Widget_vkExUnit_widget_page() {
|
9 |
+
$widget_ops = array(
|
10 |
+
'classname' => 'WP_Widget_vkExUnit_widget_page',
|
11 |
+
'description' => __( 'Displays a page contents to widget.', 'vkExUnit' ),
|
12 |
+
);
|
13 |
+
$widget_name = vkExUnit_get_short_name() . '_' . __( 'page content to widget', 'vkExUnit' );
|
14 |
+
$this->WP_Widget('pudge', $widget_name, $widget_ops);
|
15 |
+
}
|
16 |
+
|
17 |
+
function widget($args, $instance){
|
18 |
+
$this->display_page($instance['page_id'],$instance['set_title']);
|
19 |
+
}
|
20 |
+
|
21 |
+
function form($instance){
|
22 |
+
$defaults = array(
|
23 |
+
'page_id' => 2,
|
24 |
+
'set_title' => true
|
25 |
+
);
|
26 |
+
|
27 |
+
$instance = wp_parse_args((array) $instance, $defaults); ?>
|
28 |
+
<p>
|
29 |
+
<?php $pages = get_pages(); ?>
|
30 |
+
<label for="<?php echo $this->get_field_id('page_id'); ?>"><?php _e('Display page', 'vkExUnit') ?></label>
|
31 |
+
<select name="<?php echo $this->get_field_name('page_id'); ?>" >
|
32 |
+
<?php foreach($pages as $page){ ?>
|
33 |
+
<option value="<?php echo $page->ID; ?>" <?php if($instance['page_id'] == $page->ID) echo 'selected="selected"'; ?> ><?php echo $page->post_title; ?></option>
|
34 |
+
<?php } ?>
|
35 |
+
</select>
|
36 |
+
<br/>
|
37 |
+
<input type="checkbox" name="<?php echo $this->get_field_name('set_title'); ?>" value="true" <?php echo ($instance['set_title'])? 'checked': '' ; ?> >
|
38 |
+
<label for="<?php echo $this->get_field_id('set_title'); ?>"> <?php _e( 'display title', 'vkExUnit' ); ?></label>
|
39 |
+
</p>
|
40 |
+
<?php
|
41 |
+
}
|
42 |
+
|
43 |
+
function update($new_instance, $old_instance){
|
44 |
+
$instance = $old_instance;
|
45 |
+
$instance['page_id'] = $new_instance['page_id'];
|
46 |
+
$instance['set_title'] = ($new_instance['set_title'] == 'true')? true : false;
|
47 |
+
return $instance;
|
48 |
+
}
|
49 |
+
|
50 |
+
function display_page($pageid,$titleflag=false) {
|
51 |
+
$page = get_page($pageid);
|
52 |
+
echo PHP_EOL.'<div id="widget-page-'.$pageid.'" class="widget">'.PHP_EOL;
|
53 |
+
if($titleflag){ echo '<h1 class="widget-title subSection-title">'.$page->post_title.'</h1>'.PHP_EOL; }
|
54 |
+
echo apply_filters('the_content', $page->post_content );
|
55 |
+
if ( is_user_logged_in() == TRUE ) {
|
56 |
+
global $user_level;
|
57 |
+
get_currentuserinfo();
|
58 |
+
if (10 <= $user_level) { ?>
|
59 |
+
<div class="adminEdit">
|
60 |
+
<a href="<?php echo site_url(); ?>/wp-admin/post.php?post=<?php echo $pageid ;?>&action=edit" class="btn btn-default btn-sm"><?php _e('Edit', 'vkExUnit');?></a>
|
61 |
+
</div>
|
62 |
+
<?php } }
|
63 |
+
echo '</div>'.PHP_EOL;
|
64 |
+
}
|
65 |
+
}
|
66 |
+
add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_vkExUnit_widget_page");'));
|
plugins/other_widget/widget-profile.php
CHANGED
@@ -17,8 +17,8 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
17 |
function form($instance){
|
18 |
$defaults = array(
|
19 |
'label' => __('Profile', 'vkExUnit' ),
|
20 |
-
'
|
21 |
-
'
|
22 |
'profile' => __('Profile Text', 'vkExUnit' ),
|
23 |
'facebook' => '',
|
24 |
'twitter' => '',
|
@@ -31,65 +31,65 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
31 |
$instance = wp_parse_args((array) $instance, $defaults);
|
32 |
?>
|
33 |
|
34 |
-
<?php
|
35 |
<p><label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:', 'vkExUnit'); ?></label><br/>
|
36 |
-
<input type="text" id="<?php echo $this->get_field_id('label');
|
37 |
</p>
|
38 |
|
39 |
-
<?php
|
40 |
<p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Select Profile image:', 'vkExUnit'); ?></label><br/>
|
41 |
|
42 |
-
<input type="hidden" class="
|
43 |
|
44 |
-
<input type="hidden" class="
|
45 |
|
46 |
-
<input type="button" class="
|
47 |
-
<input type="button" class="
|
48 |
</p>
|
49 |
|
50 |
<div class="media">
|
51 |
-
<?php if(!empty($instance['
|
52 |
-
<img class="
|
53 |
<?php endif; ?>
|
54 |
</div>
|
55 |
|
56 |
-
<?php //profile
|
57 |
<p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Profile Text:', 'vkExUnit'); ?></label></p>
|
58 |
|
59 |
-
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('profile');
|
60 |
|
61 |
<?php //facebook_URL ?>
|
62 |
<p><label for="<?php echo $this->get_field_id('facebook'); ?>"><?php _e('Facebook URL:', 'vkExUnit'); ?></label><br/>
|
63 |
-
<input type="text" id="<?php echo $this->get_field_id('facebook');
|
64 |
</p>
|
65 |
|
66 |
<?php //twitter_URL ?>
|
67 |
<p><label for="<?php echo $this->get_field_id('twitter'); ?>"><?php _e('Twitter URL:', 'vkExUnit'); ?></label><br/>
|
68 |
-
<input type="text" id="<?php echo $this->get_field_id('twitter');
|
69 |
</p>
|
70 |
|
71 |
<?php //mail_URL ?>
|
72 |
<p><label for="<?php echo $this->get_field_id('mail'); ?>"><?php _e('Email Address:', 'vkExUnit'); ?></label><br/>
|
73 |
-
<input type="text" id="<?php echo $this->get_field_id('mail');
|
74 |
</p>
|
75 |
|
76 |
<?php //youtube_URL ?>
|
77 |
<p><label for="<?php echo $this->get_field_id('youtube'); ?>"><?php _e('Youtube URL:', 'vkExUnit'); ?></label><br/>
|
78 |
-
<input type="text" id="<?php echo $this->get_field_id('youtube');
|
79 |
</p>
|
80 |
|
81 |
<?php //rss_URL ?>
|
82 |
<p><label for="<?php echo $this->get_field_id('rss'); ?>"><?php _e('RSS URL:', 'vkExUnit'); ?></label><br/>
|
83 |
-
<input type="text" id="<?php echo $this->get_field_id('rss');
|
84 |
</p>
|
85 |
|
86 |
<?php //instagram_URL ?>
|
87 |
<p><label for="<?php echo $this->get_field_id('instagram'); ?>"><?php _e('instagram URL:', 'vkExUnit'); ?></label><br/>
|
88 |
-
<input type="text" id="<?php echo $this->get_field_id('instagram');
|
89 |
|
90 |
<?php //linkedin_URL ?>
|
91 |
<p><label for="<?php echo $this->get_field_id('linkedin'); ?>"><?php _e('linkedin URL:', 'vkExUnit'); ?></label><br/>
|
92 |
-
<input type="text" id="<?php echo $this->get_field_id('linkedin');
|
93 |
|
94 |
<?php }
|
95 |
|
@@ -97,8 +97,8 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
97 |
|
98 |
$instance = $old_instance;
|
99 |
$instance['label'] = $new_instance['label'];
|
100 |
-
$instance['
|
101 |
-
$instance['
|
102 |
$instance['profile'] = $new_instance['profile'];
|
103 |
$instance['facebook'] = $new_instance['facebook'];
|
104 |
$instance['twitter'] = $new_instance['twitter'];
|
@@ -123,47 +123,50 @@ class WP_Widget_vkExUnit_profile extends WP_Widget {
|
|
123 |
echo '</h1>'; ?>
|
124 |
|
125 |
<div class="site-profile">
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
echo '<img class="profile-media" src="'.esc_url($instance['mediafile']).'" alt="'.esc_attr($instance['mediaalt']).'" />'.PHP_EOL;
|
130 |
}
|
131 |
// Display a profile text
|
132 |
if( !empty($instance['profile']) ){
|
133 |
-
echo '<p class="
|
134 |
}
|
|
|
135 |
// Display a sns botton
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
|
|
|
|
|
|
167 |
</div>
|
168 |
<!-- / .site-profile -->
|
169 |
</aside>
|
@@ -182,10 +185,10 @@ add_action( 'admin_print_scripts', 'my_admin_scripts' );
|
|
182 |
// Profile widget CSS
|
183 |
function my_admin_style() {
|
184 |
echo '<style>
|
185 |
-
.
|
186 |
width: 100%;
|
187 |
}
|
188 |
-
.
|
189 |
padding: 3px;
|
190 |
border: none;
|
191 |
border-radius: 3px;
|
@@ -195,7 +198,7 @@ echo '<style>
|
|
195 |
cursor: pointer;
|
196 |
outline: none;
|
197 |
}
|
198 |
-
.
|
199 |
background: #0073aa;
|
200 |
}
|
201 |
.media{
|
@@ -219,14 +222,14 @@ echo '<style>
|
|
219 |
color: #999;
|
220 |
content: "No Image";
|
221 |
}
|
222 |
-
.
|
223 |
position: relative;
|
224 |
z-index: 3;
|
225 |
display: block;
|
226 |
width: 100%;
|
227 |
height: auto;
|
228 |
}
|
229 |
-
.
|
230 |
margin-top: -1em;
|
231 |
}
|
232 |
</style>'.PHP_EOL;
|
17 |
function form($instance){
|
18 |
$defaults = array(
|
19 |
'label' => __('Profile', 'vkExUnit' ),
|
20 |
+
'mediaFile' => '',
|
21 |
+
'mediaAlt' => '',
|
22 |
'profile' => __('Profile Text', 'vkExUnit' ),
|
23 |
'facebook' => '',
|
24 |
'twitter' => '',
|
31 |
$instance = wp_parse_args((array) $instance, $defaults);
|
32 |
?>
|
33 |
|
34 |
+
<?php //title ?>
|
35 |
<p><label for="<?php echo $this->get_field_id('label'); ?>"><?php _e('Title:', 'vkExUnit'); ?></label><br/>
|
36 |
+
<input type="text" id="<?php echo $this->get_field_id('label'); ?>_title" class="prof_input" name="<?php echo $this->get_field_name('label'); ?>" value="<?php echo $instance['label']; ?>" />
|
37 |
</p>
|
38 |
|
39 |
+
<?php //media uploader ?>
|
40 |
<p><label for="<?php echo $this->get_field_id('profile'); ?>"><?php _e('Select Profile image:', 'vkExUnit'); ?></label><br/>
|
41 |
|
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>
|
49 |
|
50 |
<div class="media">
|
51 |
+
<?php if(!empty($instance['mediaFile'])): ?>
|
52 |
+
<img class="media_image" src="<?php echo esc_url($instance['mediaFile']); ?>" alt="<?php echo esc_attr($instance['mediaAlt']); ?>" />
|
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 |
|
59 |
+
<textarea rows="4" cols="40" id="<?php echo $this->get_field_id('profile'); ?>_text" class="prof_input textarea" name="<?php echo $this->get_field_name('profile'); ?>"><?php echo $instance['profile']; ?></textarea>
|
60 |
|
61 |
<?php //facebook_URL ?>
|
62 |
<p><label for="<?php echo $this->get_field_id('facebook'); ?>"><?php _e('Facebook URL:', 'vkExUnit'); ?></label><br/>
|
63 |
+
<input type="text" id="<?php echo $this->get_field_id('facebook'); ?>_url" class="prof_input" name="<?php echo $this->get_field_name('facebook'); ?>" value="<?php echo $instance['facebook']; ?>" />
|
64 |
</p>
|
65 |
|
66 |
<?php //twitter_URL ?>
|
67 |
<p><label for="<?php echo $this->get_field_id('twitter'); ?>"><?php _e('Twitter URL:', 'vkExUnit'); ?></label><br/>
|
68 |
+
<input type="text" id="<?php echo $this->get_field_id('twitter'); ?>_url" class="prof_input" name="<?php echo $this->get_field_name('twitter'); ?>" value="<?php echo $instance['twitter']; ?>" />
|
69 |
</p>
|
70 |
|
71 |
<?php //mail_URL ?>
|
72 |
<p><label for="<?php echo $this->get_field_id('mail'); ?>"><?php _e('Email Address:', 'vkExUnit'); ?></label><br/>
|
73 |
+
<input type="text" id="<?php echo $this->get_field_id('mail'); ?>_url" class="prof_input" name="<?php echo $this->get_field_name('mail'); ?>" value="<?php echo $instance['mail']; ?>" />
|
74 |
</p>
|
75 |
|
76 |
<?php //youtube_URL ?>
|
77 |
<p><label for="<?php echo $this->get_field_id('youtube'); ?>"><?php _e('Youtube URL:', 'vkExUnit'); ?></label><br/>
|
78 |
+
<input type="text" id="<?php echo $this->get_field_id('youtube'); ?>_url" class="prof_input" name="<?php echo $this->get_field_name('youtube'); ?>" value="<?php echo $instance['youtube']; ?>" />
|
79 |
</p>
|
80 |
|
81 |
<?php //rss_URL ?>
|
82 |
<p><label for="<?php echo $this->get_field_id('rss'); ?>"><?php _e('RSS URL:', 'vkExUnit'); ?></label><br/>
|
83 |
+
<input type="text" id="<?php echo $this->get_field_id('rss'); ?>_url" class="prof_input" name="<?php echo $this->get_field_name('rss'); ?>" value="<?php echo $instance['rss']; ?>" />
|
84 |
</p>
|
85 |
|
86 |
<?php //instagram_URL ?>
|
87 |
<p><label for="<?php echo $this->get_field_id('instagram'); ?>"><?php _e('instagram URL:', 'vkExUnit'); ?></label><br/>
|
88 |
+
<input type="text" id="<?php echo $this->get_field_id('instagram'); ?>_url" class="prof_input" name="<?php echo $this->get_field_name('instagram'); ?>" value="<?php echo $instance['instagram']; ?>" /></p>
|
89 |
|
90 |
<?php //linkedin_URL ?>
|
91 |
<p><label for="<?php echo $this->get_field_id('linkedin'); ?>"><?php _e('linkedin URL:', 'vkExUnit'); ?></label><br/>
|
92 |
+
<input type="text" id="<?php echo $this->get_field_id('linkedin'); ?>_url" class="prof_input" name="<?php echo $this->get_field_name('linkedin'); ?>" value="<?php echo $instance['linkedin']; ?>" /></p>
|
93 |
|
94 |
<?php }
|
95 |
|
97 |
|
98 |
$instance = $old_instance;
|
99 |
$instance['label'] = $new_instance['label'];
|
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'];
|
123 |
echo '</h1>'; ?>
|
124 |
|
125 |
<div class="site-profile">
|
126 |
+
<?php // Display a profile image
|
127 |
+
if( !empty($instance['mediaFile']) ){
|
128 |
+
echo '<img class="profile_media" src="'.esc_url($instance['mediaFile']).'" alt="'.esc_attr($instance['mediaAlt']).'" />'.PHP_EOL;
|
|
|
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;
|
133 |
}
|
134 |
+
|
135 |
// Display a sns botton
|
136 |
+
if( isset($instance['facebook']) && $instance['facebook'] || isset($instance['twitter']) && $instance['twitter'] || isset($instance['mail']) && $instance['mail'] || isset($instance['youtube']) && $instance['youtube'] || isset($instance['rss']) && $instance['rss'] || isset($instance['instagram']) && $instance['instagram'] || isset($instance['linkedin']) && $instance['linkedin'] ): ?>
|
137 |
+
|
138 |
+
<ul class="sns_btns">
|
139 |
+
<?php // Display a facebook botton
|
140 |
+
if( !empty($instance['facebook']) ): ?>
|
141 |
+
<li class="facebook_btn"><a href="<?php echo esc_url($instance['facebook']); ?>" target="_blank"><i class="fa fa-facebook"></i></a></li>
|
142 |
+
<?php endif; ?>
|
143 |
+
<?php // Display a twitter botton
|
144 |
+
if( !empty($instance['twitter']) ): ?>
|
145 |
+
<li class="twitter_btn"><a href="<?php echo esc_url($instance['twitter']); ?>" target="_blank"><i class="fa fa-twitter"></i></a></li>
|
146 |
+
<?php endif; ?>
|
147 |
+
<?php // Display a mail botton
|
148 |
+
if( !empty($instance['mail']) ): ?>
|
149 |
+
<li class="mail_btn"><a href="<?php echo esc_url($instance['mail']); ?>" target="_blank"><i class="fa fa-envelope"></i></a></li>
|
150 |
+
<?php endif; ?>
|
151 |
+
<?php // Display a youtube botton
|
152 |
+
if( !empty($instance['youtube']) ): ?>
|
153 |
+
<li class="youtube_btn"><a href="<?php echo esc_url($instance['youtube']); ?>" target="_blank"><i class="fa fa-youtube"></i></a></li>
|
154 |
+
<?php endif; ?>
|
155 |
+
<?php // Display a RSS botton
|
156 |
+
if( !empty($instance['rss']) ): ?>
|
157 |
+
<li class="rss_btn"><a href="<?php echo esc_url($instance['rss']); ?>" target="_blank"><i class="fa fa-rss"></i></a></li>
|
158 |
+
<?php endif; ?>
|
159 |
+
<?php // Display a instagram botton
|
160 |
+
if( !empty($instance['instagram']) ): ?>
|
161 |
+
<li class="instagram_btn"><a href="<?php echo esc_url($instance['instagram']); ?>" target="_blank"><i class="fa fa-instagram"></i></a></li>
|
162 |
+
<?php endif; ?>
|
163 |
+
<?php // Display a linkedin botton
|
164 |
+
if( !empty($instance['linkedin']) ): ?>
|
165 |
+
<li class="linkedin_btn"><a href="<?php echo esc_url($instance['linkedin']); ?>" target="_blank"><i class="fa fa-linkedin"></i></a></li>
|
166 |
+
<?php endif; ?>
|
167 |
+
</ul>
|
168 |
+
<?php endif; ?>
|
169 |
+
|
170 |
</div>
|
171 |
<!-- / .site-profile -->
|
172 |
</aside>
|
185 |
// Profile widget CSS
|
186 |
function my_admin_style() {
|
187 |
echo '<style>
|
188 |
+
.prof_input{
|
189 |
width: 100%;
|
190 |
}
|
191 |
+
.media_select,.media_clear{
|
192 |
padding: 3px;
|
193 |
border: none;
|
194 |
border-radius: 3px;
|
198 |
cursor: pointer;
|
199 |
outline: none;
|
200 |
}
|
201 |
+
.media_select:hover,.media_clear:hover{
|
202 |
background: #0073aa;
|
203 |
}
|
204 |
.media{
|
222 |
color: #999;
|
223 |
content: "No Image";
|
224 |
}
|
225 |
+
.media_image{
|
226 |
position: relative;
|
227 |
z-index: 3;
|
228 |
display: block;
|
229 |
width: 100%;
|
230 |
height: auto;
|
231 |
}
|
232 |
+
.prof_input.textarea{
|
233 |
margin-top: -1em;
|
234 |
}
|
235 |
</style>'.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.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -45,6 +45,12 @@ e.g.
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
= 0.1.3.1 =
|
49 |
* Some bug fix
|
50 |
|
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.4.1
|
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.4.0 =
|
49 |
+
* Add page contents widget.
|
50 |
+
* Add favicon setting.
|
51 |
+
* Add Eyecatch image auto insert.
|
52 |
+
* Add Transration.
|
53 |
+
|
54 |
= 0.1.3.1 =
|
55 |
* Some bug fix
|
56 |
|
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
|
@@ -96,6 +96,9 @@ if ( isset($options['active_relatedPosts']) && $options['active_relatedPosts'] )
|
|
96 |
if ( isset($options['active_metaDescription']) && $options['active_metaDescription'] )
|
97 |
require vkExUnit_get_directory() . '/plugins/meta_description/meta_description.php';
|
98 |
|
|
|
|
|
|
|
99 |
if ( isset($options['active_metaKeyword']) && $options['active_metaKeyword'] )
|
100 |
require vkExUnit_get_directory() . '/plugins/meta_keyword/meta_keyword.php';
|
101 |
|
@@ -105,6 +108,9 @@ if ( isset($options['active_otherWidgets']) && $options['active_otherWidgets'] )
|
|
105 |
if ( isset($options['active_css_customize']) && $options['active_css_customize'] )
|
106 |
require vkExUnit_get_directory() . '/plugins/css_customize/css_customize.php';
|
107 |
|
|
|
|
|
|
|
108 |
/*-------------------------------------------*/
|
109 |
/* Add vkExUnit css
|
110 |
/*-------------------------------------------*/
|
@@ -113,9 +119,9 @@ add_action('wp_enqueue_scripts','vkExUnit_print_css');
|
|
113 |
function vkExUnit_print_css(){
|
114 |
$options = vkExUnit_get_common_options();
|
115 |
if ( isset($options['active_bootstrap']) && $options['active_bootstrap'] ) {
|
116 |
-
wp_enqueue_style('vkExUnit_common_style', plugins_url('', __FILE__).'/css/style_in_bs.css', array(), '
|
117 |
} else {
|
118 |
-
wp_enqueue_style('vkExUnit_common_style', plugins_url('', __FILE__).'/css/style.css', array(), '
|
119 |
}
|
120 |
}
|
121 |
/*-------------------------------------------*/
|
@@ -125,9 +131,9 @@ add_action('wp_head','vkExUnit_addJs');
|
|
125 |
function vkExUnit_addJs(){
|
126 |
$options = vkExUnit_get_common_options();
|
127 |
if ( isset($options['active_bootstrap']) && $options['active_bootstrap'] ) {
|
128 |
-
wp_register_script( 'vkExUnit_master-js' , plugins_url('', __FILE__).'/js/all_in_bs.min.js', array('jquery'), '
|
129 |
} else {
|
130 |
-
wp_register_script( 'vkExUnit_master-js' , plugins_url('', __FILE__).'/js/all.min.js', array('jquery'), '
|
131 |
}
|
132 |
wp_enqueue_script( 'vkExUnit_master-js' );
|
133 |
}
|
@@ -166,5 +172,3 @@ function vkExUnit_admin_enq(){
|
|
166 |
if(isset($options['active_wpTitle']) && $options['active_wpTitle']){
|
167 |
add_filter('wp_title','vkExUnit_get_wp_head_title');
|
168 |
}
|
169 |
-
|
170 |
-
// 「vkExUnit_get_wp_head_title」is common_helpers.php Head title
|
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.4.1
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
96 |
if ( isset($options['active_metaDescription']) && $options['active_metaDescription'] )
|
97 |
require vkExUnit_get_directory() . '/plugins/meta_description/meta_description.php';
|
98 |
|
99 |
+
if ( isset($options['active_icon']) && $options['active_icon'] )
|
100 |
+
require vkExUnit_get_directory() . '/plugins/icons.php';
|
101 |
+
|
102 |
if ( isset($options['active_metaKeyword']) && $options['active_metaKeyword'] )
|
103 |
require vkExUnit_get_directory() . '/plugins/meta_keyword/meta_keyword.php';
|
104 |
|
108 |
if ( isset($options['active_css_customize']) && $options['active_css_customize'] )
|
109 |
require vkExUnit_get_directory() . '/plugins/css_customize/css_customize.php';
|
110 |
|
111 |
+
if ( isset($options['active_auto_eyecatch']) && $options['active_auto_eyecatch'] )
|
112 |
+
require vkExUnit_get_directory() . '/plugins/auto_eyecatch.php';
|
113 |
+
|
114 |
/*-------------------------------------------*/
|
115 |
/* Add vkExUnit css
|
116 |
/*-------------------------------------------*/
|
119 |
function vkExUnit_print_css(){
|
120 |
$options = vkExUnit_get_common_options();
|
121 |
if ( isset($options['active_bootstrap']) && $options['active_bootstrap'] ) {
|
122 |
+
wp_enqueue_style('vkExUnit_common_style', plugins_url('', __FILE__).'/css/style_in_bs.css', array(), '20150708', 'all');
|
123 |
} else {
|
124 |
+
wp_enqueue_style('vkExUnit_common_style', plugins_url('', __FILE__).'/css/style.css', array(), '20150708', 'all');
|
125 |
}
|
126 |
}
|
127 |
/*-------------------------------------------*/
|
131 |
function vkExUnit_addJs(){
|
132 |
$options = vkExUnit_get_common_options();
|
133 |
if ( isset($options['active_bootstrap']) && $options['active_bootstrap'] ) {
|
134 |
+
wp_register_script( 'vkExUnit_master-js' , plugins_url('', __FILE__).'/js/all_in_bs.min.js', array('jquery'), '20150708' );
|
135 |
} else {
|
136 |
+
wp_register_script( 'vkExUnit_master-js' , plugins_url('', __FILE__).'/js/all.min.js', array('jquery'), '20150708' );
|
137 |
}
|
138 |
wp_enqueue_script( 'vkExUnit_master-js' );
|
139 |
}
|
172 |
if(isset($options['active_wpTitle']) && $options['active_wpTitle']){
|
173 |
add_filter('wp_title','vkExUnit_get_wp_head_title');
|
174 |
}
|
|
|
|
vkExUnit_admin.php
CHANGED
@@ -50,20 +50,20 @@
|
|
50 |
</td>
|
51 |
</tr>
|
52 |
|
53 |
-
<!-- [
|
54 |
-
<tr<?php echo (isset($options['
|
55 |
<th scope='row' class='check-column'>
|
56 |
-
<label class='screen-reader-text' for='
|
57 |
<?php _e('Choose Print meta description.', 'vkExUnit'); ?>
|
58 |
</label>
|
59 |
-
<input type="checkbox" name="vkExUnit_common_options[
|
60 |
</th>
|
61 |
<td class='plugin-title'>
|
62 |
-
<strong><?php _e('
|
63 |
</td>
|
64 |
<td class='column-description desc'>
|
65 |
<div class='plugin-description'>
|
66 |
-
<p><?php _e('
|
67 |
</div><!-- [ /.plugin-description ] -->
|
68 |
</td>
|
69 |
</tr>
|
@@ -72,12 +72,12 @@
|
|
72 |
<tr<?php echo (isset($options['active_wpTitle']) && $options['active_wpTitle'])? ' class="active"': ' class="inactive"'; ?>>
|
73 |
<th scope='row' class='check-column'>
|
74 |
<label class='screen-reader-text' for='checkbox_active_wpTitle' >
|
75 |
-
<?php _e('Choose Rewrite the
|
76 |
</label>
|
77 |
-
<input type="checkbox" name="vkExUnit_common_options[active_wpTitle]" id="
|
78 |
</th>
|
79 |
<td class='plugin-title'>
|
80 |
-
<strong><?php _e('Rewrite the
|
81 |
</td>
|
82 |
<td class='column-description desc'>
|
83 |
<div class='plugin-description'>
|
@@ -96,6 +96,16 @@
|
|
96 |
</th>
|
97 |
<td class='plugin-title'>
|
98 |
<strong><?php _e('Print meta Keyword', 'vkExUnit'); ?></strong>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
</td>
|
100 |
<td class='column-Keyword desc'>
|
101 |
<div class='plugin-Keyword'>
|
@@ -104,6 +114,23 @@
|
|
104 |
</td>
|
105 |
</tr>
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
<!-- [ active_sns ] -->
|
108 |
<tr<?php echo (isset($options['active_sns']) && $options['active_sns']) ? ' class="active"': ' class="inactive"'; ?>>
|
109 |
<th scope='row' class='check-column'>
|
@@ -114,18 +141,16 @@
|
|
114 |
</th>
|
115 |
<td class='plugin-title'>
|
116 |
<strong><?php _e('Social media cooperation.', 'vkExUnit'); ?></strong>
|
117 |
-
|
118 |
-
|
119 |
<?php if (isset($options['active_sns']) && $options['active_sns']) : ?>
|
120 |
-
|
121 |
<span class="0">
|
122 |
<a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting';?>">
|
123 |
<?php _e('Setting','vkExUnit');?>
|
124 |
</a></span>
|
125 |
-
|
126 |
-
<?php endif; ?>
|
127 |
-
|
128 |
</div>
|
|
|
|
|
129 |
</td>
|
130 |
<td class='column-description desc'>
|
131 |
<div class='plugin-description'>
|
@@ -199,6 +224,13 @@
|
|
199 |
<td class='column-description desc'>
|
200 |
<div class='plugin-description'>
|
201 |
<p><?php _e('You can use various widgets.', 'vkExUnit'); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
</div><!-- [ /.plugin-description ] -->
|
203 |
</td>
|
204 |
</tr>
|
@@ -220,6 +252,25 @@
|
|
220 |
</div><!-- [ /.plugin-description ] -->
|
221 |
</td>
|
222 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
</tbody>
|
224 |
|
225 |
<tfoot>
|
50 |
</td>
|
51 |
</tr>
|
52 |
|
53 |
+
<!-- [ active_icon ] -->
|
54 |
+
<tr<?php echo (isset($options['active_icon']) && $options['active_icon'])? ' class="active"': ' class="inactive"'; ?>>
|
55 |
<th scope='row' class='check-column'>
|
56 |
+
<label class='screen-reader-text' for='checkbox_active_icon' >
|
57 |
<?php _e('Choose Print meta description.', 'vkExUnit'); ?>
|
58 |
</label>
|
59 |
+
<input type="checkbox" name="vkExUnit_common_options[active_icon]" id="checkbox_active_icon" value="true" <?php echo (isset($options['active_icon']) && $options['active_icon'])? 'checked': ''; ?> />
|
60 |
</th>
|
61 |
<td class='plugin-title'>
|
62 |
+
<strong><?php _e('Favicon setting', 'vkExUnit'); ?></strong>
|
63 |
</td>
|
64 |
<td class='column-description desc'>
|
65 |
<div class='plugin-description'>
|
66 |
+
<p><?php _e('About favicon.', 'vkExUnit'); ?></p>
|
67 |
</div><!-- [ /.plugin-description ] -->
|
68 |
</td>
|
69 |
</tr>
|
72 |
<tr<?php echo (isset($options['active_wpTitle']) && $options['active_wpTitle'])? ' class="active"': ' class="inactive"'; ?>>
|
73 |
<th scope='row' class='check-column'>
|
74 |
<label class='screen-reader-text' for='checkbox_active_wpTitle' >
|
75 |
+
<?php _e('Choose Rewrite the title tag', 'vkExUnit'); ?>
|
76 |
</label>
|
77 |
+
<input type="checkbox" name="vkExUnit_common_options[active_wpTitle]" id="checkbox_active_wpTitle" value="true" <?php echo (isset($options['active_wpTitle']) && $options['active_wpTitle'])? 'checked': ''; ?> />
|
78 |
</th>
|
79 |
<td class='plugin-title'>
|
80 |
+
<strong><?php _e('Rewrite the title tag', 'vkExUnit'); ?></strong>
|
81 |
</td>
|
82 |
<td class='column-description desc'>
|
83 |
<div class='plugin-description'>
|
96 |
</th>
|
97 |
<td class='plugin-title'>
|
98 |
<strong><?php _e('Print meta Keyword', 'vkExUnit'); ?></strong>
|
99 |
+
|
100 |
+
<?php if (isset($options['active_metaKeyword']) && $options['active_metaKeyword']) : ?>
|
101 |
+
<div class="row-actions visible">
|
102 |
+
<span class="0">
|
103 |
+
<a href="<?php echo admin_url().'admin.php?page=vkExUnit_main_setting#vkExUnit_common_keywords';?>">
|
104 |
+
<?php _e('Setting','vkExUnit');?>
|
105 |
+
</a></span>
|
106 |
+
</div>
|
107 |
+
<?php endif; ?>
|
108 |
+
|
109 |
</td>
|
110 |
<td class='column-Keyword desc'>
|
111 |
<div class='plugin-Keyword'>
|
114 |
</td>
|
115 |
</tr>
|
116 |
|
117 |
+
<!-- [ active_metaDescription ] -->
|
118 |
+
<tr<?php echo (isset($options['active_metaDescription']) && $options['active_metaDescription'])? ' class="active"': ' class="inactive"'; ?>>
|
119 |
+
<th scope='row' class='check-column'>
|
120 |
+
<label class='screen-reader-text' for='checkbox_active_metaDescription' >
|
121 |
+
<?php _e('Choose Print meta description.', 'vkExUnit'); ?>
|
122 |
+
</label>
|
123 |
+
<input type="checkbox" name="vkExUnit_common_options[active_metaDescription]" id="checkbox_active_metaDescription" value="true" <?php echo (isset($options['active_metaDescription']) && $options['active_metaDescription'])? 'checked': ''; ?> />
|
124 |
+
</th>
|
125 |
+
<td class='plugin-title'>
|
126 |
+
<strong><?php _e('Print meta description', 'vkExUnit'); ?></strong>
|
127 |
+
</td>
|
128 |
+
<td class='column-description desc'>
|
129 |
+
<div class='plugin-description'>
|
130 |
+
<p><?php _e('Print meta description to html head.', 'vkExUnit'); ?></p>
|
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'>
|
141 |
</th>
|
142 |
<td class='plugin-title'>
|
143 |
<strong><?php _e('Social media cooperation.', 'vkExUnit'); ?></strong>
|
144 |
+
|
|
|
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>
|
152 |
+
<?php endif; ?>
|
153 |
+
|
154 |
</td>
|
155 |
<td class='column-description desc'>
|
156 |
<div class='plugin-description'>
|
224 |
<td class='column-description desc'>
|
225 |
<div class='plugin-description'>
|
226 |
<p><?php _e('You can use various widgets.', 'vkExUnit'); ?></p>
|
227 |
+
<ul>
|
228 |
+
<li><?php _e('VK_Recent Posts - display the link text and the date of the latest article title.','vkExUnit');?></li>
|
229 |
+
<li><?php _e('VK_Page content to widget - display the contents of the page to the widgets.','vkExUnit');?></li>
|
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>
|
236 |
</tr>
|
252 |
</div><!-- [ /.plugin-description ] -->
|
253 |
</td>
|
254 |
</tr>
|
255 |
+
|
256 |
+
<!-- [ AUTO Eye Catch ] -->
|
257 |
+
<tr<?php echo (isset($options['active_auto_eyecatch']) && $options['active_auto_eyecatch'])? ' class="active"': ' class="inactive"'; ?>>
|
258 |
+
<th scope='row' class='check-column'>
|
259 |
+
<label class='screen-reader-text' for='checkbox_active_auto_eyecatch' >
|
260 |
+
<?php _e('Automatic Eye Catch insert', 'vkExUnit'); ?>
|
261 |
+
</label>
|
262 |
+
<input type="checkbox" name="vkExUnit_common_options[active_auto_eyecatch]" id="checkbox_active_auto_eyecatch" value="true" <?php echo (isset($options['active_auto_eyecatch']) && $options['active_auto_eyecatch'])? 'checked': ''; ?> />
|
263 |
+
</th>
|
264 |
+
<td class='plugin-title'>
|
265 |
+
<strong><?php _e('Automatic Eye Catch insert', 'vkExUnit'); ?></strong>
|
266 |
+
</td>
|
267 |
+
<td class='column-description desc'>
|
268 |
+
<div class='plugin-description'>
|
269 |
+
<p><?php _e('Display Eye Catch image at before content.', 'vkExUnit'); ?></p>
|
270 |
+
</div><!-- [ /.plugin-description ] -->
|
271 |
+
</td>
|
272 |
+
|
273 |
+
</tr>
|
274 |
</tbody>
|
275 |
|
276 |
<tfoot>
|