Version Description
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 0.1.5.2 |
Comparing to | |
See all releases |
Code changes from version 0.1.5.1 to 0.1.5.2
- _scss/style.scss +25 -3
- common_init.php +2 -0
- css/style.css +10 -18
- css/style_in_bs.css +8 -0
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +667 -641
- languages/vkexunit.pot +470 -443
- plugins/child_page_index/child_page_index.php +99 -0
- plugins/sns/function_og.php +2 -2
- readme.txt +1 -1
- vkExUnit.php +8 -8
- vkExUnit_admin.php +18 -0
_scss/style.scss
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
@charset "utf-8";
|
2 |
-
|
3 |
-
|
4 |
|
5 |
/*-------------------------------------------------*/
|
6 |
/* ex_unit
|
@@ -19,6 +19,8 @@
|
|
19 |
/*-------------------------------------------*/
|
20 |
/* 3PR area wiget Plugin
|
21 |
/*-------------------------------------------*/
|
|
|
|
|
22 |
|
23 |
/*-------------------------------------------*/
|
24 |
/* .common
|
@@ -157,9 +159,9 @@
|
|
157 |
text-decoration: none;
|
158 |
font-size: 20px;
|
159 |
&:hover{
|
160 |
-
opacity: 0.8;
|
161 |
color: #fff;
|
162 |
text-decoration: none;
|
|
|
163 |
}
|
164 |
}
|
165 |
.fa{
|
@@ -242,4 +244,24 @@
|
|
242 |
margin-bottom: 1.5em;
|
243 |
}
|
244 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
}
|
1 |
@charset "utf-8";
|
2 |
+
//@import "compass";
|
3 |
+
//@import "_bizvektor_theme_included_style";
|
4 |
|
5 |
/*-------------------------------------------------*/
|
6 |
/* ex_unit
|
19 |
/*-------------------------------------------*/
|
20 |
/* 3PR area wiget Plugin
|
21 |
/*-------------------------------------------*/
|
22 |
+
/* childPageIndex Plugin
|
23 |
+
/*-------------------------------------------*/
|
24 |
|
25 |
/*-------------------------------------------*/
|
26 |
/* .common
|
159 |
text-decoration: none;
|
160 |
font-size: 20px;
|
161 |
&:hover{
|
|
|
162 |
color: #fff;
|
163 |
text-decoration: none;
|
164 |
+
opacity: 0.8;
|
165 |
}
|
166 |
}
|
167 |
.fa{
|
244 |
margin-bottom: 1.5em;
|
245 |
}
|
246 |
}
|
247 |
+
}
|
248 |
+
/*-------------------------------------------*/
|
249 |
+
/* childPageIndex Plugin
|
250 |
+
/*-------------------------------------------*/
|
251 |
+
.childPage_list {
|
252 |
+
a:hover{
|
253 |
+
text-decoration: none;
|
254 |
+
}
|
255 |
+
.childPage_list_body{
|
256 |
+
color: #333;
|
257 |
+
font-size: 14px;
|
258 |
+
&:hover{
|
259 |
+
text-decoration: underline;
|
260 |
+
}
|
261 |
+
}
|
262 |
+
.childPage_list_more{
|
263 |
+
display: table;
|
264 |
+
float: right;
|
265 |
+
margin-top: 1em;
|
266 |
+
}
|
267 |
}
|
common_init.php
CHANGED
@@ -33,6 +33,7 @@ function vkExUnit_get_common_options_default() {
|
|
33 |
'active_sns' => true,
|
34 |
'active_ga' => true,
|
35 |
'active_relatedPosts' => true,
|
|
|
36 |
'active_otherWidgets' => true,
|
37 |
'active_css_customize' => true,
|
38 |
'active_auto_eyecatch' => true,
|
@@ -55,6 +56,7 @@ function vkExUnit_common_options_validate( $input ) {
|
|
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;
|
33 |
'active_sns' => true,
|
34 |
'active_ga' => true,
|
35 |
'active_relatedPosts' => true,
|
36 |
+
'active_childPageIndex' => true,
|
37 |
'active_otherWidgets' => true,
|
38 |
'active_css_customize' => true,
|
39 |
'active_auto_eyecatch' => true,
|
56 |
$output['active_sns'] = (isset($input['active_sns'])) ? true:false;
|
57 |
$output['active_ga'] = (isset($input['active_ga'])) ? true:false;
|
58 |
$output['active_relatedPosts'] = (isset($input['active_relatedPosts'])) ? true:false;
|
59 |
+
$output['active_childPageIndex'] = (isset($input['active_childPageIndex'])) ? true:false;
|
60 |
$output['active_otherWidgets'] = (isset($input['active_otherWidgets'])) ? true:false;
|
61 |
$output['active_css_customize'] = (isset($input['active_css_customize'])) ? true:false;
|
62 |
$output['active_auto_eyecatch'] = (isset($input['active_auto_eyecatch'])) ? true:false;
|
css/style.css
CHANGED
@@ -1,20 +1,3 @@
|
|
1 |
-
/* .media(bootstrap)
|
2 |
-
/*-------------------------------------------*/
|
3 |
-
.media { border-bottom: 1px solid #e5e5e5; padding: 2em 0; margin-top: 0; }
|
4 |
-
.media:first-child { border-top: 1px solid #e5e5e5; }
|
5 |
-
.media .postList_thumbnail { width: 160px; margin-bottom: 0.5em; padding-right: 30px; display: block; overflow: hidden; float: left; }
|
6 |
-
.media .postList_thumbnail a { position: relative; display: block; overflow: hidden; }
|
7 |
-
.media .postList_thumbnail img { width: 100%; height: auto; }
|
8 |
-
.media .postList_thumbnail .postList_cateLabel { position: absolute; bottom: 0; left: 0; }
|
9 |
-
.media .media-body .media-heading { font-size: 1.8em; line-height: 1.3em; margin-top: 0; margin-bottom: 0.5em; font-weight: normal; }
|
10 |
-
.media .media-body .media-heading a { color: #464646; }
|
11 |
-
.media .media-body .media-heading a:hover { text-decoration: none; }
|
12 |
-
.media .media-body p { margin-bottom: 0; }
|
13 |
-
.media .media-body a.media-body_excerpt { color: #464646; }
|
14 |
-
|
15 |
-
@media (max-width: 767px) { .media .postList_thumbnail { padding-right: 20px; }
|
16 |
-
.media .media-body .media-heading { font-size: 1.2em; line-height: 1.3em; margin-bottom: 0.5em; } }
|
17 |
-
@media (max-width: 500px) { .media .postList_thumbnail { width: 100px; } }
|
18 |
/*-------------------------------------------------*/
|
19 |
/* ex_unit
|
20 |
/*-------------------------------------------------*/
|
@@ -32,6 +15,8 @@
|
|
32 |
/*-------------------------------------------*/
|
33 |
/* 3PR area wiget Plugin
|
34 |
/*-------------------------------------------*/
|
|
|
|
|
35 |
/*-------------------------------------------*/
|
36 |
/* .common
|
37 |
/*-------------------------------------------*/
|
@@ -120,7 +105,7 @@
|
|
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 {
|
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; }
|
@@ -143,3 +128,10 @@
|
|
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; } }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*-------------------------------------------------*/
|
2 |
/* ex_unit
|
3 |
/*-------------------------------------------------*/
|
15 |
/*-------------------------------------------*/
|
16 |
/* 3PR area wiget Plugin
|
17 |
/*-------------------------------------------*/
|
18 |
+
/* childPageIndex Plugin
|
19 |
+
/*-------------------------------------------*/
|
20 |
/*-------------------------------------------*/
|
21 |
/* .common
|
22 |
/*-------------------------------------------*/
|
105 |
.sns_btns { margin: 0; padding: 0; width: 100%; }
|
106 |
.sns_btns li { float: left; margin-right: 0.45em; list-style: none; text-align: center; }
|
107 |
.sns_btns a { display: block; display: table; width: 45px; height: 45px; border-radius: 23px; color: #fff; text-decoration: none; font-size: 20px; }
|
108 |
+
.sns_btns a:hover { color: #fff; text-decoration: none; opacity: 0.8; }
|
109 |
.sns_btns .fa { display: table-cell; vertical-align: middle; text-align: center; }
|
110 |
.sns_btns .facebook_btn a { background: #3b5998; }
|
111 |
.sns_btns .twitter_btn a { background: #55acee; }
|
128 |
@media screen and (max-width: 768px) { .prBox .media_pc { display: none; }
|
129 |
.prBox .media_sp { display: block; }
|
130 |
.prBox .linkurl { margin-bottom: 1.5em; } }
|
131 |
+
/*-------------------------------------------*/
|
132 |
+
/* childPageIndex Plugin
|
133 |
+
/*-------------------------------------------*/
|
134 |
+
.childPage_list a:hover { text-decoration: none; }
|
135 |
+
.childPage_list .childPage_list_body { color: #333; font-size: 14px; }
|
136 |
+
.childPage_list .childPage_list_body:hover { text-decoration: underline; }
|
137 |
+
.childPage_list .childPage_list_more { display: table; float: right; margin-top: 1em; }
|
css/style_in_bs.css
CHANGED
@@ -2667,3 +2667,11 @@ button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background
|
|
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; } }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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; } }
|
2670 |
+
|
2671 |
+
/*-------------------------------------------*/
|
2672 |
+
/* childPageIndex Plugin
|
2673 |
+
/*-------------------------------------------*/
|
2674 |
+
.childPage_list a:hover { text-decoration: none; }
|
2675 |
+
.childPage_list .childPage_list_body { color: #333; font-size: 14px; }
|
2676 |
+
.childPage_list .childPage_list_body:hover { text-decoration: underline; }
|
2677 |
+
.childPage_list .childPage_list_more { display: table; float: right; margin-top: 1em; }
|
languages/vkExUnit-ja.mo
CHANGED
Binary file
|
languages/vkExUnit-ja.po
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2015-07-
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
"Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
|
@@ -9,412 +9,171 @@ msgstr ""
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_x;_e\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
-
#:
|
19 |
-
#:
|
20 |
msgid "Main setting"
|
21 |
msgstr "メイン設定"
|
22 |
|
23 |
-
#:
|
24 |
#, php-format
|
25 |
msgid "Search Results for : %s"
|
26 |
msgstr "検索結果 : %s"
|
27 |
|
28 |
-
#:
|
29 |
msgid "Not found"
|
30 |
msgstr "見つかりません"
|
31 |
|
32 |
-
#:
|
33 |
#, php-format
|
34 |
msgid "Page of %s"
|
35 |
msgstr "%s のページ"
|
36 |
|
37 |
-
#:
|
38 |
#, php-format
|
39 |
msgid "About %s"
|
40 |
msgstr "%s について"
|
41 |
|
42 |
-
#:
|
43 |
msgid "Y"
|
44 |
msgstr "年"
|
45 |
|
46 |
-
#:
|
47 |
-
#:
|
48 |
#, php-format
|
49 |
msgid "Article of %s."
|
50 |
msgstr "%s の記事"
|
51 |
|
52 |
-
#:
|
53 |
msgid "F Y"
|
54 |
msgstr "年月"
|
55 |
|
56 |
-
#:
|
57 |
#, php-format
|
58 |
msgid "Author: %s"
|
59 |
msgstr "著者: %s"
|
60 |
|
61 |
-
#:
|
62 |
msgid "F j, Y"
|
63 |
msgstr "月日, 年"
|
64 |
|
65 |
-
#:
|
66 |
msgid "Asides"
|
67 |
msgstr "サイド"
|
68 |
|
69 |
-
#:
|
70 |
msgid "Galleries"
|
71 |
msgstr "ギャラリー"
|
72 |
|
73 |
-
#:
|
74 |
msgid "Images"
|
75 |
msgstr "画像"
|
76 |
|
77 |
-
#:
|
78 |
msgid "Videos"
|
79 |
msgstr "ビデオ"
|
80 |
|
81 |
-
#:
|
82 |
msgid "Quotes"
|
83 |
msgstr "引用"
|
84 |
|
85 |
-
#:
|
86 |
msgid "Links"
|
87 |
msgstr "リンク"
|
88 |
|
89 |
-
#:
|
90 |
msgid "Statuses"
|
91 |
msgstr "ステータス"
|
92 |
|
93 |
-
#:
|
94 |
msgid "Audio"
|
95 |
msgstr "オーディオ"
|
96 |
|
97 |
-
#:
|
98 |
msgid "Chats"
|
99 |
msgstr "チャット"
|
100 |
|
101 |
-
#:
|
102 |
-
#:
|
103 |
msgid "Archives"
|
104 |
msgstr "アーカイブ"
|
105 |
|
106 |
-
#:
|
107 |
-
msgid "Select all"
|
108 |
-
msgstr "全てを選択"
|
109 |
-
|
110 |
-
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:298
|
111 |
-
msgid "Function"
|
112 |
-
msgstr "有効化"
|
113 |
-
|
114 |
-
#: ../vkExUnit_admin.php:12 ../vkExUnit_admin.php:298
|
115 |
-
msgid "Description"
|
116 |
-
msgstr "説明"
|
117 |
-
|
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:121
|
151 |
-
msgid "Choose Print meta description."
|
152 |
-
msgstr "出力する meta description を選択して下さい。"
|
153 |
-
|
154 |
-
#: ../vkExUnit_admin.php:62
|
155 |
-
msgid "Favicon setting"
|
156 |
-
msgstr "ファビコン設定"
|
157 |
-
|
158 |
-
#: ../vkExUnit_admin.php:66
|
159 |
-
msgid "About favicon."
|
160 |
-
msgstr ""
|
161 |
-
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
162 |
-
"(ファビコン)を設定します。"
|
163 |
-
|
164 |
-
#: ../vkExUnit_admin.php:75
|
165 |
-
msgid "Choose Rewrite the title tag"
|
166 |
-
msgstr "タイトルタグの書き換えを選択する"
|
167 |
-
|
168 |
-
#: ../vkExUnit_admin.php:80
|
169 |
-
msgid "Rewrite the title tag"
|
170 |
-
msgstr "タイトルタグの書き換え"
|
171 |
-
|
172 |
-
#: ../vkExUnit_admin.php:84
|
173 |
-
msgid "Print is rewritten by its own rules to html head."
|
174 |
-
msgstr ""
|
175 |
-
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
176 |
-
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
177 |
-
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
178 |
-
|
179 |
-
#: ../vkExUnit_admin.php:93
|
180 |
-
msgid "Choose Print meta Keyword."
|
181 |
-
msgstr "メタキーワードを選んでください。"
|
182 |
-
|
183 |
-
#: ../vkExUnit_admin.php:98
|
184 |
-
msgid "Print meta Keyword"
|
185 |
-
msgstr "メタキーワードを出力"
|
186 |
-
|
187 |
-
#: ../vkExUnit_admin.php:104 ../vkExUnit_admin.php:150
|
188 |
-
#: ../vkExUnit_admin.php:188 ../vkExUnit_admin.php:231
|
189 |
-
#: ../vkExUnit_admin.php:264
|
190 |
-
msgid "Setting"
|
191 |
-
msgstr "設定"
|
192 |
-
|
193 |
-
#: ../vkExUnit_admin.php:112
|
194 |
-
msgid "Print meta Keyword to html head."
|
195 |
-
msgstr "ヘッダーにメタキーワードを出力します。"
|
196 |
-
|
197 |
-
#: ../vkExUnit_admin.php:126
|
198 |
-
msgid "Print meta description"
|
199 |
-
msgstr "メタディスクリプションタグを出力"
|
200 |
-
|
201 |
-
#: ../vkExUnit_admin.php:130
|
202 |
-
msgid "Print meta description to html head."
|
203 |
-
msgstr ""
|
204 |
-
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
205 |
-
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
206 |
-
"している場合はチェックを外して下さい。"
|
207 |
-
|
208 |
-
#: ../vkExUnit_admin.php:139
|
209 |
-
msgid "Choose Social media cooperation."
|
210 |
-
msgstr "連携するソーシャルメディアを選択します。"
|
211 |
-
|
212 |
-
#: ../vkExUnit_admin.php:144
|
213 |
-
msgid "Social media cooperation."
|
214 |
-
msgstr "ソーシャルメディアとの連携"
|
215 |
-
|
216 |
-
#: ../vkExUnit_admin.php:159
|
217 |
-
msgid "Print og tags to html head."
|
218 |
-
msgstr "OG タグを html head 内へ出力します。"
|
219 |
-
|
220 |
-
#: ../vkExUnit_admin.php:160
|
221 |
-
msgid "Print twitter card tags to html head."
|
222 |
-
msgstr "Twitter カードタグを html head 内へ出力します。"
|
223 |
-
|
224 |
-
#: ../vkExUnit_admin.php:161
|
225 |
-
msgid "Print social bookmark buttons."
|
226 |
-
msgstr "ソーシャルブックマークボタンを表示します。"
|
227 |
-
|
228 |
-
#: ../vkExUnit_admin.php:162
|
229 |
-
msgid "Facebook Page Plugin widget."
|
230 |
-
msgstr "Facebookページプラグインウィジェット"
|
231 |
-
|
232 |
-
#: ../vkExUnit_admin.php:163
|
233 |
-
msgid "Print Follow me box to content bottom."
|
234 |
-
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
235 |
-
|
236 |
-
#: ../vkExUnit_admin.php:166
|
237 |
-
msgid "Main setting page"
|
238 |
-
msgstr "メイン設定画面"
|
239 |
-
|
240 |
-
#: ../vkExUnit_admin.php:167
|
241 |
-
#, php-format
|
242 |
-
msgid "* You can stop the function separately from the %s."
|
243 |
-
msgstr "%s から個別に機能を停止する事ができます。"
|
244 |
-
|
245 |
-
#: ../vkExUnit_admin.php:177
|
246 |
-
msgid "Choose Print Google Analytics tracking code."
|
247 |
-
msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
|
248 |
-
|
249 |
-
#: ../vkExUnit_admin.php:196
|
250 |
-
msgid "Print Google Analytics tracking code."
|
251 |
-
msgstr ""
|
252 |
-
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
253 |
-
"リンクより設定画面へすすみ Google アナリティクス ID を入力して下さい。使用中"
|
254 |
-
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
255 |
-
"合はチェックを外して下さい。"
|
256 |
-
|
257 |
-
#: ../vkExUnit_admin.php:205
|
258 |
-
msgid "Choose Related posts."
|
259 |
-
msgstr "関連記事を選択"
|
260 |
-
|
261 |
-
#: ../vkExUnit_admin.php:210 ../plugins/related_posts/related_posts.php:34
|
262 |
-
msgid "Related posts"
|
263 |
-
msgstr "関連記事を表示"
|
264 |
-
|
265 |
-
#: ../vkExUnit_admin.php:214
|
266 |
-
msgid "Print Related posts lists to post content bottom."
|
267 |
-
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
268 |
-
|
269 |
-
#: ../vkExUnit_admin.php:223 ../vkExUnit_admin.php:254
|
270 |
-
msgid "Choose other widgets."
|
271 |
-
msgstr "Other ウィジェットを選択"
|
272 |
-
|
273 |
-
#: ../vkExUnit_admin.php:228
|
274 |
-
msgid "Widgets"
|
275 |
-
msgstr "ウィジェット"
|
276 |
-
|
277 |
-
#: ../vkExUnit_admin.php:236
|
278 |
-
msgid "You can use various widgets."
|
279 |
-
msgstr ""
|
280 |
-
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
|
281 |
-
"「ウィジェット」の設定画面より行って下さい。"
|
282 |
-
|
283 |
-
#: ../vkExUnit_admin.php:238
|
284 |
-
msgid ""
|
285 |
-
"VK_Recent Posts - display the link text and the date of the latest article "
|
286 |
-
"title."
|
287 |
-
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
288 |
-
|
289 |
-
#: ../vkExUnit_admin.php:239
|
290 |
-
msgid ""
|
291 |
-
"VK_Page content to widget - display the contents of the page to the widgets."
|
292 |
-
msgstr ""
|
293 |
-
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
294 |
-
|
295 |
-
#: ../vkExUnit_admin.php:240
|
296 |
-
msgid "VK_Profile - display the profile entered in the widget."
|
297 |
-
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
298 |
-
|
299 |
-
#: ../vkExUnit_admin.php:241
|
300 |
-
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
301 |
-
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
302 |
-
|
303 |
-
#: ../vkExUnit_admin.php:242
|
304 |
-
msgid "VK_3PR area - display the 3PR area."
|
305 |
-
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
306 |
-
|
307 |
-
#: ../vkExUnit_admin.php:243
|
308 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:17
|
309 |
-
msgid "categories/tags list"
|
310 |
-
msgstr "カテゴリー/タグ リスト"
|
311 |
-
|
312 |
-
#: ../vkExUnit_admin.php:243
|
313 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:11
|
314 |
-
msgid "Displays a categories, tags or format list."
|
315 |
-
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
316 |
-
|
317 |
-
#: ../vkExUnit_admin.php:244 ../plugins/other_widget/widget-archives.php:14
|
318 |
-
#: ../plugins/other_widget/old/widget-archive-list.php:14
|
319 |
-
msgid "archive list"
|
320 |
-
msgstr "アーカイブリスト"
|
321 |
-
|
322 |
-
#: ../vkExUnit_admin.php:244 ../plugins/other_widget/widget-archives.php:12
|
323 |
-
#: ../plugins/other_widget/old/widget-archive-list.php:12
|
324 |
-
msgid ""
|
325 |
-
"Displays a list of archives. You can choose the post type and also to "
|
326 |
-
"display archives by month or by year."
|
327 |
-
msgstr ""
|
328 |
-
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
329 |
-
"プを選択できます。"
|
330 |
-
|
331 |
-
#: ../vkExUnit_admin.php:259
|
332 |
-
msgid "CSS customize"
|
333 |
-
msgstr "CSSカスタマイズ"
|
334 |
-
|
335 |
-
#: ../vkExUnit_admin.php:271
|
336 |
-
msgid "You can set Customize CSS."
|
337 |
-
msgstr ""
|
338 |
-
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
339 |
-
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
340 |
-
"さい。"
|
341 |
-
|
342 |
-
#: ../vkExUnit_admin.php:280 ../vkExUnit_admin.php:285
|
343 |
-
msgid "Automatic Eye Catch insert"
|
344 |
-
msgstr "アイキャッチ画像自動挿入"
|
345 |
-
|
346 |
-
#: ../vkExUnit_admin.php:289
|
347 |
-
msgid "Display Eye Catch image at before content."
|
348 |
-
msgstr ""
|
349 |
-
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
350 |
-
"す。"
|
351 |
-
|
352 |
-
#: ../plugins/auto_eyecatch.php:32
|
353 |
msgid "Automatic EyeCatch"
|
354 |
msgstr "アイキャッチ自動挿入"
|
355 |
|
356 |
-
#:
|
357 |
msgid "Do not set eyecatch image automatic."
|
358 |
msgstr "アイキャッチ画像を自動挿入しない"
|
359 |
|
360 |
-
#:
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#:
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
-
#:
|
369 |
-
msgid "
|
370 |
-
msgstr "
|
|
|
371 |
|
372 |
-
#:
|
373 |
-
|
374 |
-
|
|
|
|
|
|
|
|
|
375 |
|
376 |
-
#:
|
377 |
-
#:
|
378 |
-
#:
|
379 |
msgid "CSS Customize"
|
380 |
msgstr "CSSカスタマイズ"
|
381 |
|
382 |
-
#:
|
383 |
msgid "You can add custom CSS here."
|
384 |
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
385 |
|
386 |
-
#:
|
387 |
msgid "Save CSS"
|
388 |
msgstr "CSSを保存する"
|
389 |
|
390 |
-
#:
|
391 |
msgid "Your custom CSS was saved."
|
392 |
msgstr "CSSが保存されました"
|
393 |
|
394 |
-
#:
|
395 |
msgid "Error occured. Please try again."
|
396 |
msgstr "何らかのエラー!! また試してみてください"
|
397 |
|
398 |
-
#:
|
399 |
-
#:
|
400 |
-
#:
|
401 |
msgid "Google Analytics Settings"
|
402 |
msgstr "Google Analytics設定"
|
403 |
|
404 |
-
#:
|
405 |
msgid ""
|
406 |
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
407 |
"the site."
|
408 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
409 |
|
410 |
-
#:
|
411 |
-
#:
|
412 |
-
#:
|
413 |
-
#:
|
414 |
msgid "ex) "
|
415 |
msgstr "例: "
|
416 |
|
417 |
-
#:
|
418 |
msgid ""
|
419 |
"Please select the type of Analytics code . (If you are unsure you can skip "
|
420 |
"this.)"
|
@@ -422,24 +181,40 @@ msgstr ""
|
|
422 |
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
423 |
"す )"
|
424 |
|
425 |
-
#:
|
426 |
msgid "To output the Universal Analytics code (default)"
|
427 |
msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
|
428 |
|
429 |
-
#:
|
430 |
msgid "To output only normal code"
|
431 |
msgstr "ノーマルのコードのみを出力します。"
|
432 |
|
433 |
-
#:
|
434 |
msgid "To output both types"
|
435 |
msgstr "両タイプのコードを出力します。"
|
436 |
|
437 |
-
#:
|
438 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
msgid "Meta Description"
|
440 |
msgstr "メタディスクリプション"
|
441 |
|
442 |
-
#:
|
443 |
msgid ""
|
444 |
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
445 |
"page will be reflected in the description of the meta tag."
|
@@ -447,7 +222,7 @@ msgstr ""
|
|
447 |
"各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
|
448 |
"反映されます"
|
449 |
|
450 |
-
#:
|
451 |
msgid ""
|
452 |
"Description of meta tags in the search results screen of search sites such "
|
453 |
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
@@ -458,7 +233,7 @@ msgstr ""
|
|
458 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
459 |
"内容が反映されます。"
|
460 |
|
461 |
-
#:
|
462 |
msgid ""
|
463 |
"The meta description of the top page is subject to the catchphrase of the "
|
464 |
"site. However, its contents will be reflected if the excerpt is entered in "
|
@@ -468,7 +243,7 @@ msgstr ""
|
|
468 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
469 |
"内容が反映されます。"
|
470 |
|
471 |
-
#:
|
472 |
msgid ""
|
473 |
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
474 |
"each article edit page, and check the expert column display."
|
@@ -477,22 +252,22 @@ msgstr ""
|
|
477 |
"ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
|
478 |
"で、チェックして下さい。"
|
479 |
|
480 |
-
#:
|
481 |
-
#:
|
482 |
-
#:
|
483 |
-
#:
|
484 |
msgid "Meta Keywords"
|
485 |
msgstr "メタキーワード"
|
486 |
|
487 |
-
#:
|
488 |
msgid "Meta Keyword"
|
489 |
msgstr "メタキーワード"
|
490 |
|
491 |
-
#:
|
492 |
msgid "Common Keywords"
|
493 |
msgstr "共通キーワード設定"
|
494 |
|
495 |
-
#:
|
496 |
msgid ""
|
497 |
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
498 |
"if you want multiple keywords, enter with separator of \",\"."
|
@@ -500,13 +275,13 @@ msgstr ""
|
|
500 |
"メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
|
501 |
"のキーワードを設定します。複数ある場合は「,」で区切ってください。"
|
502 |
|
503 |
-
#:
|
504 |
msgid "This is not seriously, Because the SearchEngine does not care this."
|
505 |
msgstr ""
|
506 |
"あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
|
507 |
"クターとはなりません。"
|
508 |
|
509 |
-
#:
|
510 |
msgid ""
|
511 |
"For each page individual keyword is enter at the edit screen of each "
|
512 |
"article. 10 keywords maximum, together with a each article keywords is "
|
@@ -515,333 +290,365 @@ msgstr ""
|
|
515 |
"個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
|
516 |
"ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
|
517 |
|
518 |
-
#:
|
519 |
msgid "\",\" separator at end of the last keyword is do not need."
|
520 |
msgstr "最後のキーワードの後ろに「,」は必要ありません。"
|
521 |
|
522 |
-
#:
|
523 |
msgid "Example: WordPress,template,theme,free,GPL"
|
524 |
msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
|
525 |
|
526 |
-
#:
|
527 |
msgid ""
|
528 |
"To distinguish between individual keywords, please enter a , delimiter "
|
529 |
"(optional)."
|
530 |
msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
|
531 |
|
532 |
-
#:
|
533 |
#, php-format
|
534 |
msgid "* keywords common to the entire site can be set from %s."
|
535 |
msgstr "サイト全体のキーワードは %s より設定することができます。"
|
536 |
|
537 |
-
#:
|
538 |
-
|
539 |
-
|
|
|
|
|
|
|
|
|
|
|
540 |
|
541 |
-
#:
|
542 |
-
#:
|
543 |
-
|
544 |
-
|
545 |
-
msgid "3PR area"
|
546 |
-
msgstr "3PR エリア"
|
547 |
|
548 |
-
#:
|
549 |
-
|
550 |
-
|
|
|
|
|
|
|
551 |
|
552 |
-
#:
|
553 |
-
|
554 |
-
|
|
|
555 |
|
556 |
-
#:
|
557 |
-
|
558 |
-
|
|
|
559 |
|
560 |
-
#:
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
563 |
|
564 |
-
#:
|
565 |
-
|
566 |
-
|
567 |
-
#: ../plugins/other_widget/widget-new-posts.php:75
|
568 |
-
#: ../plugins/other_widget/widget-profile.php:35
|
569 |
-
#: ../plugins/sns/function_fbPagePlugin.php:75
|
570 |
-
msgid "Title:"
|
571 |
-
msgstr "タイトル"
|
572 |
|
573 |
-
#:
|
574 |
-
|
575 |
-
|
576 |
-
msgid "Select image for PC:"
|
577 |
-
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
578 |
|
579 |
-
#:
|
580 |
-
|
581 |
-
|
582 |
-
#: ../plugins/other_widget/widget-3pr-area.php:132
|
583 |
-
#: ../plugins/other_widget/widget-3pr-area.php:166
|
584 |
-
#: ../plugins/other_widget/widget-3pr-area.php:183
|
585 |
-
#: ../plugins/other_widget/widget-profile.php:46
|
586 |
-
msgid "Select image"
|
587 |
-
msgstr "画像を選択"
|
588 |
|
589 |
-
#:
|
590 |
-
#:
|
591 |
-
#:
|
592 |
-
#:
|
593 |
-
|
594 |
-
|
595 |
-
#: ../plugins/other_widget/widget-profile.php:47
|
596 |
-
msgid "Clear image"
|
597 |
-
msgstr "画像クリア"
|
598 |
|
599 |
-
#:
|
600 |
-
#:
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
"690px 以上推奨。空欄も可)"
|
606 |
|
607 |
-
#:
|
608 |
-
#:
|
609 |
-
#:
|
610 |
msgid "Summary Text:"
|
611 |
msgstr "概要となるテキスト"
|
612 |
|
613 |
-
#:
|
614 |
-
#:
|
615 |
-
#:
|
616 |
msgid "Link URL:"
|
617 |
msgstr "リンク先ページのURL"
|
618 |
|
619 |
-
#:
|
620 |
msgid "3PR area2 setting"
|
621 |
msgstr "3PR エリア2 設定"
|
622 |
|
623 |
-
#:
|
624 |
msgid "3PR area3 setting"
|
625 |
msgstr "3PR エリア3 設定"
|
626 |
|
627 |
-
#:
|
628 |
-
#: ../plugins/other_widget/widget-3pr-area.php:316
|
629 |
-
#: ../plugins/other_widget/widget-3pr-area.php:359
|
630 |
-
msgid "Read more"
|
631 |
-
msgstr "詳しくはこちら"
|
632 |
-
|
633 |
-
#: ../plugins/other_widget/widget-archives.php:49
|
634 |
-
#: ../plugins/other_widget/widget-archives.php:50
|
635 |
-
#: ../plugins/other_widget/old/widget-archive-list.php:49
|
636 |
-
#: ../plugins/other_widget/old/widget-archive-list.php:50
|
637 |
-
msgid "Monthly archives"
|
638 |
-
msgstr "月別アーカイブ"
|
639 |
-
|
640 |
-
#: ../plugins/other_widget/widget-archives.php:59
|
641 |
-
#: ../plugins/other_widget/old/widget-archive-list.php:59
|
642 |
-
msgid "Title"
|
643 |
-
msgstr "タイトル"
|
644 |
-
|
645 |
-
#: ../plugins/other_widget/widget-archives.php:63
|
646 |
-
#: ../plugins/other_widget/old/widget-archive-list.php:63
|
647 |
-
msgid "Post type"
|
648 |
-
msgstr "ポストタイプ"
|
649 |
-
|
650 |
-
#: ../plugins/other_widget/widget-new-posts.php:11
|
651 |
msgid "Displays a list of your most recent posts"
|
652 |
msgstr "最新の投稿記事リストを表示します。"
|
653 |
|
654 |
-
#:
|
655 |
-
#:
|
656 |
-
#:
|
657 |
msgid "Recent Posts"
|
658 |
msgstr "最新記事"
|
659 |
|
660 |
-
#:
|
661 |
msgid "Display count"
|
662 |
msgstr "表示する記事数"
|
663 |
|
664 |
-
#:
|
665 |
msgid "Slug for the custom type you want to display"
|
666 |
msgstr "表示したい記事タイプ"
|
667 |
|
668 |
-
#:
|
669 |
msgid "Displays a page contents to widget."
|
670 |
msgstr "選択したページの内容を表示します。"
|
671 |
|
672 |
-
#:
|
673 |
msgid "page content to widget"
|
674 |
-
msgstr "
|
675 |
-
|
676 |
-
#: ../plugins/other_widget/widget-page.php:30
|
677 |
-
#: ../plugins/other_widget/widget-taxonomies.php:60
|
678 |
-
#: ../plugins/other_widget/old/widget-page-content.php:30
|
679 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:61
|
680 |
-
msgid "Display page"
|
681 |
-
msgstr "ページを表示"
|
682 |
-
|
683 |
-
#: ../plugins/other_widget/widget-page.php:38
|
684 |
-
#: ../plugins/other_widget/old/widget-page-content.php:38
|
685 |
-
msgid "display title"
|
686 |
-
msgstr "タイトルを表示"
|
687 |
-
|
688 |
-
#: ../plugins/other_widget/widget-page.php:60
|
689 |
-
#: ../plugins/other_widget/old/widget-page-content.php:61
|
690 |
-
msgid "Edit"
|
691 |
-
msgstr "編集"
|
692 |
|
693 |
-
#:
|
694 |
msgid "Displays a your profile"
|
695 |
msgstr ""
|
696 |
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
697 |
|
698 |
-
#:
|
699 |
-
#:
|
700 |
msgid "Profile"
|
701 |
msgstr "プロフィール"
|
702 |
|
703 |
-
#:
|
704 |
msgid "Profile Text"
|
705 |
msgstr "プロフィールテキスト"
|
706 |
|
707 |
-
#:
|
708 |
msgid "Select Profile image:"
|
709 |
msgstr "プロフィール用画像を選択"
|
710 |
|
711 |
-
#:
|
712 |
msgid "Profile Text:"
|
713 |
msgstr "プロフィールテキスト"
|
714 |
|
715 |
-
#:
|
716 |
msgid "Facebook URL:"
|
717 |
msgstr "Facebook リンク先ページのURL"
|
718 |
|
719 |
-
#:
|
720 |
msgid "Twitter URL:"
|
721 |
msgstr "twitterリンク先ページのURL"
|
722 |
|
723 |
-
#:
|
724 |
msgid "Email Address:"
|
725 |
msgstr "Email リンク先ページのURL"
|
726 |
|
727 |
-
#:
|
728 |
msgid "Youtube URL:"
|
729 |
msgstr "Youtube リンク先ページのURL"
|
730 |
|
731 |
-
#:
|
732 |
msgid "RSS URL:"
|
733 |
msgstr "RSS リンク先ページのURL"
|
734 |
|
735 |
-
#:
|
736 |
msgid "instagram URL:"
|
737 |
msgstr "instagram リンク先ページのURL"
|
738 |
|
739 |
-
#:
|
740 |
msgid "linkedin URL:"
|
741 |
msgstr "linkedin リンク先ページのURL"
|
742 |
|
743 |
-
#:
|
744 |
msgid "Site's Profile"
|
745 |
msgstr "プロフィール"
|
746 |
|
747 |
-
#:
|
748 |
msgid "Displays a categories and custom taxonomies list."
|
749 |
msgstr "カテゴリーやカスタム分類のリストを表示します。"
|
750 |
|
751 |
-
#:
|
752 |
msgid "Categories/Custom taxonomies list"
|
753 |
msgstr "カテゴリー/カスタム分類リスト"
|
754 |
|
755 |
-
#:
|
756 |
-
|
757 |
-
|
758 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:49
|
759 |
-
msgid "Category"
|
760 |
-
msgstr "カテゴリー"
|
761 |
-
|
762 |
-
#: ../plugins/other_widget/widget-taxonomies.php:56
|
763 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:57
|
764 |
-
msgid "Label to display"
|
765 |
-
msgstr "表示するラベル"
|
766 |
-
|
767 |
-
#: ../plugins/other_widget/widget-taxonomies.php:76
|
768 |
-
#: ../plugins/other_widget/old/widget-taxonomy-list.php:76
|
769 |
-
msgid "Blog"
|
770 |
-
msgstr "ブログ"
|
771 |
-
|
772 |
-
#: ../plugins/other_widget/old/widget-child-page-list.php:9
|
773 |
-
msgid "Displays list of child page for the current page."
|
774 |
-
msgstr "現在のページの子ページのリストを表示します。"
|
775 |
-
|
776 |
-
#: ../plugins/other_widget/old/widget-child-page-list.php:11
|
777 |
-
msgid "child pages list"
|
778 |
-
msgstr "子ページのリスト"
|
779 |
-
|
780 |
-
#: ../plugins/other_widget/old/widget-page-content.php:10
|
781 |
-
msgid "Displays the content of a chosen page."
|
782 |
-
msgstr "選択したページの内容を表示します。"
|
783 |
-
|
784 |
-
#: ../plugins/other_widget/old/widget-page-content.php:12
|
785 |
-
msgid "page content for top"
|
786 |
-
msgstr "トップのページコンテンツ"
|
787 |
-
|
788 |
-
#: ../plugins/other_widget/old/widget-rss-widget.php:9
|
789 |
-
msgid "Displays entries list from a RSS feed link."
|
790 |
-
msgstr "RSSフィードリンクからエントリーリストを表示します。"
|
791 |
-
|
792 |
-
#: ../plugins/other_widget/old/widget-rss-widget.php:11
|
793 |
-
msgid "RSS entries for top"
|
794 |
-
msgstr "トップのRSSエントリー"
|
795 |
-
|
796 |
-
#: ../plugins/other_widget/old/widget-rss-widget.php:25
|
797 |
-
msgid "Blog entries"
|
798 |
-
msgstr "ブログエントリー"
|
799 |
-
|
800 |
-
#: ../plugins/other_widget/old/widget-rss-widget.php:30
|
801 |
-
msgid "Heading title"
|
802 |
-
msgstr "見出しタイトル"
|
803 |
|
804 |
-
#:
|
805 |
msgid "Displays a Facebook Page Plugin"
|
806 |
msgstr "Facebook ページプラグインを表示します。"
|
807 |
|
808 |
-
#:
|
809 |
msgid "Height"
|
810 |
msgstr "高さ"
|
811 |
|
812 |
-
#:
|
813 |
msgid "Show Friend's Faces"
|
814 |
msgstr "アイコンを表示する"
|
815 |
|
816 |
-
#:
|
817 |
msgid "Hide Cover Photo"
|
818 |
msgstr "カバー画像を表示しない"
|
819 |
|
820 |
-
#:
|
821 |
msgid "Show Page Posts"
|
822 |
msgstr "タイムラインを表示"
|
823 |
|
824 |
-
#:
|
825 |
msgid "Follow me"
|
826 |
msgstr "このサイトをフォローする"
|
827 |
|
828 |
-
#:
|
829 |
-
msgid "
|
830 |
-
msgstr "
|
831 |
|
832 |
-
#:
|
833 |
-
msgid "
|
834 |
-
msgstr "
|
835 |
|
836 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
msgid "facebook application ID"
|
838 |
msgstr "facebookアプリケーションID"
|
839 |
|
840 |
-
#:
|
841 |
msgid "I will check and get the application ID"
|
842 |
msgstr "アプリケーションIDを確認・取得する "
|
843 |
|
844 |
-
#:
|
845 |
msgid ""
|
846 |
"* If an application ID is not specified, neither a Like button nor the "
|
847 |
"comment field displays and operates correctly."
|
@@ -849,7 +656,7 @@ msgstr ""
|
|
849 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
850 |
"ん。"
|
851 |
|
852 |
-
#:
|
853 |
msgid ""
|
854 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
855 |
"much about how to get application ID for Facebook."
|
@@ -857,115 +664,19 @@ msgstr ""
|
|
857 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
858 |
"アプリケーションID 取得」などで検索して下さい。"
|
859 |
|
860 |
-
#:
|
861 |
-
msgid "facebook page URL"
|
862 |
-
msgstr "FacebookページURL"
|
863 |
-
|
864 |
-
#: ../plugins/sns/sns_admin.php:26
|
865 |
-
msgid "OG default image"
|
866 |
-
msgstr "デフォルトのOGPイメージ"
|
867 |
-
|
868 |
-
#: ../plugins/sns/sns_admin.php:27 ../plugins/sns/old/sns_admin.php:57
|
869 |
-
msgid ""
|
870 |
-
"If, for example someone pressed the Facebook [Like] button, this is the "
|
871 |
-
"image that appears on the Facebook timeline."
|
872 |
-
msgstr ""
|
873 |
-
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
874 |
-
"ムラインに表示されます。"
|
875 |
-
|
876 |
-
#: ../plugins/sns/sns_admin.php:28 ../plugins/sns/old/sns_admin.php:58
|
877 |
-
msgid "If a featured image is specified for the page, it takes precedence."
|
878 |
-
msgstr ""
|
879 |
-
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
880 |
-
"す。"
|
881 |
-
|
882 |
-
#: ../plugins/sns/sns_admin.php:30 ../plugins/sns/old/sns_admin.php:60
|
883 |
-
msgid "Select an image"
|
884 |
-
msgstr "画像を選択"
|
885 |
-
|
886 |
-
#: ../plugins/sns/sns_admin.php:32 ../plugins/sns/old/sns_admin.php:62
|
887 |
-
msgid ""
|
888 |
-
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
889 |
-
"recommended."
|
890 |
-
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
891 |
-
|
892 |
-
#: ../plugins/sns/sns_admin.php:36
|
893 |
-
msgid "twitter ID"
|
894 |
-
msgstr "twitterアカウント"
|
895 |
-
|
896 |
-
#: ../plugins/sns/sns_admin.php:41
|
897 |
-
msgid "OG tags"
|
898 |
-
msgstr "OGタグ"
|
899 |
-
|
900 |
-
#: ../plugins/sns/sns_admin.php:43
|
901 |
-
msgid "Print the OG tags"
|
902 |
-
msgstr "OGタグを出力する"
|
903 |
-
|
904 |
-
#: ../plugins/sns/sns_admin.php:44
|
905 |
-
msgid ""
|
906 |
-
"If other plug-ins are used for the OG, do not output the OG using this "
|
907 |
-
"plugin."
|
908 |
-
msgstr ""
|
909 |
-
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
910 |
-
"る場合は、このプラグインでの出力は必要ありません。"
|
911 |
-
|
912 |
-
#: ../plugins/sns/sns_admin.php:49
|
913 |
-
msgid "Twitter Card tags"
|
914 |
-
msgstr "Twitterカードタグ"
|
915 |
-
|
916 |
-
#: ../plugins/sns/sns_admin.php:51
|
917 |
-
msgid "Print the Twitter Card tags"
|
918 |
-
msgstr "Twitter カードタグを html head 内へ出力します。"
|
919 |
-
|
920 |
-
#: ../plugins/sns/sns_admin.php:56
|
921 |
-
msgid "Social bookmark buttons"
|
922 |
-
msgstr "ソーシャルボタン"
|
923 |
-
|
924 |
-
#: ../plugins/sns/sns_admin.php:57
|
925 |
-
msgid "Print the social bookmark buttons"
|
926 |
-
msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
|
927 |
-
|
928 |
-
#: ../plugins/sns/sns_admin.php:61
|
929 |
-
msgid "Follow me box"
|
930 |
-
msgstr "Follow me box"
|
931 |
-
|
932 |
-
#: ../plugins/sns/sns_admin.php:62
|
933 |
-
msgid "Print the Follow me box"
|
934 |
-
msgstr "Follow me ユニットを本文の下に表示する"
|
935 |
-
|
936 |
-
#: ../plugins/sns/old/sns.php:378
|
937 |
-
msgid "* It is necessary to set the Theme options page."
|
938 |
-
msgstr "* テーマオプションページで設定する必要があります。"
|
939 |
-
|
940 |
-
#: ../plugins/sns/old/sns_admin.php:12
|
941 |
-
msgid "Social media"
|
942 |
-
msgstr "ソーシャルメディア"
|
943 |
-
|
944 |
-
#: ../plugins/sns/old/sns_admin.php:13
|
945 |
-
msgid "If you are unsure, you can leave for later."
|
946 |
-
msgstr "不明な場合は後で設定することができます。"
|
947 |
-
|
948 |
-
#: ../plugins/sns/old/sns_admin.php:18
|
949 |
-
msgid ""
|
950 |
-
"If you wish to link to a personal account or a Facebook page banner will be "
|
951 |
-
"displayed if you enter the URL."
|
952 |
-
msgstr ""
|
953 |
-
"個人アカウントやFacebookページのバナーにリンクしたい場合は URL を入力して下さ"
|
954 |
-
"い。"
|
955 |
-
|
956 |
-
#: ../plugins/sns/old/sns_admin.php:35
|
957 |
msgid "Facebook user ID (optional)"
|
958 |
msgstr "Facebook ユーザーID( オプション )"
|
959 |
|
960 |
-
#:
|
961 |
msgid "Please enter the Facebook user ID of the administrator."
|
962 |
msgstr "管理者のFacebookユーザーIDを入力してください。"
|
963 |
|
964 |
-
#:
|
965 |
msgid "* It is not the application ID of the Facebook page."
|
966 |
msgstr "* FacebookページのアプリケーションIDではありません。"
|
967 |
|
968 |
-
#:
|
969 |
msgid ""
|
970 |
"You can see the personal Facebook ID when you access the following url "
|
971 |
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
@@ -973,29 +684,29 @@ msgstr ""
|
|
973 |
"このアドレス [ http://graph.facebook.com/( 自分の名前のURL (例 : hidekazu."
|
974 |
"ishikawa) ) ] にアクセスして個人の Facebook ID を確認できます。"
|
975 |
|
976 |
-
#:
|
977 |
msgid ""
|
978 |
"Please search for terms as [find facebook user ID] if you are still not sure."
|
979 |
msgstr ""
|
980 |
"まだ不明な場合は、[ FacebookのユーザーIDを検索 ] などのキーワードで検索して下"
|
981 |
"さい。"
|
982 |
|
983 |
-
#:
|
984 |
msgid "twitter account"
|
985 |
msgstr "Twitter アカウント"
|
986 |
|
987 |
-
#:
|
988 |
msgid ""
|
989 |
"If you would like to link to a Twitter account, banner will be displayed if "
|
990 |
"you enter the account name."
|
991 |
msgstr ""
|
992 |
"Twitterアカウントをバナーにリンクしたい場合は、アカウント名を入力して下さい。"
|
993 |
|
994 |
-
#:
|
995 |
msgid "widget"
|
996 |
msgstr "ウィジェット"
|
997 |
|
998 |
-
#:
|
999 |
#, php-format
|
1000 |
msgid ""
|
1001 |
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
@@ -1004,19 +715,43 @@ msgstr ""
|
|
1004 |
"Twitter のウィジェットなどを使用する時、ここを空にできます。%s にソースコード"
|
1005 |
"を貼り付けます。"
|
1006 |
|
1007 |
-
#:
|
1008 |
msgid "OGP default image"
|
1009 |
msgstr "OGP デフォルト画像"
|
1010 |
|
1011 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1012 |
msgid "Social buttons"
|
1013 |
msgstr "ソーシャルボタン"
|
1014 |
|
1015 |
-
#:
|
1016 |
msgid "Please check the type of page that displays the social button."
|
1017 |
msgstr "ページに表示するソーシャルボタンの種類を選択して下さい。"
|
1018 |
|
1019 |
-
#:
|
1020 |
msgid ""
|
1021 |
"Within the type of page that is checked, if there is a particular page you "
|
1022 |
"do not wish to display, enter the Page ID. If multiple pages, please "
|
@@ -1025,65 +760,356 @@ msgstr ""
|
|
1025 |
"表示したくない特定のページが有る場合にページ ID を入力して下さい。複数のペー"
|
1026 |
"ジがある場合は、カンマで区切って入力して下さい。"
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "facebook comments box"
|
1030 |
msgstr "Facebookのコメントボックス"
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid "Please check the type of the page to display Facebook comments."
|
1034 |
msgstr "Facebook のコメントを表示するページタイプを確認して下さい。"
|
1035 |
|
1036 |
-
#:
|
1037 |
msgid "If you wish to use Facebook LikeBox, please check the location."
|
1038 |
msgstr "Facebook のいいねボックスを使用する場合は、場所を確認して下さい。"
|
1039 |
|
1040 |
-
#:
|
1041 |
msgid "* Please be sure to set Facebook application ID."
|
1042 |
msgstr "Facebook のアプリケーションIDを設定してください。"
|
1043 |
|
1044 |
-
#:
|
1045 |
msgid "URL of the Facebook page."
|
1046 |
msgstr "Facebook ページの URL"
|
1047 |
|
1048 |
-
#:
|
1049 |
msgid "Display stream"
|
1050 |
msgstr "タイムラインを表示する"
|
1051 |
|
1052 |
-
#:
|
1053 |
msgid "Display"
|
1054 |
msgstr "表示"
|
1055 |
|
1056 |
-
#:
|
1057 |
msgid "Display faces"
|
1058 |
msgstr "アイコンを表示する"
|
1059 |
|
1060 |
-
#:
|
1061 |
msgid "Height of LikeBox"
|
1062 |
msgstr "いいねボックスの高さ"
|
1063 |
|
1064 |
-
#:
|
1065 |
msgid "Do not output the OGP"
|
1066 |
msgstr "OGP を出力しません"
|
1067 |
|
1068 |
-
#:
|
1069 |
msgid ""
|
1070 |
"If other plug-ins are used for the OGP, do not output the OGP using "
|
1071 |
"BizVektor."
|
1072 |
msgstr ""
|
1073 |
"他の OGP プラグインを使用している場合は、BizVektor を使用して出力しません。"
|
1074 |
|
1075 |
-
#:
|
1076 |
msgid "I want to output the OGP tags using BizVektor"
|
1077 |
msgstr "BizVektor を使用して OGP タグを出力したい。"
|
1078 |
|
1079 |
-
#:
|
1080 |
msgid "Do not output OGP tags using BizVektor"
|
1081 |
msgstr "BizVektor を使用して OGP タグを出力しない。"
|
1082 |
|
1083 |
-
#:
|
1084 |
msgid "Page top"
|
1085 |
msgstr "ページ先頭へ"
|
1086 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 |
#~ msgid "Other Widgets"
|
1088 |
#~ msgstr "Other ウィジェット"
|
1089 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-07-13 18:38+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"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.2\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_x;_e\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
+
#: admin_wrapper.php:7 admin_wrapper.php:8
|
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 common_helpers.php:183
|
47 |
+
#: common_helpers.php:187
|
48 |
#, php-format
|
49 |
msgid "Article of %s."
|
50 |
msgstr "%s の記事"
|
51 |
|
52 |
+
#: common_helpers.php:178 common_helpers.php:225
|
53 |
msgid "F Y"
|
54 |
msgstr "年月"
|
55 |
|
56 |
+
#: common_helpers.php:221
|
57 |
#, php-format
|
58 |
msgid "Author: %s"
|
59 |
msgstr "著者: %s"
|
60 |
|
61 |
+
#: common_helpers.php:227
|
62 |
msgid "F j, Y"
|
63 |
msgstr "月日, 年"
|
64 |
|
65 |
+
#: common_helpers.php:230
|
66 |
msgid "Asides"
|
67 |
msgstr "サイド"
|
68 |
|
69 |
+
#: common_helpers.php:232
|
70 |
msgid "Galleries"
|
71 |
msgstr "ギャラリー"
|
72 |
|
73 |
+
#: common_helpers.php:234
|
74 |
msgid "Images"
|
75 |
msgstr "画像"
|
76 |
|
77 |
+
#: common_helpers.php:236
|
78 |
msgid "Videos"
|
79 |
msgstr "ビデオ"
|
80 |
|
81 |
+
#: common_helpers.php:238
|
82 |
msgid "Quotes"
|
83 |
msgstr "引用"
|
84 |
|
85 |
+
#: common_helpers.php:240
|
86 |
msgid "Links"
|
87 |
msgstr "リンク"
|
88 |
|
89 |
+
#: common_helpers.php:242
|
90 |
msgid "Statuses"
|
91 |
msgstr "ステータス"
|
92 |
|
93 |
+
#: common_helpers.php:244
|
94 |
msgid "Audio"
|
95 |
msgstr "オーディオ"
|
96 |
|
97 |
+
#: common_helpers.php:246
|
98 |
msgid "Chats"
|
99 |
msgstr "チャット"
|
100 |
|
101 |
+
#: common_helpers.php:262 plugins/other_widget/old/widget-taxonomy-list.php:81
|
102 |
+
#: plugins/other_widget/widget-taxonomies.php:81
|
103 |
msgid "Archives"
|
104 |
msgstr "アーカイブ"
|
105 |
|
106 |
+
#: plugins/auto_eyecatch.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
msgid "Automatic EyeCatch"
|
108 |
msgstr "アイキャッチ自動挿入"
|
109 |
|
110 |
+
#: plugins/auto_eyecatch.php:42
|
111 |
msgid "Do not set eyecatch image automatic."
|
112 |
msgstr "アイキャッチ画像を自動挿入しない"
|
113 |
|
114 |
+
#: plugins/child_page_index/child_page_index.php:12
|
115 |
+
msgid "Display a child page index"
|
116 |
+
msgstr "子ページ一覧の表示"
|
117 |
|
118 |
+
#: plugins/child_page_index/child_page_index.php:20
|
119 |
+
msgid "Choose display a child page index"
|
120 |
+
msgstr "子ページの一覧を表示するか選択"
|
121 |
|
122 |
+
#: plugins/child_page_index/child_page_index.php:25
|
123 |
+
msgid "if checked you will display a child page index "
|
124 |
+
msgstr ""
|
125 |
+
"チェックを入れると個別ページ下へ同じ親ページをもつ子ページ一覧を表示します。"
|
126 |
|
127 |
+
#: plugins/child_page_index/child_page_index.php:74
|
128 |
+
#: plugins/child_page_index/child_page_index.php:89
|
129 |
+
#: plugins/other_widget/widget-3pr-area.php:274
|
130 |
+
#: plugins/other_widget/widget-3pr-area.php:316
|
131 |
+
#: plugins/other_widget/widget-3pr-area.php:359
|
132 |
+
msgid "Read more"
|
133 |
+
msgstr "詳しくはこちら"
|
134 |
|
135 |
+
#: plugins/css_customize/css_customize-edit.php:2
|
136 |
+
#: plugins/css_customize/css_customize.php:35
|
137 |
+
#: plugins/css_customize/css_customize.php:36
|
138 |
msgid "CSS Customize"
|
139 |
msgstr "CSSカスタマイズ"
|
140 |
|
141 |
+
#: plugins/css_customize/css_customize-edit.php:5
|
142 |
msgid "You can add custom CSS here."
|
143 |
msgstr "デザインをカスタマイズする場合は下のテキストエリアにCSSを入力します"
|
144 |
|
145 |
+
#: plugins/css_customize/css_customize-edit.php:10
|
146 |
msgid "Save CSS"
|
147 |
msgstr "CSSを保存する"
|
148 |
|
149 |
+
#: plugins/css_customize/css_customize.php:94
|
150 |
msgid "Your custom CSS was saved."
|
151 |
msgstr "CSSが保存されました"
|
152 |
|
153 |
+
#: plugins/css_customize/css_customize.php:99
|
154 |
msgid "Error occured. Please try again."
|
155 |
msgstr "何らかのエラー!! また試してみてください"
|
156 |
|
157 |
+
#: plugins/google_analytics/ga_admin.php:9
|
158 |
+
#: plugins/google_analytics/ga_admin.php:13
|
159 |
+
#: plugins/google_analytics/google_analytics.php:18
|
160 |
msgid "Google Analytics Settings"
|
161 |
msgstr "Google Analytics設定"
|
162 |
|
163 |
+
#: plugins/google_analytics/ga_admin.php:14
|
164 |
msgid ""
|
165 |
"Please fill in the Google Analytics ID from the Analytics embed code used in "
|
166 |
"the site."
|
167 |
msgstr "このサイトで使用する Google アナリティクスの ID を入力して下さい。"
|
168 |
|
169 |
+
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/old/sns_admin.php:20
|
170 |
+
#: plugins/sns/old/sns_admin.php:61 plugins/sns/old/sns_admin.php:79
|
171 |
+
#: plugins/sns/old/sns_admin.php:98 plugins/sns/old/sns_admin.php:115
|
172 |
+
#: plugins/sns/sns_admin.php:31
|
173 |
msgid "ex) "
|
174 |
msgstr "例: "
|
175 |
|
176 |
+
#: plugins/google_analytics/ga_admin.php:19
|
177 |
msgid ""
|
178 |
"Please select the type of Analytics code . (If you are unsure you can skip "
|
179 |
"this.)"
|
181 |
"アナリティクスコードの種類を選択して下さい。( 不明な場合この設定は省略できま"
|
182 |
"す )"
|
183 |
|
184 |
+
#: plugins/google_analytics/ga_admin.php:23
|
185 |
msgid "To output the Universal Analytics code (default)"
|
186 |
msgstr "ユニバーサル アナリティクスのコードを出力します。( デフォルト )"
|
187 |
|
188 |
+
#: plugins/google_analytics/ga_admin.php:24
|
189 |
msgid "To output only normal code"
|
190 |
msgstr "ノーマルのコードのみを出力します。"
|
191 |
|
192 |
+
#: plugins/google_analytics/ga_admin.php:25
|
193 |
msgid "To output both types"
|
194 |
msgstr "両タイプのコードを出力します。"
|
195 |
|
196 |
+
#: plugins/icons.php:26 plugins/icons.php:54
|
197 |
+
msgid "icon setting"
|
198 |
+
msgstr "アイコン設定"
|
199 |
+
|
200 |
+
#: plugins/icons.php:59
|
201 |
+
msgid "Favicon Setting"
|
202 |
+
msgstr "ファビコン設定"
|
203 |
+
|
204 |
+
#: plugins/icons.php:61
|
205 |
+
msgid "Choose icon"
|
206 |
+
msgstr "アイコンを選択"
|
207 |
+
|
208 |
+
#: plugins/icons.php:62
|
209 |
+
msgid "Please upload your \".ico\" file"
|
210 |
+
msgstr "作成したicoファイルをアップロードしてください"
|
211 |
+
|
212 |
+
#: plugins/meta_description/meta_description.php:7
|
213 |
+
#: plugins/meta_description/meta_description.php:19
|
214 |
msgid "Meta Description"
|
215 |
msgstr "メタディスクリプション"
|
216 |
|
217 |
+
#: plugins/meta_description/meta_description.php:25
|
218 |
msgid ""
|
219 |
"What you have to complete the \"excerpt\" column of the edit screen of each "
|
220 |
"page will be reflected in the description of the meta tag."
|
222 |
"各ページの編集画面の「抜粋」欄に記入した内容がmetaタグのディスクリプションに"
|
223 |
"反映されます"
|
224 |
|
225 |
+
#: plugins/meta_description/meta_description.php:26
|
226 |
msgid ""
|
227 |
"Description of meta tags in the search results screen of search sites such "
|
228 |
"as Google, will be Displayed, such as the bottom of the site title. If the "
|
233 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
234 |
"内容が反映されます。"
|
235 |
|
236 |
+
#: plugins/meta_description/meta_description.php:27
|
237 |
msgid ""
|
238 |
"The meta description of the top page is subject to the catchphrase of the "
|
239 |
"site. However, its contents will be reflected if the excerpt is entered in "
|
243 |
"す。しかし、トップページに設定した固定ページに抜粋が記入されている場合はその"
|
244 |
"内容が反映されます。"
|
245 |
|
246 |
+
#: plugins/meta_description/meta_description.php:28
|
247 |
msgid ""
|
248 |
"If \"excerpt\" column is not found, Click \"Display Option\" of page top at "
|
249 |
"each article edit page, and check the expert column display."
|
252 |
"ので、そこをクリックすると「抜粋」欄を表示するチェックボックスが出てきますの"
|
253 |
"で、チェックして下さい。"
|
254 |
|
255 |
+
#: plugins/meta_keyword/meta_keyword.php:28
|
256 |
+
#: plugins/meta_keyword/meta_keyword.php:74
|
257 |
+
#: plugins/meta_keyword/meta_keyword.php:75
|
258 |
+
#: plugins/meta_keyword/meta_keyword.php:82
|
259 |
msgid "Meta Keywords"
|
260 |
msgstr "メタキーワード"
|
261 |
|
262 |
+
#: plugins/meta_keyword/meta_keyword.php:54
|
263 |
msgid "Meta Keyword"
|
264 |
msgstr "メタキーワード"
|
265 |
|
266 |
+
#: plugins/meta_keyword/meta_keyword.php:57
|
267 |
msgid "Common Keywords"
|
268 |
msgstr "共通キーワード設定"
|
269 |
|
270 |
+
#: plugins/meta_keyword/meta_keyword.php:58
|
271 |
msgid ""
|
272 |
"Keywords for meta tag. This words will set Meta Keyword with post keywords. "
|
273 |
"if you want multiple keywords, enter with separator of \",\"."
|
275 |
"メタタグに入力するキーワードを入力します。ここでは全てのページで使用する共通"
|
276 |
"のキーワードを設定します。複数ある場合は「,」で区切ってください。"
|
277 |
|
278 |
+
#: plugins/meta_keyword/meta_keyword.php:61
|
279 |
msgid "This is not seriously, Because the SearchEngine does not care this."
|
280 |
msgstr ""
|
281 |
"あまり深く考える必要はありません。現状のサーチエンジンではそこまで重要なファ"
|
282 |
"クターとはなりません。"
|
283 |
|
284 |
+
#: plugins/meta_keyword/meta_keyword.php:62
|
285 |
msgid ""
|
286 |
"For each page individual keyword is enter at the edit screen of each "
|
287 |
"article. 10 keywords maximum, together with a each article keywords is "
|
290 |
"個々のページのキーワードはそれぞれの投稿ページのキーワード入力欄から追加して"
|
291 |
"ください。それらと合わせて10個程度のキーワード数であることが望ましいです。"
|
292 |
|
293 |
+
#: plugins/meta_keyword/meta_keyword.php:63
|
294 |
msgid "\",\" separator at end of the last keyword is do not need."
|
295 |
msgstr "最後のキーワードの後ろに「,」は必要ありません。"
|
296 |
|
297 |
+
#: plugins/meta_keyword/meta_keyword.php:64
|
298 |
msgid "Example: WordPress,template,theme,free,GPL"
|
299 |
msgstr "【例】 WordPress,テンプレート,テーマ,無料,GPL"
|
300 |
|
301 |
+
#: plugins/meta_keyword/meta_keyword.php:83
|
302 |
msgid ""
|
303 |
"To distinguish between individual keywords, please enter a , delimiter "
|
304 |
"(optional)."
|
305 |
msgstr "キーワードを複数入力する場合は , ( カンマ )で区切って下さい。"
|
306 |
|
307 |
+
#: plugins/meta_keyword/meta_keyword.php:85
|
308 |
#, php-format
|
309 |
msgid "* keywords common to the entire site can be set from %s."
|
310 |
msgstr "サイト全体のキーワードは %s より設定することができます。"
|
311 |
|
312 |
+
#: plugins/other_widget/old/widget-archive-list.php:12
|
313 |
+
#: plugins/other_widget/widget-archives.php:12 vkExUnit_admin.php:262
|
314 |
+
msgid ""
|
315 |
+
"Displays a list of archives. You can choose the post type and also to "
|
316 |
+
"display archives by month or by year."
|
317 |
+
msgstr ""
|
318 |
+
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
319 |
+
"プを選択できます。"
|
320 |
|
321 |
+
#: plugins/other_widget/old/widget-archive-list.php:14
|
322 |
+
#: plugins/other_widget/widget-archives.php:14 vkExUnit_admin.php:262
|
323 |
+
msgid "archive list"
|
324 |
+
msgstr "アーカイブリスト"
|
|
|
|
|
325 |
|
326 |
+
#: plugins/other_widget/old/widget-archive-list.php:49
|
327 |
+
#: plugins/other_widget/old/widget-archive-list.php:50
|
328 |
+
#: plugins/other_widget/widget-archives.php:49
|
329 |
+
#: plugins/other_widget/widget-archives.php:50
|
330 |
+
msgid "Monthly archives"
|
331 |
+
msgstr "月別アーカイブ"
|
332 |
|
333 |
+
#: plugins/other_widget/old/widget-archive-list.php:59
|
334 |
+
#: plugins/other_widget/widget-archives.php:59
|
335 |
+
msgid "Title"
|
336 |
+
msgstr "タイトル"
|
337 |
|
338 |
+
#: plugins/other_widget/old/widget-archive-list.php:63
|
339 |
+
#: plugins/other_widget/widget-archives.php:63
|
340 |
+
msgid "Post type"
|
341 |
+
msgstr "ポストタイプ"
|
342 |
|
343 |
+
#: plugins/other_widget/old/widget-child-page-list.php:9
|
344 |
+
msgid "Displays list of child page for the current page."
|
345 |
+
msgstr "現在のページの子ページのリストを表示します。"
|
346 |
|
347 |
+
#: plugins/other_widget/old/widget-child-page-list.php:11
|
348 |
+
msgid "child pages list"
|
349 |
+
msgstr "子ページのリスト"
|
|
|
|
|
|
|
|
|
|
|
350 |
|
351 |
+
#: plugins/other_widget/old/widget-page-content.php:10
|
352 |
+
msgid "Displays the content of a chosen page."
|
353 |
+
msgstr "選択したページの内容を表示します。"
|
|
|
|
|
354 |
|
355 |
+
#: plugins/other_widget/old/widget-page-content.php:12
|
356 |
+
msgid "page content for top"
|
357 |
+
msgstr "固定ページ本文"
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
|
359 |
+
#: plugins/other_widget/old/widget-page-content.php:30
|
360 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
361 |
+
#: plugins/other_widget/widget-page.php:30
|
362 |
+
#: plugins/other_widget/widget-taxonomies.php:60
|
363 |
+
msgid "Display page"
|
364 |
+
msgstr "ページを表示"
|
|
|
|
|
|
|
365 |
|
366 |
+
#: plugins/other_widget/old/widget-page-content.php:38
|
367 |
+
#: plugins/other_widget/widget-page.php:38
|
368 |
+
msgid "display title"
|
369 |
+
msgstr "タイトルを表示"
|
370 |
+
|
371 |
+
#: plugins/other_widget/old/widget-page-content.php:61
|
372 |
+
#: plugins/other_widget/widget-page.php:60
|
373 |
+
msgid "Edit"
|
374 |
+
msgstr "編集"
|
375 |
+
|
376 |
+
#: plugins/other_widget/old/widget-rss-widget.php:9
|
377 |
+
msgid "Displays entries list from a RSS feed link."
|
378 |
+
msgstr "RSSフィードリンクからエントリーリストを表示します。"
|
379 |
+
|
380 |
+
#: plugins/other_widget/old/widget-rss-widget.php:11
|
381 |
+
msgid "RSS entries for top"
|
382 |
+
msgstr "トップのRSSエントリー"
|
383 |
+
|
384 |
+
#: plugins/other_widget/old/widget-rss-widget.php:25
|
385 |
+
msgid "Blog entries"
|
386 |
+
msgstr "ブログエントリー"
|
387 |
+
|
388 |
+
#: plugins/other_widget/old/widget-rss-widget.php:30
|
389 |
+
msgid "Heading title"
|
390 |
+
msgstr "見出しタイトル"
|
391 |
+
|
392 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:11 vkExUnit_admin.php:261
|
393 |
+
msgid "Displays a categories, tags or format list."
|
394 |
+
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
395 |
+
|
396 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:17 vkExUnit_admin.php:261
|
397 |
+
msgid "categories/tags list"
|
398 |
+
msgstr "カテゴリー/タグ リスト"
|
399 |
+
|
400 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
401 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
402 |
+
#: plugins/other_widget/widget-taxonomies.php:47
|
403 |
+
#: plugins/other_widget/widget-taxonomies.php:48
|
404 |
+
msgid "Category"
|
405 |
+
msgstr "カテゴリー"
|
406 |
+
|
407 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
408 |
+
#: plugins/other_widget/widget-taxonomies.php:56
|
409 |
+
msgid "Label to display"
|
410 |
+
msgstr "表示するラベル"
|
411 |
+
|
412 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
413 |
+
#: plugins/other_widget/widget-taxonomies.php:76
|
414 |
+
msgid "Blog"
|
415 |
+
msgstr "ブログ"
|
416 |
+
|
417 |
+
#: plugins/other_widget/widget-3pr-area.php:11
|
418 |
+
msgid "Displays a 3PR area"
|
419 |
+
msgstr "3PR エリアを表示します。"
|
420 |
+
|
421 |
+
#: plugins/other_widget/widget-3pr-area.php:13
|
422 |
+
#: plugins/other_widget/widget-3pr-area.php:245
|
423 |
+
#: plugins/other_widget/widget-3pr-area.php:287
|
424 |
+
#: plugins/other_widget/widget-3pr-area.php:330
|
425 |
+
msgid "3PR area"
|
426 |
+
msgstr "3PR エリア"
|
427 |
+
|
428 |
+
#: plugins/other_widget/widget-3pr-area.php:18
|
429 |
+
msgid "3PR area1 title"
|
430 |
+
msgstr "3PR エリア1 タイトル"
|
431 |
+
|
432 |
+
#: plugins/other_widget/widget-3pr-area.php:26
|
433 |
+
msgid "3PR area2 title"
|
434 |
+
msgstr "3PR エリア2 タイトル"
|
435 |
+
|
436 |
+
#: plugins/other_widget/widget-3pr-area.php:34
|
437 |
+
msgid "3PR area3 title"
|
438 |
+
msgstr "3PR エリア3 タイトル"
|
439 |
+
|
440 |
+
#: plugins/other_widget/widget-3pr-area.php:47
|
441 |
+
msgid "3PR area1 setting"
|
442 |
+
msgstr "3PR エリア1 設定"
|
443 |
+
|
444 |
+
#: plugins/other_widget/widget-3pr-area.php:49
|
445 |
+
#: plugins/other_widget/widget-3pr-area.php:102
|
446 |
+
#: plugins/other_widget/widget-3pr-area.php:154
|
447 |
+
#: plugins/other_widget/widget-new-posts.php:75
|
448 |
+
#: plugins/other_widget/widget-profile.php:35
|
449 |
+
#: plugins/sns/function_fbPagePlugin.php:75
|
450 |
+
msgid "Title:"
|
451 |
+
msgstr "タイトル"
|
452 |
+
|
453 |
+
#: plugins/other_widget/widget-3pr-area.php:55
|
454 |
+
#: plugins/other_widget/widget-3pr-area.php:108
|
455 |
+
#: plugins/other_widget/widget-3pr-area.php:160
|
456 |
+
msgid "Select image for PC:"
|
457 |
+
msgstr "PC 用に表示される画像を選択(横 300px 程度推奨)"
|
458 |
+
|
459 |
+
#: plugins/other_widget/widget-3pr-area.php:61
|
460 |
+
#: plugins/other_widget/widget-3pr-area.php:78
|
461 |
+
#: plugins/other_widget/widget-3pr-area.php:114
|
462 |
+
#: plugins/other_widget/widget-3pr-area.php:132
|
463 |
+
#: plugins/other_widget/widget-3pr-area.php:166
|
464 |
+
#: plugins/other_widget/widget-3pr-area.php:183
|
465 |
+
#: plugins/other_widget/widget-profile.php:46
|
466 |
+
msgid "Select image"
|
467 |
+
msgstr "画像を選択"
|
468 |
+
|
469 |
+
#: plugins/other_widget/widget-3pr-area.php:62
|
470 |
+
#: plugins/other_widget/widget-3pr-area.php:79
|
471 |
+
#: plugins/other_widget/widget-3pr-area.php:115
|
472 |
+
#: plugins/other_widget/widget-3pr-area.php:133
|
473 |
+
#: plugins/other_widget/widget-3pr-area.php:167
|
474 |
+
#: plugins/other_widget/widget-3pr-area.php:184
|
475 |
+
#: plugins/other_widget/widget-profile.php:47
|
476 |
+
msgid "Clear image"
|
477 |
+
msgstr "画像クリア"
|
478 |
+
|
479 |
+
#: plugins/other_widget/widget-3pr-area.php:72
|
480 |
+
#: plugins/other_widget/widget-3pr-area.php:126
|
481 |
+
#: plugins/other_widget/widget-3pr-area.php:177
|
482 |
+
msgid "Select image for Mobile:"
|
483 |
+
msgstr ""
|
484 |
+
"スマホ用(ウィンドウサイズが 992px 以下の場合)に表示される画像を選択(橫 "
|
485 |
"690px 以上推奨。空欄も可)"
|
486 |
|
487 |
+
#: plugins/other_widget/widget-3pr-area.php:88
|
488 |
+
#: plugins/other_widget/widget-3pr-area.php:142
|
489 |
+
#: plugins/other_widget/widget-3pr-area.php:194
|
490 |
msgid "Summary Text:"
|
491 |
msgstr "概要となるテキスト"
|
492 |
|
493 |
+
#: plugins/other_widget/widget-3pr-area.php:94
|
494 |
+
#: plugins/other_widget/widget-3pr-area.php:146
|
495 |
+
#: plugins/other_widget/widget-3pr-area.php:199
|
496 |
msgid "Link URL:"
|
497 |
msgstr "リンク先ページのURL"
|
498 |
|
499 |
+
#: plugins/other_widget/widget-3pr-area.php:100
|
500 |
msgid "3PR area2 setting"
|
501 |
msgstr "3PR エリア2 設定"
|
502 |
|
503 |
+
#: plugins/other_widget/widget-3pr-area.php:152
|
504 |
msgid "3PR area3 setting"
|
505 |
msgstr "3PR エリア3 設定"
|
506 |
|
507 |
+
#: plugins/other_widget/widget-new-posts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
msgid "Displays a list of your most recent posts"
|
509 |
msgstr "最新の投稿記事リストを表示します。"
|
510 |
|
511 |
+
#: plugins/other_widget/widget-new-posts.php:13
|
512 |
+
#: plugins/other_widget/widget-new-posts.php:23
|
513 |
+
#: plugins/other_widget/widget-new-posts.php:66
|
514 |
msgid "Recent Posts"
|
515 |
msgstr "最新記事"
|
516 |
|
517 |
+
#: plugins/other_widget/widget-new-posts.php:80
|
518 |
msgid "Display count"
|
519 |
msgstr "表示する記事数"
|
520 |
|
521 |
+
#: plugins/other_widget/widget-new-posts.php:85
|
522 |
msgid "Slug for the custom type you want to display"
|
523 |
msgstr "表示したい記事タイプ"
|
524 |
|
525 |
+
#: plugins/other_widget/widget-page.php:11
|
526 |
msgid "Displays a page contents to widget."
|
527 |
msgstr "選択したページの内容を表示します。"
|
528 |
|
529 |
+
#: plugins/other_widget/widget-page.php:13
|
530 |
msgid "page content to widget"
|
531 |
+
msgstr "固定ページ本文"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
|
533 |
+
#: plugins/other_widget/widget-profile.php:11
|
534 |
msgid "Displays a your profile"
|
535 |
msgstr ""
|
536 |
"ブログのサイドバーに運営者情報を表示したり、フッターに企業情報を表示します。"
|
537 |
|
538 |
+
#: plugins/other_widget/widget-profile.php:13
|
539 |
+
#: plugins/other_widget/widget-profile.php:19
|
540 |
msgid "Profile"
|
541 |
msgstr "プロフィール"
|
542 |
|
543 |
+
#: plugins/other_widget/widget-profile.php:22
|
544 |
msgid "Profile Text"
|
545 |
msgstr "プロフィールテキスト"
|
546 |
|
547 |
+
#: plugins/other_widget/widget-profile.php:40
|
548 |
msgid "Select Profile image:"
|
549 |
msgstr "プロフィール用画像を選択"
|
550 |
|
551 |
+
#: plugins/other_widget/widget-profile.php:57
|
552 |
msgid "Profile Text:"
|
553 |
msgstr "プロフィールテキスト"
|
554 |
|
555 |
+
#: plugins/other_widget/widget-profile.php:62
|
556 |
msgid "Facebook URL:"
|
557 |
msgstr "Facebook リンク先ページのURL"
|
558 |
|
559 |
+
#: plugins/other_widget/widget-profile.php:67
|
560 |
msgid "Twitter URL:"
|
561 |
msgstr "twitterリンク先ページのURL"
|
562 |
|
563 |
+
#: plugins/other_widget/widget-profile.php:72
|
564 |
msgid "Email Address:"
|
565 |
msgstr "Email リンク先ページのURL"
|
566 |
|
567 |
+
#: plugins/other_widget/widget-profile.php:77
|
568 |
msgid "Youtube URL:"
|
569 |
msgstr "Youtube リンク先ページのURL"
|
570 |
|
571 |
+
#: plugins/other_widget/widget-profile.php:82
|
572 |
msgid "RSS URL:"
|
573 |
msgstr "RSS リンク先ページのURL"
|
574 |
|
575 |
+
#: plugins/other_widget/widget-profile.php:87
|
576 |
msgid "instagram URL:"
|
577 |
msgstr "instagram リンク先ページのURL"
|
578 |
|
579 |
+
#: plugins/other_widget/widget-profile.php:91
|
580 |
msgid "linkedin URL:"
|
581 |
msgstr "linkedin リンク先ページのURL"
|
582 |
|
583 |
+
#: plugins/other_widget/widget-profile.php:121
|
584 |
msgid "Site's Profile"
|
585 |
msgstr "プロフィール"
|
586 |
|
587 |
+
#: plugins/other_widget/widget-taxonomies.php:12
|
588 |
msgid "Displays a categories and custom taxonomies list."
|
589 |
msgstr "カテゴリーやカスタム分類のリストを表示します。"
|
590 |
|
591 |
+
#: plugins/other_widget/widget-taxonomies.php:14
|
592 |
msgid "Categories/Custom taxonomies list"
|
593 |
msgstr "カテゴリー/カスタム分類リスト"
|
594 |
|
595 |
+
#: plugins/related_posts/related_posts.php:34 vkExUnit_admin.php:210
|
596 |
+
msgid "Related posts"
|
597 |
+
msgstr "関連記事を表示"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
598 |
|
599 |
+
#: plugins/sns/function_fbPagePlugin.php:10
|
600 |
msgid "Displays a Facebook Page Plugin"
|
601 |
msgstr "Facebook ページプラグインを表示します。"
|
602 |
|
603 |
+
#: plugins/sns/function_fbPagePlugin.php:85
|
604 |
msgid "Height"
|
605 |
msgstr "高さ"
|
606 |
|
607 |
+
#: plugins/sns/function_fbPagePlugin.php:90
|
608 |
msgid "Show Friend's Faces"
|
609 |
msgstr "アイコンを表示する"
|
610 |
|
611 |
+
#: plugins/sns/function_fbPagePlugin.php:95
|
612 |
msgid "Hide Cover Photo"
|
613 |
msgstr "カバー画像を表示しない"
|
614 |
|
615 |
+
#: plugins/sns/function_fbPagePlugin.php:100
|
616 |
msgid "Show Page Posts"
|
617 |
msgstr "タイムラインを表示"
|
618 |
|
619 |
+
#: plugins/sns/function_follow.php:11
|
620 |
msgid "Follow me"
|
621 |
msgstr "このサイトをフォローする"
|
622 |
|
623 |
+
#: plugins/sns/old/sns.php:378
|
624 |
+
msgid "* It is necessary to set the Theme options page."
|
625 |
+
msgstr "* テーマオプションページで設定する必要があります。"
|
626 |
|
627 |
+
#: plugins/sns/old/sns_admin.php:12
|
628 |
+
msgid "Social media"
|
629 |
+
msgstr "ソーシャルメディア"
|
630 |
|
631 |
+
#: plugins/sns/old/sns_admin.php:13
|
632 |
+
msgid "If you are unsure, you can leave for later."
|
633 |
+
msgstr "不明な場合は後で設定することができます。"
|
634 |
+
|
635 |
+
#: plugins/sns/old/sns_admin.php:18
|
636 |
+
msgid ""
|
637 |
+
"If you wish to link to a personal account or a Facebook page banner will be "
|
638 |
+
"displayed if you enter the URL."
|
639 |
+
msgstr ""
|
640 |
+
"個人アカウントやFacebookページのバナーにリンクしたい場合は URL を入力して下さ"
|
641 |
+
"い。"
|
642 |
+
|
643 |
+
#: plugins/sns/old/sns_admin.php:26 plugins/sns/sns_admin.php:13
|
644 |
msgid "facebook application ID"
|
645 |
msgstr "facebookアプリケーションID"
|
646 |
|
647 |
+
#: plugins/sns/old/sns_admin.php:28 plugins/sns/sns_admin.php:15
|
648 |
msgid "I will check and get the application ID"
|
649 |
msgstr "アプリケーションIDを確認・取得する "
|
650 |
|
651 |
+
#: plugins/sns/old/sns_admin.php:29 plugins/sns/sns_admin.php:16
|
652 |
msgid ""
|
653 |
"* If an application ID is not specified, neither a Like button nor the "
|
654 |
"comment field displays and operates correctly."
|
656 |
"※アプリケーションIDを入力しないとボタンやコメント欄が表示・正しく動作しませ"
|
657 |
"ん。"
|
658 |
|
659 |
+
#: plugins/sns/old/sns_admin.php:30 plugins/sns/sns_admin.php:17
|
660 |
msgid ""
|
661 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
662 |
"much about how to get application ID for Facebook."
|
664 |
"facebookのアプリケーションIDの取得方法についてよくわからない場合は「facebook "
|
665 |
"アプリケーションID 取得」などで検索して下さい。"
|
666 |
|
667 |
+
#: plugins/sns/old/sns_admin.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
msgid "Facebook user ID (optional)"
|
669 |
msgstr "Facebook ユーザーID( オプション )"
|
670 |
|
671 |
+
#: plugins/sns/old/sns_admin.php:36
|
672 |
msgid "Please enter the Facebook user ID of the administrator."
|
673 |
msgstr "管理者のFacebookユーザーIDを入力してください。"
|
674 |
|
675 |
+
#: plugins/sns/old/sns_admin.php:38
|
676 |
msgid "* It is not the application ID of the Facebook page."
|
677 |
msgstr "* FacebookページのアプリケーションIDではありません。"
|
678 |
|
679 |
+
#: plugins/sns/old/sns_admin.php:39
|
680 |
msgid ""
|
681 |
"You can see the personal Facebook ID when you access the following url "
|
682 |
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
684 |
"このアドレス [ http://graph.facebook.com/( 自分の名前のURL (例 : hidekazu."
|
685 |
"ishikawa) ) ] にアクセスして個人の Facebook ID を確認できます。"
|
686 |
|
687 |
+
#: plugins/sns/old/sns_admin.php:40
|
688 |
msgid ""
|
689 |
"Please search for terms as [find facebook user ID] if you are still not sure."
|
690 |
msgstr ""
|
691 |
"まだ不明な場合は、[ FacebookのユーザーIDを検索 ] などのキーワードで検索して下"
|
692 |
"さい。"
|
693 |
|
694 |
+
#: plugins/sns/old/sns_admin.php:45
|
695 |
msgid "twitter account"
|
696 |
msgstr "Twitter アカウント"
|
697 |
|
698 |
+
#: plugins/sns/old/sns_admin.php:46
|
699 |
msgid ""
|
700 |
"If you would like to link to a Twitter account, banner will be displayed if "
|
701 |
"you enter the account name."
|
702 |
msgstr ""
|
703 |
"Twitterアカウントをバナーにリンクしたい場合は、アカウント名を入力して下さい。"
|
704 |
|
705 |
+
#: plugins/sns/old/sns_admin.php:48
|
706 |
msgid "widget"
|
707 |
msgstr "ウィジェット"
|
708 |
|
709 |
+
#: plugins/sns/old/sns_admin.php:49
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
715 |
"Twitter のウィジェットなどを使用する時、ここを空にできます。%s にソースコード"
|
716 |
"を貼り付けます。"
|
717 |
|
718 |
+
#: plugins/sns/old/sns_admin.php:56
|
719 |
msgid "OGP default image"
|
720 |
msgstr "OGP デフォルト画像"
|
721 |
|
722 |
+
#: plugins/sns/old/sns_admin.php:57 plugins/sns/sns_admin.php:27
|
723 |
+
msgid ""
|
724 |
+
"If, for example someone pressed the Facebook [Like] button, this is the "
|
725 |
+
"image that appears on the Facebook timeline."
|
726 |
+
msgstr ""
|
727 |
+
"Facebookの「いいね!」ボタンを押した際、ここで設定した画像が Facebook のタイ"
|
728 |
+
"ムラインに表示されます。"
|
729 |
+
|
730 |
+
#: plugins/sns/old/sns_admin.php:58 plugins/sns/sns_admin.php:28
|
731 |
+
msgid "If a featured image is specified for the page, it takes precedence."
|
732 |
+
msgstr ""
|
733 |
+
"ページにアイキャッチ画像が指定されている場合は、アイキャッチ画像が優先されま"
|
734 |
+
"す。"
|
735 |
+
|
736 |
+
#: plugins/sns/old/sns_admin.php:60 plugins/sns/sns_admin.php:30
|
737 |
+
msgid "Select an image"
|
738 |
+
msgstr "画像を選択"
|
739 |
+
|
740 |
+
#: plugins/sns/old/sns_admin.php:62 plugins/sns/sns_admin.php:32
|
741 |
+
msgid ""
|
742 |
+
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
743 |
+
"recommended."
|
744 |
+
msgstr "画像サイズ 橫 300px 縦 300px 以上、画像比率 16:9 を推奨します。"
|
745 |
+
|
746 |
+
#: plugins/sns/old/sns_admin.php:67
|
747 |
msgid "Social buttons"
|
748 |
msgstr "ソーシャルボタン"
|
749 |
|
750 |
+
#: plugins/sns/old/sns_admin.php:68
|
751 |
msgid "Please check the type of page that displays the social button."
|
752 |
msgstr "ページに表示するソーシャルボタンの種類を選択して下さい。"
|
753 |
|
754 |
+
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
755 |
msgid ""
|
756 |
"Within the type of page that is checked, if there is a particular page you "
|
757 |
"do not wish to display, enter the Page ID. If multiple pages, please "
|
760 |
"表示したくない特定のページが有る場合にページ ID を入力して下さい。複数のペー"
|
761 |
"ジがある場合は、カンマで区切って入力して下さい。"
|
762 |
|
763 |
+
#: plugins/sns/old/sns_admin.php:84
|
764 |
msgid "facebook comments box"
|
765 |
msgstr "Facebookのコメントボックス"
|
766 |
|
767 |
+
#: plugins/sns/old/sns_admin.php:85
|
768 |
msgid "Please check the type of the page to display Facebook comments."
|
769 |
msgstr "Facebook のコメントを表示するページタイプを確認して下さい。"
|
770 |
|
771 |
+
#: plugins/sns/old/sns_admin.php:104
|
772 |
msgid "If you wish to use Facebook LikeBox, please check the location."
|
773 |
msgstr "Facebook のいいねボックスを使用する場合は、場所を確認して下さい。"
|
774 |
|
775 |
+
#: plugins/sns/old/sns_admin.php:105
|
776 |
msgid "* Please be sure to set Facebook application ID."
|
777 |
msgstr "Facebook のアプリケーションIDを設定してください。"
|
778 |
|
779 |
+
#: plugins/sns/old/sns_admin.php:113
|
780 |
msgid "URL of the Facebook page."
|
781 |
msgstr "Facebook ページの URL"
|
782 |
|
783 |
+
#: plugins/sns/old/sns_admin.php:116
|
784 |
msgid "Display stream"
|
785 |
msgstr "タイムラインを表示する"
|
786 |
|
787 |
+
#: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
|
788 |
msgid "Display"
|
789 |
msgstr "表示"
|
790 |
|
791 |
+
#: plugins/sns/old/sns_admin.php:118
|
792 |
msgid "Display faces"
|
793 |
msgstr "アイコンを表示する"
|
794 |
|
795 |
+
#: plugins/sns/old/sns_admin.php:120
|
796 |
msgid "Height of LikeBox"
|
797 |
msgstr "いいねボックスの高さ"
|
798 |
|
799 |
+
#: plugins/sns/old/sns_admin.php:128
|
800 |
msgid "Do not output the OGP"
|
801 |
msgstr "OGP を出力しません"
|
802 |
|
803 |
+
#: plugins/sns/old/sns_admin.php:130
|
804 |
msgid ""
|
805 |
"If other plug-ins are used for the OGP, do not output the OGP using "
|
806 |
"BizVektor."
|
807 |
msgstr ""
|
808 |
"他の OGP プラグインを使用している場合は、BizVektor を使用して出力しません。"
|
809 |
|
810 |
+
#: plugins/sns/old/sns_admin.php:133
|
811 |
msgid "I want to output the OGP tags using BizVektor"
|
812 |
msgstr "BizVektor を使用して OGP タグを出力したい。"
|
813 |
|
814 |
+
#: plugins/sns/old/sns_admin.php:134
|
815 |
msgid "Do not output OGP tags using BizVektor"
|
816 |
msgstr "BizVektor を使用して OGP タグを出力しない。"
|
817 |
|
818 |
+
#: plugins/sns/old/sns_admin.php:149
|
819 |
msgid "Page top"
|
820 |
msgstr "ページ先頭へ"
|
821 |
|
822 |
+
#: plugins/sns/sns.php:17
|
823 |
+
msgid "SNS"
|
824 |
+
msgstr "SNS"
|
825 |
+
|
826 |
+
#: plugins/sns/sns_admin.php:1
|
827 |
+
msgid "SNS Settings"
|
828 |
+
msgstr "SNS設定"
|
829 |
+
|
830 |
+
#: plugins/sns/sns_admin.php:21
|
831 |
+
msgid "facebook page URL"
|
832 |
+
msgstr "FacebookページURL"
|
833 |
+
|
834 |
+
#: plugins/sns/sns_admin.php:26
|
835 |
+
msgid "OG default image"
|
836 |
+
msgstr "デフォルトのOGPイメージ"
|
837 |
+
|
838 |
+
#: plugins/sns/sns_admin.php:36
|
839 |
+
msgid "twitter ID"
|
840 |
+
msgstr "twitterアカウント"
|
841 |
+
|
842 |
+
#: plugins/sns/sns_admin.php:41
|
843 |
+
msgid "OG tags"
|
844 |
+
msgstr "OGタグ"
|
845 |
+
|
846 |
+
#: plugins/sns/sns_admin.php:43
|
847 |
+
msgid "Print the OG tags"
|
848 |
+
msgstr "OGタグを出力する"
|
849 |
+
|
850 |
+
#: plugins/sns/sns_admin.php:44
|
851 |
+
msgid ""
|
852 |
+
"If other plug-ins are used for the OG, do not output the OG using this "
|
853 |
+
"plugin."
|
854 |
+
msgstr ""
|
855 |
+
"OGタグの出力を選択して下さい。もし他のプラグインやテーマでOGタグを出力してい"
|
856 |
+
"る場合は、このプラグインでの出力は必要ありません。"
|
857 |
+
|
858 |
+
#: plugins/sns/sns_admin.php:49
|
859 |
+
msgid "Twitter Card tags"
|
860 |
+
msgstr "Twitterカードタグ"
|
861 |
+
|
862 |
+
#: plugins/sns/sns_admin.php:51
|
863 |
+
msgid "Print the Twitter Card tags"
|
864 |
+
msgstr "Twitter カードタグを html head 内へ出力します。"
|
865 |
+
|
866 |
+
#: plugins/sns/sns_admin.php:56
|
867 |
+
msgid "Social bookmark buttons"
|
868 |
+
msgstr "ソーシャルボタン"
|
869 |
+
|
870 |
+
#: plugins/sns/sns_admin.php:57
|
871 |
+
msgid "Print the social bookmark buttons"
|
872 |
+
msgstr "ソーシャルブックマーク(シェアボタンやtweetボタン)を表示します。"
|
873 |
+
|
874 |
+
#: plugins/sns/sns_admin.php:61
|
875 |
+
msgid "Follow me box"
|
876 |
+
msgstr "Follow me box"
|
877 |
+
|
878 |
+
#: plugins/sns/sns_admin.php:62
|
879 |
+
msgid "Print the Follow me box"
|
880 |
+
msgstr "Follow me ユニットを本文の下に表示する"
|
881 |
+
|
882 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
883 |
+
msgid "Select all"
|
884 |
+
msgstr "全てを選択"
|
885 |
+
|
886 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
887 |
+
msgid "Function"
|
888 |
+
msgstr "有効化"
|
889 |
+
|
890 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
891 |
+
msgid "Description"
|
892 |
+
msgstr "説明"
|
893 |
+
|
894 |
+
#: vkExUnit_admin.php:21
|
895 |
+
msgid "Choose Print Bootstrap css"
|
896 |
+
msgstr "Bootstrap の CSS を出力するか選択"
|
897 |
+
|
898 |
+
#: vkExUnit_admin.php:26
|
899 |
+
msgid "Print Bootstrap css and js"
|
900 |
+
msgstr "Bootstrap の CSS と js を出力"
|
901 |
+
|
902 |
+
#: vkExUnit_admin.php:30
|
903 |
+
msgid ""
|
904 |
+
"If your using theme has already including Bootstrap, you deactivate this "
|
905 |
+
"item."
|
906 |
+
msgstr ""
|
907 |
+
"Bootstrap の CSS と js を読み込むためのタグを html head 内へ出力します。使用"
|
908 |
+
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
909 |
+
"下さい。"
|
910 |
+
|
911 |
+
#: vkExUnit_admin.php:39
|
912 |
+
msgid "Choose Print link fontawesome."
|
913 |
+
msgstr "出力する fontawesome link を選択して下さい。"
|
914 |
+
|
915 |
+
#: vkExUnit_admin.php:44
|
916 |
+
msgid "Print link fontawesome."
|
917 |
+
msgstr "fontawesome link タグを出力"
|
918 |
+
|
919 |
+
#: vkExUnit_admin.php:48
|
920 |
+
msgid "Print fontawesome link tag to html head."
|
921 |
+
msgstr ""
|
922 |
+
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
923 |
+
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
924 |
+
"さい。"
|
925 |
+
|
926 |
+
#: vkExUnit_admin.php:57 vkExUnit_admin.php:121
|
927 |
+
msgid "Choose Print meta description."
|
928 |
+
msgstr "出力する meta description を選択して下さい。"
|
929 |
+
|
930 |
+
#: vkExUnit_admin.php:62
|
931 |
+
msgid "Favicon setting"
|
932 |
+
msgstr "ファビコン設定"
|
933 |
+
|
934 |
+
#: vkExUnit_admin.php:66
|
935 |
+
msgid "About favicon."
|
936 |
+
msgstr ""
|
937 |
+
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
938 |
+
"(ファビコン)を設定します。"
|
939 |
+
|
940 |
+
#: vkExUnit_admin.php:75
|
941 |
+
msgid "Choose Rewrite the title tag"
|
942 |
+
msgstr "タイトルタグの書き換えを選択する"
|
943 |
+
|
944 |
+
#: vkExUnit_admin.php:80
|
945 |
+
msgid "Rewrite the title tag"
|
946 |
+
msgstr "タイトルタグの書き換え"
|
947 |
+
|
948 |
+
#: vkExUnit_admin.php:84
|
949 |
+
msgid "Print is rewritten by its own rules to html head."
|
950 |
+
msgstr ""
|
951 |
+
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
952 |
+
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
953 |
+
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
954 |
+
|
955 |
+
#: vkExUnit_admin.php:93
|
956 |
+
msgid "Choose Print meta Keyword."
|
957 |
+
msgstr "メタキーワードを選んでください。"
|
958 |
+
|
959 |
+
#: vkExUnit_admin.php:98
|
960 |
+
msgid "Print meta Keyword"
|
961 |
+
msgstr "メタキーワードを出力"
|
962 |
+
|
963 |
+
#: vkExUnit_admin.php:104 vkExUnit_admin.php:150 vkExUnit_admin.php:188
|
964 |
+
#: vkExUnit_admin.php:249 vkExUnit_admin.php:282
|
965 |
+
msgid "Setting"
|
966 |
+
msgstr "設定"
|
967 |
+
|
968 |
+
#: vkExUnit_admin.php:112
|
969 |
+
msgid "Print meta Keyword to html head."
|
970 |
+
msgstr "ヘッダーにメタキーワードを出力します。"
|
971 |
+
|
972 |
+
#: vkExUnit_admin.php:126
|
973 |
+
msgid "Print meta description"
|
974 |
+
msgstr "メタディスクリプションタグを出力"
|
975 |
+
|
976 |
+
#: vkExUnit_admin.php:130
|
977 |
+
msgid "Print meta description to html head."
|
978 |
+
msgstr ""
|
979 |
+
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
980 |
+
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
981 |
+
"している場合はチェックを外して下さい。"
|
982 |
+
|
983 |
+
#: vkExUnit_admin.php:139
|
984 |
+
msgid "Choose Social media cooperation."
|
985 |
+
msgstr "連携するソーシャルメディアを選択します。"
|
986 |
+
|
987 |
+
#: vkExUnit_admin.php:144
|
988 |
+
msgid "Social media cooperation."
|
989 |
+
msgstr "ソーシャルメディアとの連携"
|
990 |
+
|
991 |
+
#: vkExUnit_admin.php:159
|
992 |
+
msgid "Print og tags to html head."
|
993 |
+
msgstr "OG タグを html head 内へ出力します。"
|
994 |
+
|
995 |
+
#: vkExUnit_admin.php:160
|
996 |
+
msgid "Print twitter card tags to html head."
|
997 |
+
msgstr "Twitter カードタグを html head 内へ出力します。"
|
998 |
+
|
999 |
+
#: vkExUnit_admin.php:161
|
1000 |
+
msgid "Print social bookmark buttons."
|
1001 |
+
msgstr "ソーシャルブックマークボタンを表示します。"
|
1002 |
+
|
1003 |
+
#: vkExUnit_admin.php:162
|
1004 |
+
msgid "Facebook Page Plugin widget."
|
1005 |
+
msgstr "Facebookページプラグインウィジェット"
|
1006 |
+
|
1007 |
+
#: vkExUnit_admin.php:163
|
1008 |
+
msgid "Print Follow me box to content bottom."
|
1009 |
+
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
1010 |
+
|
1011 |
+
#: vkExUnit_admin.php:166
|
1012 |
+
msgid "Main setting page"
|
1013 |
+
msgstr "メイン設定画面"
|
1014 |
+
|
1015 |
+
#: vkExUnit_admin.php:167
|
1016 |
+
#, php-format
|
1017 |
+
msgid "* You can stop the function separately from the %s."
|
1018 |
+
msgstr "%s から個別に機能を停止する事ができます。"
|
1019 |
+
|
1020 |
+
#: vkExUnit_admin.php:177
|
1021 |
+
msgid "Choose Print Google Analytics tracking code."
|
1022 |
+
msgstr "出力する Google アナリティクスのトラッキングコードを選択します。"
|
1023 |
+
|
1024 |
+
#: vkExUnit_admin.php:196
|
1025 |
+
msgid "Print Google Analytics tracking code."
|
1026 |
+
msgstr ""
|
1027 |
+
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
1028 |
+
"リンクより設定画面へすすみ Google アナリティクス ID を入力して下さい。使用中"
|
1029 |
+
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
1030 |
+
"合はチェックを外して下さい。"
|
1031 |
+
|
1032 |
+
#: vkExUnit_admin.php:205
|
1033 |
+
msgid "Choose Related posts."
|
1034 |
+
msgstr "関連記事を選択"
|
1035 |
+
|
1036 |
+
#: vkExUnit_admin.php:214
|
1037 |
+
msgid "Print Related posts lists to post content bottom."
|
1038 |
+
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
1039 |
+
|
1040 |
+
#: vkExUnit_admin.php:223
|
1041 |
+
msgid "Choose display a child page index to posts."
|
1042 |
+
msgstr "子ページの一覧を表示するか選択"
|
1043 |
+
|
1044 |
+
#: vkExUnit_admin.php:228
|
1045 |
+
msgid "Child page index"
|
1046 |
+
msgstr "子ページの一覧表示"
|
1047 |
+
|
1048 |
+
#: vkExUnit_admin.php:232
|
1049 |
+
msgid "Display a child page index to posts."
|
1050 |
+
msgstr ""
|
1051 |
+
"固定ページの下部へ、そのページの下層子ページにあたる「ページタイトル / サムネ"
|
1052 |
+
"イル / 抜粋文 / 該当ページへのリンク」を一覧にして表示します。"
|
1053 |
+
|
1054 |
+
#: vkExUnit_admin.php:241 vkExUnit_admin.php:272
|
1055 |
+
msgid "Choose other widgets."
|
1056 |
+
msgstr "Other ウィジェットを選択"
|
1057 |
+
|
1058 |
+
#: vkExUnit_admin.php:246
|
1059 |
+
msgid "Widgets"
|
1060 |
+
msgstr "ウィジェット"
|
1061 |
+
|
1062 |
+
#: vkExUnit_admin.php:254
|
1063 |
+
msgid "You can use various widgets."
|
1064 |
+
msgstr ""
|
1065 |
+
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」"
|
1066 |
+
"→「ウィジェット」の設定画面より行って下さい。"
|
1067 |
+
|
1068 |
+
#: vkExUnit_admin.php:256
|
1069 |
+
msgid ""
|
1070 |
+
"VK_Recent Posts - display the link text and the date of the latest article "
|
1071 |
+
"title."
|
1072 |
+
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
1073 |
+
|
1074 |
+
#: vkExUnit_admin.php:257
|
1075 |
+
msgid ""
|
1076 |
+
"VK_Page content to widget - display the contents of the page to the widgets."
|
1077 |
+
msgstr ""
|
1078 |
+
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
1079 |
+
|
1080 |
+
#: vkExUnit_admin.php:258
|
1081 |
+
msgid "VK_Profile - display the profile entered in the widget."
|
1082 |
+
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
1083 |
+
|
1084 |
+
#: vkExUnit_admin.php:259
|
1085 |
+
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
1086 |
+
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
1087 |
+
|
1088 |
+
#: vkExUnit_admin.php:260
|
1089 |
+
msgid "VK_3PR area - display the 3PR area."
|
1090 |
+
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
1091 |
+
|
1092 |
+
#: vkExUnit_admin.php:277
|
1093 |
+
msgid "CSS customize"
|
1094 |
+
msgstr "CSSカスタマイズ"
|
1095 |
+
|
1096 |
+
#: vkExUnit_admin.php:289
|
1097 |
+
msgid "You can set Customize CSS."
|
1098 |
+
msgstr ""
|
1099 |
+
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
1100 |
+
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
1101 |
+
"さい。"
|
1102 |
+
|
1103 |
+
#: vkExUnit_admin.php:298 vkExUnit_admin.php:303
|
1104 |
+
msgid "Automatic Eye Catch insert"
|
1105 |
+
msgstr "アイキャッチ画像自動挿入"
|
1106 |
+
|
1107 |
+
#: vkExUnit_admin.php:307
|
1108 |
+
msgid "Display Eye Catch image at before content."
|
1109 |
+
msgstr ""
|
1110 |
+
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
1111 |
+
"す。"
|
1112 |
+
|
1113 |
#~ msgid "Other Widgets"
|
1114 |
#~ msgstr "Other ウィジェット"
|
1115 |
|
languages/vkexunit.pot
CHANGED
@@ -1,17 +1,18 @@
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2015-07-
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
"Language-Team: Vektor,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.
|
12 |
"X-Poedit-SourceCharset: UTF-8\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
-
"X-Poedit-Basepath:
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
#: admin_wrapper.php:7 admin_wrapper.php:8
|
@@ -97,226 +98,11 @@ msgstr ""
|
|
97 |
msgid "Chats"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: common_helpers.php:262 plugins/other_widget/widget-
|
101 |
-
#: plugins/other_widget/
|
102 |
msgid "Archives"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:298
|
106 |
-
msgid "Select all"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:298
|
110 |
-
msgid "Function"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: vkExUnit_admin.php:12 vkExUnit_admin.php:298
|
114 |
-
msgid "Description"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: vkExUnit_admin.php:21
|
118 |
-
msgid "Choose Print Bootstrap css"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: vkExUnit_admin.php:26
|
122 |
-
msgid "Print Bootstrap css and js"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: vkExUnit_admin.php:30
|
126 |
-
msgid ""
|
127 |
-
"If your using theme has already including Bootstrap, you deactivate this "
|
128 |
-
"item."
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: vkExUnit_admin.php:39
|
132 |
-
msgid "Choose Print link fontawesome."
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: vkExUnit_admin.php:44
|
136 |
-
msgid "Print link fontawesome."
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: vkExUnit_admin.php:48
|
140 |
-
msgid "Print fontawesome link tag to html head."
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: vkExUnit_admin.php:57 vkExUnit_admin.php:121
|
144 |
-
msgid "Choose Print meta description."
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: vkExUnit_admin.php:62
|
148 |
-
msgid "Favicon setting"
|
149 |
-
msgstr ""
|
150 |
-
|
151 |
-
#: vkExUnit_admin.php:66
|
152 |
-
msgid "About favicon."
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#: vkExUnit_admin.php:75
|
156 |
-
msgid "Choose Rewrite the title tag"
|
157 |
-
msgstr ""
|
158 |
-
|
159 |
-
#: vkExUnit_admin.php:80
|
160 |
-
msgid "Rewrite the title tag"
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: vkExUnit_admin.php:84
|
164 |
-
msgid "Print is rewritten by its own rules to html head."
|
165 |
-
msgstr ""
|
166 |
-
|
167 |
-
#: vkExUnit_admin.php:93
|
168 |
-
msgid "Choose Print meta Keyword."
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: vkExUnit_admin.php:98
|
172 |
-
msgid "Print meta Keyword"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: vkExUnit_admin.php:104 vkExUnit_admin.php:150 vkExUnit_admin.php:188
|
176 |
-
#: vkExUnit_admin.php:231 vkExUnit_admin.php:264
|
177 |
-
msgid "Setting"
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
#: vkExUnit_admin.php:112
|
181 |
-
msgid "Print meta Keyword to html head."
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: vkExUnit_admin.php:126
|
185 |
-
msgid "Print meta description"
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: vkExUnit_admin.php:130
|
189 |
-
msgid "Print meta description to html head."
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#: vkExUnit_admin.php:139
|
193 |
-
msgid "Choose Social media cooperation."
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: vkExUnit_admin.php:144
|
197 |
-
msgid "Social media cooperation."
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: vkExUnit_admin.php:159
|
201 |
-
msgid "Print og tags to html head."
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: vkExUnit_admin.php:160
|
205 |
-
msgid "Print twitter card tags to html head."
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#: vkExUnit_admin.php:161
|
209 |
-
msgid "Print social bookmark buttons."
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: vkExUnit_admin.php:162
|
213 |
-
msgid "Facebook Page Plugin widget."
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: vkExUnit_admin.php:163
|
217 |
-
msgid "Print Follow me box to content bottom."
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: vkExUnit_admin.php:166
|
221 |
-
msgid "Main setting page"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: vkExUnit_admin.php:167
|
225 |
-
#, php-format
|
226 |
-
msgid "* You can stop the function separately from the %s."
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#: vkExUnit_admin.php:177
|
230 |
-
msgid "Choose Print Google Analytics tracking code."
|
231 |
-
msgstr ""
|
232 |
-
|
233 |
-
#: vkExUnit_admin.php:196
|
234 |
-
msgid "Print Google Analytics tracking code."
|
235 |
-
msgstr ""
|
236 |
-
|
237 |
-
#: vkExUnit_admin.php:205
|
238 |
-
msgid "Choose Related posts."
|
239 |
-
msgstr ""
|
240 |
-
|
241 |
-
#: vkExUnit_admin.php:210 plugins/related_posts/related_posts.php:34
|
242 |
-
msgid "Related posts"
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: vkExUnit_admin.php:214
|
246 |
-
msgid "Print Related posts lists to post content bottom."
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: vkExUnit_admin.php:223 vkExUnit_admin.php:254
|
250 |
-
msgid "Choose other widgets."
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: vkExUnit_admin.php:228
|
254 |
-
msgid "Widgets"
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: vkExUnit_admin.php:236
|
258 |
-
msgid "You can use various widgets."
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: vkExUnit_admin.php:238
|
262 |
-
msgid ""
|
263 |
-
"VK_Recent Posts - display the link text and the date of the latest article "
|
264 |
-
"title."
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: vkExUnit_admin.php:239
|
268 |
-
msgid ""
|
269 |
-
"VK_Page content to widget - display the contents of the page to the widgets."
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: vkExUnit_admin.php:240
|
273 |
-
msgid "VK_Profile - display the profile entered in the widget."
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: vkExUnit_admin.php:241
|
277 |
-
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: vkExUnit_admin.php:242
|
281 |
-
msgid "VK_3PR area - display the 3PR area."
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#: vkExUnit_admin.php:243 plugins/other_widget/old/widget-taxonomy-list.php:17
|
285 |
-
msgid "categories/tags list"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: vkExUnit_admin.php:243 plugins/other_widget/old/widget-taxonomy-list.php:11
|
289 |
-
msgid "Displays a categories, tags or format list."
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: vkExUnit_admin.php:244 plugins/other_widget/widget-archives.php:14
|
293 |
-
#: plugins/other_widget/old/widget-archive-list.php:14
|
294 |
-
msgid "archive list"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: vkExUnit_admin.php:244 plugins/other_widget/widget-archives.php:12
|
298 |
-
#: plugins/other_widget/old/widget-archive-list.php:12
|
299 |
-
msgid ""
|
300 |
-
"Displays a list of archives. You can choose the post type and also to "
|
301 |
-
"display archives by month or by year."
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: vkExUnit_admin.php:259
|
305 |
-
msgid "CSS customize"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: vkExUnit_admin.php:271
|
309 |
-
msgid "You can set Customize CSS."
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: vkExUnit_admin.php:280 vkExUnit_admin.php:285
|
313 |
-
msgid "Automatic Eye Catch insert"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: vkExUnit_admin.php:289
|
317 |
-
msgid "Display Eye Catch image at before content."
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
#: plugins/auto_eyecatch.php:32
|
321 |
msgid "Automatic EyeCatch"
|
322 |
msgstr ""
|
@@ -325,20 +111,24 @@ msgstr ""
|
|
325 |
msgid "Do not set eyecatch image automatic."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: plugins/
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: plugins/
|
333 |
-
msgid "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: plugins/
|
337 |
-
msgid "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: plugins/
|
341 |
-
|
|
|
|
|
|
|
|
|
342 |
msgstr ""
|
343 |
|
344 |
#: plugins/css_customize/css_customize-edit.php:2
|
@@ -375,10 +165,10 @@ msgid ""
|
|
375 |
"the site."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/sns_admin.php:
|
379 |
-
#: plugins/sns/old/sns_admin.php:
|
380 |
-
#: plugins/sns/old/sns_admin.php:
|
381 |
-
#: plugins/sns/
|
382 |
msgid "ex) "
|
383 |
msgstr ""
|
384 |
|
@@ -400,6 +190,22 @@ msgstr ""
|
|
400 |
msgid "To output both types"
|
401 |
msgstr ""
|
402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
#: plugins/meta_description/meta_description.php:7
|
404 |
#: plugins/meta_description/meta_description.php:19
|
405 |
msgid "Meta Description"
|
@@ -483,30 +289,133 @@ msgstr ""
|
|
483 |
msgid "* keywords common to the entire site can be set from %s."
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: plugins/other_widget/widget-
|
487 |
-
|
|
|
|
|
|
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: plugins/other_widget/widget-
|
491 |
-
#: plugins/other_widget/widget-
|
492 |
-
|
493 |
-
#: plugins/other_widget/widget-3pr-area.php:330
|
494 |
-
msgid "3PR area"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: plugins/other_widget/widget-
|
498 |
-
|
|
|
|
|
|
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: plugins/other_widget/widget-
|
502 |
-
|
|
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: plugins/other_widget/widget-
|
506 |
-
|
|
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: plugins/other_widget/widget-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
msgid "3PR area1 setting"
|
511 |
msgstr ""
|
512 |
|
@@ -571,29 +480,6 @@ msgstr ""
|
|
571 |
msgid "3PR area3 setting"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: plugins/other_widget/widget-3pr-area.php:274
|
575 |
-
#: plugins/other_widget/widget-3pr-area.php:316
|
576 |
-
#: plugins/other_widget/widget-3pr-area.php:359
|
577 |
-
msgid "Read more"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: plugins/other_widget/widget-archives.php:49
|
581 |
-
#: plugins/other_widget/widget-archives.php:50
|
582 |
-
#: plugins/other_widget/old/widget-archive-list.php:49
|
583 |
-
#: plugins/other_widget/old/widget-archive-list.php:50
|
584 |
-
msgid "Monthly archives"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: plugins/other_widget/widget-archives.php:59
|
588 |
-
#: plugins/other_widget/old/widget-archive-list.php:59
|
589 |
-
msgid "Title"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: plugins/other_widget/widget-archives.php:63
|
593 |
-
#: plugins/other_widget/old/widget-archive-list.php:63
|
594 |
-
msgid "Post type"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
#: plugins/other_widget/widget-new-posts.php:11
|
598 |
msgid "Displays a list of your most recent posts"
|
599 |
msgstr ""
|
@@ -620,23 +506,6 @@ msgstr ""
|
|
620 |
msgid "page content to widget"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: plugins/other_widget/widget-page.php:30
|
624 |
-
#: plugins/other_widget/widget-taxonomies.php:60
|
625 |
-
#: plugins/other_widget/old/widget-page-content.php:30
|
626 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
627 |
-
msgid "Display page"
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: plugins/other_widget/widget-page.php:38
|
631 |
-
#: plugins/other_widget/old/widget-page-content.php:38
|
632 |
-
msgid "display title"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
-
#: plugins/other_widget/widget-page.php:60
|
636 |
-
#: plugins/other_widget/old/widget-page-content.php:61
|
637 |
-
msgid "Edit"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
#: plugins/other_widget/widget-profile.php:11
|
641 |
msgid "Displays a your profile"
|
642 |
msgstr ""
|
@@ -698,53 +567,8 @@ msgstr ""
|
|
698 |
msgid "Categories/Custom taxonomies list"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: plugins/
|
702 |
-
|
703 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
704 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
705 |
-
msgid "Category"
|
706 |
-
msgstr ""
|
707 |
-
|
708 |
-
#: plugins/other_widget/widget-taxonomies.php:56
|
709 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
710 |
-
msgid "Label to display"
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: plugins/other_widget/widget-taxonomies.php:76
|
714 |
-
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
715 |
-
msgid "Blog"
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: plugins/other_widget/old/widget-child-page-list.php:9
|
719 |
-
msgid "Displays list of child page for the current page."
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
-
#: plugins/other_widget/old/widget-child-page-list.php:11
|
723 |
-
msgid "child pages list"
|
724 |
-
msgstr ""
|
725 |
-
|
726 |
-
#: plugins/other_widget/old/widget-page-content.php:10
|
727 |
-
msgid "Displays the content of a chosen page."
|
728 |
-
msgstr ""
|
729 |
-
|
730 |
-
#: plugins/other_widget/old/widget-page-content.php:12
|
731 |
-
msgid "page content for top"
|
732 |
-
msgstr ""
|
733 |
-
|
734 |
-
#: plugins/other_widget/old/widget-rss-widget.php:9
|
735 |
-
msgid "Displays entries list from a RSS feed link."
|
736 |
-
msgstr ""
|
737 |
-
|
738 |
-
#: plugins/other_widget/old/widget-rss-widget.php:11
|
739 |
-
msgid "RSS entries for top"
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: plugins/other_widget/old/widget-rss-widget.php:25
|
743 |
-
msgid "Blog entries"
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: plugins/other_widget/old/widget-rss-widget.php:30
|
747 |
-
msgid "Heading title"
|
748 |
msgstr ""
|
749 |
|
750 |
#: plugins/sns/function_fbPagePlugin.php:10
|
@@ -771,86 +595,225 @@ msgstr ""
|
|
771 |
msgid "Follow me"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: plugins/sns/sns.php:
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: plugins/sns/sns_admin.php:
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: plugins/sns/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
msgid "facebook application ID"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: plugins/sns/sns_admin.php:
|
787 |
msgid "I will check and get the application ID"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: plugins/sns/sns_admin.php:
|
791 |
msgid ""
|
792 |
"* If an application ID is not specified, neither a Like button nor the "
|
793 |
"comment field displays and operates correctly."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: plugins/sns/sns_admin.php:
|
797 |
msgid ""
|
798 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
799 |
"much about how to get application ID for Facebook."
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: plugins/sns/sns_admin.php:
|
803 |
-
msgid "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: plugins/sns/sns_admin.php:
|
807 |
-
msgid "
|
|
|
|
|
|
|
|
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: plugins/sns/
|
811 |
msgid ""
|
812 |
-
"
|
813 |
-
"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: plugins/sns/
|
817 |
-
msgid "
|
|
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: plugins/sns/
|
821 |
-
msgid "
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: plugins/sns/
|
825 |
msgid ""
|
826 |
-
"
|
827 |
-
"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: plugins/sns/sns_admin.php:
|
831 |
-
msgid "
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: plugins/sns/sns_admin.php:
|
835 |
-
|
|
|
|
|
|
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: plugins/sns/sns_admin.php:
|
839 |
-
msgid "
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: plugins/sns/sns_admin.php:
|
843 |
msgid ""
|
844 |
-
"If
|
845 |
-
"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: plugins/sns/sns_admin.php:
|
849 |
-
msgid "
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: plugins/sns/sns_admin.php:
|
853 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
msgstr ""
|
855 |
|
856 |
#: plugins/sns/sns_admin.php:56
|
@@ -869,141 +832,205 @@ msgstr ""
|
|
869 |
msgid "Print the Follow me box"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#:
|
873 |
-
msgid "
|
874 |
msgstr ""
|
875 |
|
876 |
-
#:
|
877 |
-
msgid "
|
878 |
msgstr ""
|
879 |
|
880 |
-
#:
|
881 |
-
msgid "
|
882 |
msgstr ""
|
883 |
|
884 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
885 |
msgid ""
|
886 |
-
"If
|
887 |
-
"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#:
|
891 |
-
msgid "
|
892 |
msgstr ""
|
893 |
|
894 |
-
#:
|
895 |
-
msgid "
|
896 |
msgstr ""
|
897 |
|
898 |
-
#:
|
899 |
-
msgid "
|
900 |
msgstr ""
|
901 |
|
902 |
-
#:
|
903 |
-
msgid ""
|
904 |
-
"You can see the personal Facebook ID when you access the following url "
|
905 |
-
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#:
|
909 |
-
msgid ""
|
910 |
-
"Please search for terms as [find facebook user ID] if you are still not sure."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#:
|
914 |
-
msgid "
|
915 |
msgstr ""
|
916 |
|
917 |
-
#:
|
918 |
-
msgid ""
|
919 |
-
"If you would like to link to a Twitter account, banner will be displayed if "
|
920 |
-
"you enter the account name."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#:
|
924 |
-
msgid "
|
925 |
msgstr ""
|
926 |
|
927 |
-
#:
|
928 |
-
|
929 |
-
msgid ""
|
930 |
-
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
931 |
-
"the source code into a [text] %s here."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#:
|
935 |
-
msgid "
|
936 |
msgstr ""
|
937 |
|
938 |
-
#:
|
939 |
-
msgid "
|
940 |
msgstr ""
|
941 |
|
942 |
-
#:
|
943 |
-
|
|
|
944 |
msgstr ""
|
945 |
|
946 |
-
#:
|
947 |
-
msgid ""
|
948 |
-
"Within the type of page that is checked, if there is a particular page you "
|
949 |
-
"do not wish to display, enter the Page ID. If multiple pages, please "
|
950 |
-
"separate by commas."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#:
|
954 |
-
msgid "
|
955 |
msgstr ""
|
956 |
|
957 |
-
#:
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#:
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#:
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#:
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
#:
|
974 |
-
msgid "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#:
|
978 |
-
msgid "
|
979 |
msgstr ""
|
980 |
|
981 |
-
#:
|
982 |
-
msgid "
|
983 |
msgstr ""
|
984 |
|
985 |
-
#:
|
986 |
-
msgid "
|
987 |
msgstr ""
|
988 |
|
989 |
-
#:
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
994 |
msgid ""
|
995 |
-
"
|
996 |
-
"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#:
|
1000 |
-
msgid "
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#:
|
1004 |
-
msgid "
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#:
|
1008 |
-
msgid "Page
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgstr ""
|
1 |
+
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
+
"POT-Creation-Date: 2015-07-13 18:38+0900\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
8 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.2\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
15 |
+
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin_wrapper.php:7 admin_wrapper.php:8
|
98 |
msgid "Chats"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: common_helpers.php:262 plugins/other_widget/old/widget-taxonomy-list.php:81
|
102 |
+
#: plugins/other_widget/widget-taxonomies.php:81
|
103 |
msgid "Archives"
|
104 |
msgstr ""
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
#: plugins/auto_eyecatch.php:32
|
107 |
msgid "Automatic EyeCatch"
|
108 |
msgstr ""
|
111 |
msgid "Do not set eyecatch image automatic."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: plugins/child_page_index/child_page_index.php:12
|
115 |
+
msgid "Display a child page index"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: plugins/child_page_index/child_page_index.php:20
|
119 |
+
msgid "Choose display a child page index"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: plugins/child_page_index/child_page_index.php:25
|
123 |
+
msgid "if checked you will display a child page index "
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: plugins/child_page_index/child_page_index.php:74
|
127 |
+
#: plugins/child_page_index/child_page_index.php:89
|
128 |
+
#: plugins/other_widget/widget-3pr-area.php:274
|
129 |
+
#: plugins/other_widget/widget-3pr-area.php:316
|
130 |
+
#: plugins/other_widget/widget-3pr-area.php:359
|
131 |
+
msgid "Read more"
|
132 |
msgstr ""
|
133 |
|
134 |
#: plugins/css_customize/css_customize-edit.php:2
|
165 |
"the site."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: plugins/google_analytics/ga_admin.php:16 plugins/sns/old/sns_admin.php:20
|
169 |
+
#: plugins/sns/old/sns_admin.php:61 plugins/sns/old/sns_admin.php:79
|
170 |
+
#: plugins/sns/old/sns_admin.php:98 plugins/sns/old/sns_admin.php:115
|
171 |
+
#: plugins/sns/sns_admin.php:31
|
172 |
msgid "ex) "
|
173 |
msgstr ""
|
174 |
|
190 |
msgid "To output both types"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: plugins/icons.php:26 plugins/icons.php:54
|
194 |
+
msgid "icon setting"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: plugins/icons.php:59
|
198 |
+
msgid "Favicon Setting"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: plugins/icons.php:61
|
202 |
+
msgid "Choose icon"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: plugins/icons.php:62
|
206 |
+
msgid "Please upload your \".ico\" file"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
#: plugins/meta_description/meta_description.php:7
|
210 |
#: plugins/meta_description/meta_description.php:19
|
211 |
msgid "Meta Description"
|
289 |
msgid "* keywords common to the entire site can be set from %s."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: plugins/other_widget/old/widget-archive-list.php:12
|
293 |
+
#: plugins/other_widget/widget-archives.php:12 vkExUnit_admin.php:262
|
294 |
+
msgid ""
|
295 |
+
"Displays a list of archives. You can choose the post type and also to "
|
296 |
+
"display archives by month or by year."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: plugins/other_widget/old/widget-archive-list.php:14
|
300 |
+
#: plugins/other_widget/widget-archives.php:14 vkExUnit_admin.php:262
|
301 |
+
msgid "archive list"
|
|
|
|
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: plugins/other_widget/old/widget-archive-list.php:49
|
305 |
+
#: plugins/other_widget/old/widget-archive-list.php:50
|
306 |
+
#: plugins/other_widget/widget-archives.php:49
|
307 |
+
#: plugins/other_widget/widget-archives.php:50
|
308 |
+
msgid "Monthly archives"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: plugins/other_widget/old/widget-archive-list.php:59
|
312 |
+
#: plugins/other_widget/widget-archives.php:59
|
313 |
+
msgid "Title"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: plugins/other_widget/old/widget-archive-list.php:63
|
317 |
+
#: plugins/other_widget/widget-archives.php:63
|
318 |
+
msgid "Post type"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: plugins/other_widget/old/widget-child-page-list.php:9
|
322 |
+
msgid "Displays list of child page for the current page."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: plugins/other_widget/old/widget-child-page-list.php:11
|
326 |
+
msgid "child pages list"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: plugins/other_widget/old/widget-page-content.php:10
|
330 |
+
msgid "Displays the content of a chosen page."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: plugins/other_widget/old/widget-page-content.php:12
|
334 |
+
msgid "page content for top"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: plugins/other_widget/old/widget-page-content.php:30
|
338 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:61
|
339 |
+
#: plugins/other_widget/widget-page.php:30
|
340 |
+
#: plugins/other_widget/widget-taxonomies.php:60
|
341 |
+
msgid "Display page"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: plugins/other_widget/old/widget-page-content.php:38
|
345 |
+
#: plugins/other_widget/widget-page.php:38
|
346 |
+
msgid "display title"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: plugins/other_widget/old/widget-page-content.php:61
|
350 |
+
#: plugins/other_widget/widget-page.php:60
|
351 |
+
msgid "Edit"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: plugins/other_widget/old/widget-rss-widget.php:9
|
355 |
+
msgid "Displays entries list from a RSS feed link."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: plugins/other_widget/old/widget-rss-widget.php:11
|
359 |
+
msgid "RSS entries for top"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: plugins/other_widget/old/widget-rss-widget.php:25
|
363 |
+
msgid "Blog entries"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: plugins/other_widget/old/widget-rss-widget.php:30
|
367 |
+
msgid "Heading title"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:11 vkExUnit_admin.php:261
|
371 |
+
msgid "Displays a categories, tags or format list."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:17 vkExUnit_admin.php:261
|
375 |
+
msgid "categories/tags list"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:48
|
379 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:49
|
380 |
+
#: plugins/other_widget/widget-taxonomies.php:47
|
381 |
+
#: plugins/other_widget/widget-taxonomies.php:48
|
382 |
+
msgid "Category"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:57
|
386 |
+
#: plugins/other_widget/widget-taxonomies.php:56
|
387 |
+
msgid "Label to display"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: plugins/other_widget/old/widget-taxonomy-list.php:76
|
391 |
+
#: plugins/other_widget/widget-taxonomies.php:76
|
392 |
+
msgid "Blog"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: plugins/other_widget/widget-3pr-area.php:11
|
396 |
+
msgid "Displays a 3PR area"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: plugins/other_widget/widget-3pr-area.php:13
|
400 |
+
#: plugins/other_widget/widget-3pr-area.php:245
|
401 |
+
#: plugins/other_widget/widget-3pr-area.php:287
|
402 |
+
#: plugins/other_widget/widget-3pr-area.php:330
|
403 |
+
msgid "3PR area"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: plugins/other_widget/widget-3pr-area.php:18
|
407 |
+
msgid "3PR area1 title"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: plugins/other_widget/widget-3pr-area.php:26
|
411 |
+
msgid "3PR area2 title"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: plugins/other_widget/widget-3pr-area.php:34
|
415 |
+
msgid "3PR area3 title"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: plugins/other_widget/widget-3pr-area.php:47
|
419 |
msgid "3PR area1 setting"
|
420 |
msgstr ""
|
421 |
|
480 |
msgid "3PR area3 setting"
|
481 |
msgstr ""
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#: plugins/other_widget/widget-new-posts.php:11
|
484 |
msgid "Displays a list of your most recent posts"
|
485 |
msgstr ""
|
506 |
msgid "page content to widget"
|
507 |
msgstr ""
|
508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
509 |
#: plugins/other_widget/widget-profile.php:11
|
510 |
msgid "Displays a your profile"
|
511 |
msgstr ""
|
567 |
msgid "Categories/Custom taxonomies list"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: plugins/related_posts/related_posts.php:34 vkExUnit_admin.php:210
|
571 |
+
msgid "Related posts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
msgstr ""
|
573 |
|
574 |
#: plugins/sns/function_fbPagePlugin.php:10
|
595 |
msgid "Follow me"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: plugins/sns/old/sns.php:378
|
599 |
+
msgid "* It is necessary to set the Theme options page."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: plugins/sns/old/sns_admin.php:12
|
603 |
+
msgid "Social media"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: plugins/sns/old/sns_admin.php:13
|
607 |
+
msgid "If you are unsure, you can leave for later."
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: plugins/sns/old/sns_admin.php:18
|
611 |
+
msgid ""
|
612 |
+
"If you wish to link to a personal account or a Facebook page banner will be "
|
613 |
+
"displayed if you enter the URL."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: plugins/sns/old/sns_admin.php:26 plugins/sns/sns_admin.php:13
|
617 |
msgid "facebook application ID"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: plugins/sns/old/sns_admin.php:28 plugins/sns/sns_admin.php:15
|
621 |
msgid "I will check and get the application ID"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: plugins/sns/old/sns_admin.php:29 plugins/sns/sns_admin.php:16
|
625 |
msgid ""
|
626 |
"* If an application ID is not specified, neither a Like button nor the "
|
627 |
"comment field displays and operates correctly."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: plugins/sns/old/sns_admin.php:30 plugins/sns/sns_admin.php:17
|
631 |
msgid ""
|
632 |
"Please search for terms as [get Facebook application ID] If you do not know "
|
633 |
"much about how to get application ID for Facebook."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: plugins/sns/old/sns_admin.php:35
|
637 |
+
msgid "Facebook user ID (optional)"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: plugins/sns/old/sns_admin.php:36
|
641 |
+
msgid "Please enter the Facebook user ID of the administrator."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: plugins/sns/old/sns_admin.php:38
|
645 |
+
msgid "* It is not the application ID of the Facebook page."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: plugins/sns/old/sns_admin.php:39
|
649 |
msgid ""
|
650 |
+
"You can see the personal Facebook ID when you access the following url "
|
651 |
+
"http://graph.facebook.com/(own url name(example: hidekazu.ishikawa))."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: plugins/sns/old/sns_admin.php:40
|
655 |
+
msgid ""
|
656 |
+
"Please search for terms as [find facebook user ID] if you are still not sure."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: plugins/sns/old/sns_admin.php:45
|
660 |
+
msgid "twitter account"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: plugins/sns/old/sns_admin.php:46
|
664 |
msgid ""
|
665 |
+
"If you would like to link to a Twitter account, banner will be displayed if "
|
666 |
+
"you enter the account name."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: plugins/sns/old/sns_admin.php:48
|
670 |
+
msgid "widget"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: plugins/sns/old/sns_admin.php:49
|
674 |
+
#, php-format
|
675 |
+
msgid ""
|
676 |
+
"* If you prefer to use Twitter widgets etc, this can be left blank, paste "
|
677 |
+
"the source code into a [text] %s here."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: plugins/sns/old/sns_admin.php:56
|
681 |
+
msgid "OGP default image"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: plugins/sns/old/sns_admin.php:57 plugins/sns/sns_admin.php:27
|
685 |
msgid ""
|
686 |
+
"If, for example someone pressed the Facebook [Like] button, this is the "
|
687 |
+
"image that appears on the Facebook timeline."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: plugins/sns/old/sns_admin.php:58 plugins/sns/sns_admin.php:28
|
691 |
+
msgid "If a featured image is specified for the page, it takes precedence."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: plugins/sns/old/sns_admin.php:60 plugins/sns/sns_admin.php:30
|
695 |
+
msgid "Select an image"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: plugins/sns/old/sns_admin.php:62 plugins/sns/sns_admin.php:32
|
699 |
+
msgid ""
|
700 |
+
"* Picture sizes are 300x300 pixels or more and picture ratio 16:9 is "
|
701 |
+
"recommended."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: plugins/sns/old/sns_admin.php:67
|
705 |
+
msgid "Social buttons"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: plugins/sns/old/sns_admin.php:68
|
709 |
+
msgid "Please check the type of page that displays the social button."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: plugins/sns/old/sns_admin.php:77 plugins/sns/old/sns_admin.php:96
|
713 |
+
msgid ""
|
714 |
+
"Within the type of page that is checked, if there is a particular page you "
|
715 |
+
"do not wish to display, enter the Page ID. If multiple pages, please "
|
716 |
+
"separate by commas."
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: plugins/sns/old/sns_admin.php:84
|
720 |
+
msgid "facebook comments box"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: plugins/sns/old/sns_admin.php:85
|
724 |
+
msgid "Please check the type of the page to display Facebook comments."
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: plugins/sns/old/sns_admin.php:104
|
728 |
+
msgid "If you wish to use Facebook LikeBox, please check the location."
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: plugins/sns/old/sns_admin.php:105
|
732 |
+
msgid "* Please be sure to set Facebook application ID."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: plugins/sns/old/sns_admin.php:113
|
736 |
+
msgid "URL of the Facebook page."
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: plugins/sns/old/sns_admin.php:116
|
740 |
+
msgid "Display stream"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: plugins/sns/old/sns_admin.php:117 plugins/sns/old/sns_admin.php:119
|
744 |
+
msgid "Display"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: plugins/sns/old/sns_admin.php:118
|
748 |
+
msgid "Display faces"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: plugins/sns/old/sns_admin.php:120
|
752 |
+
msgid "Height of LikeBox"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: plugins/sns/old/sns_admin.php:128
|
756 |
+
msgid "Do not output the OGP"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: plugins/sns/old/sns_admin.php:130
|
760 |
+
msgid ""
|
761 |
+
"If other plug-ins are used for the OGP, do not output the OGP using "
|
762 |
+
"BizVektor."
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: plugins/sns/old/sns_admin.php:133
|
766 |
+
msgid "I want to output the OGP tags using BizVektor"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: plugins/sns/old/sns_admin.php:134
|
770 |
+
msgid "Do not output OGP tags using BizVektor"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: plugins/sns/old/sns_admin.php:149
|
774 |
+
msgid "Page top"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: plugins/sns/sns.php:17
|
778 |
+
msgid "SNS"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: plugins/sns/sns_admin.php:1
|
782 |
+
msgid "SNS Settings"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: plugins/sns/sns_admin.php:21
|
786 |
+
msgid "facebook page URL"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: plugins/sns/sns_admin.php:26
|
790 |
+
msgid "OG default image"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: plugins/sns/sns_admin.php:36
|
794 |
+
msgid "twitter ID"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: plugins/sns/sns_admin.php:41
|
798 |
+
msgid "OG tags"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: plugins/sns/sns_admin.php:43
|
802 |
+
msgid "Print the OG tags"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: plugins/sns/sns_admin.php:44
|
806 |
+
msgid ""
|
807 |
+
"If other plug-ins are used for the OG, do not output the OG using this "
|
808 |
+
"plugin."
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: plugins/sns/sns_admin.php:49
|
812 |
+
msgid "Twitter Card tags"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: plugins/sns/sns_admin.php:51
|
816 |
+
msgid "Print the Twitter Card tags"
|
817 |
msgstr ""
|
818 |
|
819 |
#: plugins/sns/sns_admin.php:56
|
832 |
msgid "Print the Follow me box"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
836 |
+
msgid "Select all"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
840 |
+
msgid "Function"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: vkExUnit_admin.php:12 vkExUnit_admin.php:316
|
844 |
+
msgid "Description"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: vkExUnit_admin.php:21
|
848 |
+
msgid "Choose Print Bootstrap css"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: vkExUnit_admin.php:26
|
852 |
+
msgid "Print Bootstrap css and js"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: vkExUnit_admin.php:30
|
856 |
msgid ""
|
857 |
+
"If your using theme has already including Bootstrap, you deactivate this "
|
858 |
+
"item."
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: vkExUnit_admin.php:39
|
862 |
+
msgid "Choose Print link fontawesome."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: vkExUnit_admin.php:44
|
866 |
+
msgid "Print link fontawesome."
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: vkExUnit_admin.php:48
|
870 |
+
msgid "Print fontawesome link tag to html head."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: vkExUnit_admin.php:57 vkExUnit_admin.php:121
|
874 |
+
msgid "Choose Print meta description."
|
|
|
|
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: vkExUnit_admin.php:62
|
878 |
+
msgid "Favicon setting"
|
|
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: vkExUnit_admin.php:66
|
882 |
+
msgid "About favicon."
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: vkExUnit_admin.php:75
|
886 |
+
msgid "Choose Rewrite the title tag"
|
|
|
|
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: vkExUnit_admin.php:80
|
890 |
+
msgid "Rewrite the title tag"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: vkExUnit_admin.php:84
|
894 |
+
msgid "Print is rewritten by its own rules to html head."
|
|
|
|
|
|
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: vkExUnit_admin.php:93
|
898 |
+
msgid "Choose Print meta Keyword."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: vkExUnit_admin.php:98
|
902 |
+
msgid "Print meta Keyword"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: vkExUnit_admin.php:104 vkExUnit_admin.php:150 vkExUnit_admin.php:188
|
906 |
+
#: vkExUnit_admin.php:249 vkExUnit_admin.php:282
|
907 |
+
msgid "Setting"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: vkExUnit_admin.php:112
|
911 |
+
msgid "Print meta Keyword to html head."
|
|
|
|
|
|
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: vkExUnit_admin.php:126
|
915 |
+
msgid "Print meta description"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: vkExUnit_admin.php:130
|
919 |
+
msgid "Print meta description to html head."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: vkExUnit_admin.php:139
|
923 |
+
msgid "Choose Social media cooperation."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: vkExUnit_admin.php:144
|
927 |
+
msgid "Social media cooperation."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: vkExUnit_admin.php:159
|
931 |
+
msgid "Print og tags to html head."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: vkExUnit_admin.php:160
|
935 |
+
msgid "Print twitter card tags to html head."
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: vkExUnit_admin.php:161
|
939 |
+
msgid "Print social bookmark buttons."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: vkExUnit_admin.php:162
|
943 |
+
msgid "Facebook Page Plugin widget."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: vkExUnit_admin.php:163
|
947 |
+
msgid "Print Follow me box to content bottom."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: vkExUnit_admin.php:166
|
951 |
+
msgid "Main setting page"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: vkExUnit_admin.php:167
|
955 |
+
#, php-format
|
956 |
+
msgid "* You can stop the function separately from the %s."
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: vkExUnit_admin.php:177
|
960 |
+
msgid "Choose Print Google Analytics tracking code."
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: vkExUnit_admin.php:196
|
964 |
+
msgid "Print Google Analytics tracking code."
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: vkExUnit_admin.php:205
|
968 |
+
msgid "Choose Related posts."
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: vkExUnit_admin.php:214
|
972 |
+
msgid "Print Related posts lists to post content bottom."
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: vkExUnit_admin.php:223
|
976 |
+
msgid "Choose display a child page index to posts."
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: vkExUnit_admin.php:228
|
980 |
+
msgid "Child page index"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: vkExUnit_admin.php:232
|
984 |
+
msgid "Display a child page index to posts."
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: vkExUnit_admin.php:241 vkExUnit_admin.php:272
|
988 |
+
msgid "Choose other widgets."
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: vkExUnit_admin.php:246
|
992 |
+
msgid "Widgets"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: vkExUnit_admin.php:254
|
996 |
+
msgid "You can use various widgets."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: vkExUnit_admin.php:256
|
1000 |
msgid ""
|
1001 |
+
"VK_Recent Posts - display the link text and the date of the latest article "
|
1002 |
+
"title."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: vkExUnit_admin.php:257
|
1006 |
+
msgid ""
|
1007 |
+
"VK_Page content to widget - display the contents of the page to the widgets."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: vkExUnit_admin.php:258
|
1011 |
+
msgid "VK_Profile - display the profile entered in the widget."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: vkExUnit_admin.php:259
|
1015 |
+
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: vkExUnit_admin.php:260
|
1019 |
+
msgid "VK_3PR area - display the 3PR area."
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: vkExUnit_admin.php:277
|
1023 |
+
msgid "CSS customize"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: vkExUnit_admin.php:289
|
1027 |
+
msgid "You can set Customize CSS."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: vkExUnit_admin.php:298 vkExUnit_admin.php:303
|
1031 |
+
msgid "Automatic Eye Catch insert"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: vkExUnit_admin.php:307
|
1035 |
+
msgid "Display Eye Catch image at before content."
|
1036 |
msgstr ""
|
plugins/child_page_index/child_page_index.php
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*-------------------------------------------*/
|
4 |
+
/* Child page index
|
5 |
+
/*-------------------------------------------*/
|
6 |
+
add_action('admin_menu', 'add_custom_field_childPageIndex' );
|
7 |
+
add_action('save_post', 'save_custom_field_postdata');
|
8 |
+
add_filter('the_content', 'show_childPageIndex', 7);
|
9 |
+
|
10 |
+
// add meta_box
|
11 |
+
function add_custom_field_childPageIndex() {
|
12 |
+
add_meta_box('child_Page_index', __('Display a child page index', 'vkExUnit'), 'childPageIndex_box', 'page', 'normal', 'high');
|
13 |
+
}
|
14 |
+
|
15 |
+
// display a meta_box
|
16 |
+
function childPageIndex_box(){
|
17 |
+
global $post;
|
18 |
+
$childPageIndex_active = get_post_meta( $post->ID, 'vkExUnit_childPageIndex' );
|
19 |
+
echo '<input type="hidden" name="_nonce_vkExUnit__custom_field_childPageIndex" id="_nonce_vkExUnit__custom_field_childPageIndex" value="'.wp_create_nonce(plugin_basename(__FILE__)).'" />';
|
20 |
+
echo '<label class="hidden" for="vkExUnit_childPageIndex">'.__('Choose display a child page index', 'vkExUnit').'</label>
|
21 |
+
<input type="checkbox" id="vkExUnit_childPageIndex" name="vkExUnit_childPageIndex" value="active"';
|
22 |
+
if( !empty($childPageIndex_active) ) {
|
23 |
+
if( $childPageIndex_active[0] === 'active' ) echo ' checked="checked"';
|
24 |
+
}
|
25 |
+
echo '/>'.__('if checked you will display a child page index ', 'vkExUnit');
|
26 |
+
}
|
27 |
+
|
28 |
+
// save custom field
|
29 |
+
function save_custom_field_postdata( $post_id ) {
|
30 |
+
$childPageIndex = isset($_POST['_nonce_vkExUnit__custom_field_childPageIndex']) ? htmlspecialchars($_POST['_nonce_vkExUnit__custom_field_childPageIndex']) : null;
|
31 |
+
|
32 |
+
if( !wp_verify_nonce( $childPageIndex, plugin_basename(__FILE__) )){
|
33 |
+
return $post_id;
|
34 |
+
}
|
35 |
+
|
36 |
+
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
|
37 |
+
return $post_id;
|
38 |
+
|
39 |
+
$data = isset($_POST['vkExUnit_childPageIndex']) ? htmlspecialchars($_POST['vkExUnit_childPageIndex']) : null;
|
40 |
+
|
41 |
+
if('page' == $data){
|
42 |
+
if(!current_user_can('edit_page', $post_id)) return $post_id;
|
43 |
+
}
|
44 |
+
|
45 |
+
if ( "" == get_post_meta( $post_id, 'vkExUnit_childPageIndex' )) {
|
46 |
+
add_post_meta( $post_id, 'vkExUnit_childPageIndex', $data, true ) ;
|
47 |
+
} else if ( $data != get_post_meta( $post_id, 'vkExUnit_childPageIndex' )) {
|
48 |
+
update_post_meta( $post_id, 'vkExUnit_childPageIndex', $data ) ;
|
49 |
+
} else if ( "" == $data ) {
|
50 |
+
delete_post_meta( $post_id, 'vkExUnit_childPageIndex' ) ;
|
51 |
+
}
|
52 |
+
}
|
53 |
+
|
54 |
+
function show_childPageIndex($content) {
|
55 |
+
global $post;
|
56 |
+
$childPageIndex_value = get_post_meta( $post->ID, 'vkExUnit_childPageIndex' );
|
57 |
+
if(!empty($childPageIndex_value)){
|
58 |
+
// check the childPageIndex_value
|
59 |
+
if( is_page() && $childPageIndex_value[0] == 'active'){
|
60 |
+
|
61 |
+
$my_wp_query = new WP_Query();
|
62 |
+
$all_wp_pages = $my_wp_query -> query(array('post_type' => 'page', 'posts_per_page' => -1, 'order' => 'ASC'));
|
63 |
+
|
64 |
+
$childrens = get_page_children( $post->post_parent, $all_wp_pages );
|
65 |
+
$childPageList = PHP_EOL.'<div class="row childPage_list">'.PHP_EOL;
|
66 |
+
if( $post->post_parent ){
|
67 |
+
// child page
|
68 |
+
foreach($childrens as $s){
|
69 |
+
$page = $s->ID;
|
70 |
+
$page_data = get_page($page);
|
71 |
+
$pageTitle = $page_data->post_title;
|
72 |
+
$pageContent = strip_tags($page_data->post_content);
|
73 |
+
$pageLink = $page_data->guid;
|
74 |
+
$childPageList .= PHP_EOL.'<div class="col-md-3"><a href="'.get_permalink($page).'"><h3 class="childPage_list_title">'.$pageTitle.'</h3>'.get_the_post_thumbnail( $page, 'large' ).'<div class="childPage_list_body">'.mb_substr($pageContent, 0, 50).'</div><span class="childPage_list_more btn btn-default btn-sm">'.__('Read more', 'vkExUnit').'</span></a></div>'.PHP_EOL;
|
75 |
+
}
|
76 |
+
} else {
|
77 |
+
// parent page
|
78 |
+
foreach($childrens as $s){
|
79 |
+
if($s->post_parent){
|
80 |
+
$page = $s->ID;
|
81 |
+
$page_data = get_page($page);
|
82 |
+
$pageTitle = $page_data->post_title;
|
83 |
+
$pageexcerpt = $page_data->post_excerpt;
|
84 |
+
$pageContent = strip_tags($page_data->post_content);
|
85 |
+
$pageLink = $page_data->guid;
|
86 |
+
if(!empty($pageexcerpt)){
|
87 |
+
$pageContent = $pageexcerpt;
|
88 |
+
}
|
89 |
+
$childPageList .= PHP_EOL.'<div class="col-md-3"><a href="'.get_permalink($page).'">'.PHP_EOL.'<h3 class="childPage_list_title">'.$pageTitle.'</h3>'.get_the_post_thumbnail( $page, 'large' ).'<div class="childPage_list_body">'.mb_substr($pageContent, 0, 50).'</div><span class="childPage_list_more btn btn-default btn-sm">'.__('Read more', 'vkExUnit').'</span></a></div>'.PHP_EOL;
|
90 |
+
}
|
91 |
+
}
|
92 |
+
}
|
93 |
+
$content = $content.$childPageList.'</div>'.PHP_EOL;
|
94 |
+
return $content;
|
95 |
+
}
|
96 |
+
}
|
97 |
+
return $content;
|
98 |
+
}
|
99 |
+
?>
|
plugins/sns/function_og.php
CHANGED
@@ -34,7 +34,7 @@ function vkExUnit_print_og() {
|
|
34 |
}
|
35 |
} else if (is_category() || is_archive()) {
|
36 |
$vkExUnitOGP .= '<meta property="og:type" content="article" />'."\n";
|
37 |
-
if ($vkExUnit_sns_options['ogImage']){
|
38 |
$vkExUnitOGP .= '<meta property="og:image" content="'.$vkExUnit_sns_options['ogImage'].'" />'."\n";
|
39 |
}
|
40 |
} else if (is_page() || is_single()) {
|
@@ -55,7 +55,7 @@ function vkExUnit_print_og() {
|
|
55 |
}
|
56 |
|
57 |
$vkExUnitOGP .= '<!-- [ /'.vkExUnit_get_name().' OG ] -->'."\n";
|
58 |
-
if ( isset($vkExUnit_sns_options['ogTagDisplay']) && $vkExUnit_sns_options['ogTagDisplay']
|
59 |
$vkExUnitOGP = '';
|
60 |
}
|
61 |
$vkExUnitOGP = apply_filters('vkExUnitOGPCustom', $vkExUnitOGP );
|
34 |
}
|
35 |
} else if (is_category() || is_archive()) {
|
36 |
$vkExUnitOGP .= '<meta property="og:type" content="article" />'."\n";
|
37 |
+
if (isset($vkExUnit_sns_options['ogImage']) && $vkExUnit_sns_options['ogImage']){
|
38 |
$vkExUnitOGP .= '<meta property="og:image" content="'.$vkExUnit_sns_options['ogImage'].'" />'."\n";
|
39 |
}
|
40 |
} else if (is_page() || is_single()) {
|
55 |
}
|
56 |
|
57 |
$vkExUnitOGP .= '<!-- [ /'.vkExUnit_get_name().' OG ] -->'."\n";
|
58 |
+
if ( isset($vkExUnit_sns_options['ogTagDisplay']) && $vkExUnit_sns_options['ogTagDisplay'] != true ) {
|
59 |
$vkExUnitOGP = '';
|
60 |
}
|
61 |
$vkExUnitOGP = apply_filters('vkExUnitOGPCustom', $vkExUnitOGP );
|
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.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 0.1.5.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
|
5 |
Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
-
Version: 0.1.5.
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
@@ -84,6 +84,10 @@ require vkExUnit_get_directory() . '/common_helpers.php';
|
|
84 |
require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
|
85 |
require vkExUnit_get_directory() . '/plugins/dashboard_info_widget/dashboard-info-widget.php';
|
86 |
|
|
|
|
|
|
|
|
|
87 |
if ( isset($options['active_sns']) && $options['active_sns'] )
|
88 |
require vkExUnit_get_directory() . '/plugins/sns/sns.php';
|
89 |
|
@@ -111,6 +115,9 @@ if ( isset($options['active_css_customize']) && $options['active_css_customize']
|
|
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 |
/*-------------------------------------------*/
|
@@ -166,13 +173,6 @@ function vkExUnit_admin_enq(){
|
|
166 |
wp_enqueue_style('vkexunit-css-admin', plugins_url('/css/admin.css', __FILE__));
|
167 |
}
|
168 |
|
169 |
-
/*-------------------------------------------*/
|
170 |
-
/* swich wp_title
|
171 |
-
/*-------------------------------------------*/
|
172 |
-
// if active_wpTitle true is run
|
173 |
-
if(isset($options['active_wpTitle']) && $options['active_wpTitle']){
|
174 |
-
add_filter('wp_title','vkExUnit_get_wp_head_title');
|
175 |
-
}
|
176 |
/*-------------------------------------------*/
|
177 |
/* 管理画面_admin_head JavaScriptのデバッグコンソールにhook_suffixの値を出力
|
178 |
/*-------------------------------------------*/
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: https://github.com/kurudrive/VK-All-in-one-Expansion-Unit
|
5 |
Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
+
Version: 0.1.5.2
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
84 |
require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
|
85 |
require vkExUnit_get_directory() . '/plugins/dashboard_info_widget/dashboard-info-widget.php';
|
86 |
|
87 |
+
|
88 |
+
if ( isset($options['active_wpTitle']) && $options['active_wpTitle'] )
|
89 |
+
add_filter('wp_title','vkExUnit_get_wp_head_title');
|
90 |
+
|
91 |
if ( isset($options['active_sns']) && $options['active_sns'] )
|
92 |
require vkExUnit_get_directory() . '/plugins/sns/sns.php';
|
93 |
|
115 |
if ( isset($options['active_auto_eyecatch']) && $options['active_auto_eyecatch'] )
|
116 |
require vkExUnit_get_directory() . '/plugins/auto_eyecatch.php';
|
117 |
|
118 |
+
if ( isset($options['active_childPageIndex']) && $options['active_childPageIndex'] )
|
119 |
+
require vkExUnit_get_directory() . '/plugins/child_page_index/child_page_index.php';
|
120 |
+
|
121 |
/*-------------------------------------------*/
|
122 |
/* Add vkExUnit css
|
123 |
/*-------------------------------------------*/
|
173 |
wp_enqueue_style('vkexunit-css-admin', plugins_url('/css/admin.css', __FILE__));
|
174 |
}
|
175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
/*-------------------------------------------*/
|
177 |
/* 管理画面_admin_head JavaScriptのデバッグコンソールにhook_suffixの値を出力
|
178 |
/*-------------------------------------------*/
|
vkExUnit_admin.php
CHANGED
@@ -215,6 +215,24 @@
|
|
215 |
</div><!-- [ /.plugin-description ] -->
|
216 |
</td>
|
217 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
|
219 |
<!-- [ active_otherWidgets ] -->
|
220 |
<tr<?php echo (isset($options['active_otherWidgets']) && $options['active_otherWidgets'])? ' class="active"': ' class="inactive"'; ?>>
|
215 |
</div><!-- [ /.plugin-description ] -->
|
216 |
</td>
|
217 |
</tr>
|
218 |
+
|
219 |
+
<!-- [ active_childPageIndex ] -->
|
220 |
+
<tr<?php echo (isset($options['active_childPageIndex']) && $options['active_childPageIndex'])? ' class="active"': ' class="inactive"'; ?>>
|
221 |
+
<th scope='row' class='check-column'>
|
222 |
+
<label class='screen-reader-text' for='checkbox_active_relatedPosts' >
|
223 |
+
<?php _e('Choose display a child page index to posts.', 'vkExUnit'); ?>
|
224 |
+
</label>
|
225 |
+
<input type="checkbox" name="vkExUnit_common_options[active_childPageIndex]" id="checkbox_active_childPageIndex" value="true" <?php echo (isset($options['active_childPageIndex']) && $options['active_childPageIndex'])? 'checked': ''; ?> />
|
226 |
+
</th>
|
227 |
+
<td class='plugin-title'>
|
228 |
+
<strong><?php _e('Child page index', 'vkExUnit');?></strong>
|
229 |
+
</td>
|
230 |
+
<td class='column-description desc'>
|
231 |
+
<div class='plugin-description'>
|
232 |
+
<p><?php _e('Display a child page index to posts.', 'vkExUnit'); ?></p>
|
233 |
+
</div><!-- [ /.plugin-description ] -->
|
234 |
+
</td>
|
235 |
+
</tr>
|
236 |
|
237 |
<!-- [ active_otherWidgets ] -->
|
238 |
<tr<?php echo (isset($options['active_otherWidgets']) && $options['active_otherWidgets'])? ' class="active"': ' class="inactive"'; ?>>
|