Version Description
- WordPress 5.7
- WordPress 5.8.3 Compatible with WordPress 5.8.3.
- WordPress 5.9 Compatible with WordPress 5.9.
- WordPress 5.9.2 Compatible with WordPress 5.9.2.
- WordPress 5.9.3 Compatible with WordPress 5.9.3.
- WordPress 6.0 Compatible with WordPress 6.0.
- PHP 7.3 Compatible with PHP 7.3.
- PHP 7.4 Compatible with PHP 7.4.
- PHP 8.0 PHP Compatible with PHP 8.0.
- PHP 8.1 WordPress Compatible with PHP 8.1.
- Fixed: Fixed escaping of "Title" and "Excerpt".
- Thanks A-Jin Fixed: Fixed internal links not displaying posted and updated dates.
- HTML"noopener"Thanks @jh4vaj on Twitter Fixed: Corrected a spelling error in "noopener".
- Fixed: Fixed that line feeds are not inserted when exporting card information.
Download this release
Release Info
Developer | poporon |
Plugin | Pz-LinkCard |
Version | 2.4.5 |
Comparing to | |
See all releases |
Code changes from version 2.4.4.4 to 2.4.5
- css/admin.css +27 -2
- js/admin-settings.js +2 -0
- languages/pz-linkcard-ja.mo +0 -0
- languages/pz-linkcard-ja.po +514 -495
- languages/pz-linkcard.pot +505 -514
- lib/pz-linkcard-cacheman-edit.php +1 -1
- lib/pz-linkcard-cacheman-list.php +52 -41
- lib/pz-linkcard-cacheman.php +7 -19
- lib/pz-linkcard-file-export.php +5 -2
- lib/pz-linkcard-init.php +12 -16
- lib/pz-linkcard-settings-setup.php +36 -41
- lib/pz-linkcard-settings-validate.php +52 -78
- lib/pz-linkcard-settings.php +88 -61
- lib/pz-linkcard-style.php +9 -8
- pz-linkcard.php +214 -161
- readme.txt +32 -3
- templete/pz-linkcard-templete.css +1 -1
css/admin.css
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
|
4 |
/* DashBoard */
|
5 |
.pz-lkc-dashboard {
|
|
|
6 |
}
|
7 |
.pz-lkc-dashboard h1 {
|
8 |
}
|
@@ -141,6 +142,11 @@
|
|
141 |
max-height: 48px;
|
142 |
max-width: 48px;
|
143 |
}
|
|
|
|
|
|
|
|
|
|
|
144 |
.pz-lkc-man-head-check {
|
145 |
}
|
146 |
.pz-lkc-man-head-id {
|
@@ -229,10 +235,24 @@
|
|
229 |
white-space: wrap;
|
230 |
text-overflow: ellipsis;
|
231 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
.pz-lkc-man-body-sitename {
|
|
|
233 |
background-color: #888888;
|
234 |
color: #ffffff;
|
235 |
-
font-size:
|
|
|
|
|
|
|
236 |
}
|
237 |
.pz-lkc-man-body-sns {
|
238 |
font-size: 60%;
|
@@ -364,8 +384,9 @@
|
|
364 |
|
365 |
/* Settings - basic */
|
366 |
.pz-lkc-changelog-tab {
|
367 |
-
padding: 2px 16px 2px 16px;
|
368 |
display: inline-block;
|
|
|
|
|
369 |
background-color: #ddeeff;
|
370 |
font-size: 14px;
|
371 |
font-weight: 600;
|
@@ -377,8 +398,11 @@
|
|
377 |
text-align: center;
|
378 |
}
|
379 |
.pz-lkc-changelog {
|
|
|
380 |
padding: 4px 16px 4px 16px;
|
|
|
381 |
width: 800px;
|
|
|
382 |
height: 200px;
|
383 |
background-color: #ffffff;
|
384 |
border: solid 1px #888888;
|
@@ -594,6 +618,7 @@
|
|
594 |
color: #00aa88 !important;
|
595 |
}
|
596 |
.pz-lkc-develop-message {
|
|
|
597 |
padding: 8px;
|
598 |
background-color: #00aa88 !important;
|
599 |
color: #ffffff !important;
|
3 |
|
4 |
/* DashBoard */
|
5 |
.pz-lkc-dashboard {
|
6 |
+
display: none;
|
7 |
}
|
8 |
.pz-lkc-dashboard h1 {
|
9 |
}
|
142 |
max-height: 48px;
|
143 |
max-width: 48px;
|
144 |
}
|
145 |
+
.pz-lkc-man-head-orderby {
|
146 |
+
vertical-align: middle;
|
147 |
+
margin-left: 4px;
|
148 |
+
font-size: 12px;
|
149 |
+
}
|
150 |
.pz-lkc-man-head-check {
|
151 |
}
|
152 |
.pz-lkc-man-head-id {
|
235 |
white-space: wrap;
|
236 |
text-overflow: ellipsis;
|
237 |
}
|
238 |
+
.pz-lkc-man-body-domain {
|
239 |
+
background-color: transparent;
|
240 |
+
color: #444444;
|
241 |
+
font-family: monospace;
|
242 |
+
font-size: 14px;
|
243 |
+
line-height: 16px;
|
244 |
+
white-space: space;
|
245 |
+
word-break: break-all;
|
246 |
+
|
247 |
+
}
|
248 |
.pz-lkc-man-body-sitename {
|
249 |
+
padding: 2px 0 2px 0;
|
250 |
background-color: #888888;
|
251 |
color: #ffffff;
|
252 |
+
font-size: 12px;
|
253 |
+
line-height: 16px;
|
254 |
+
white-space: space;
|
255 |
+
word-break: break-all;
|
256 |
}
|
257 |
.pz-lkc-man-body-sns {
|
258 |
font-size: 60%;
|
384 |
|
385 |
/* Settings - basic */
|
386 |
.pz-lkc-changelog-tab {
|
|
|
387 |
display: inline-block;
|
388 |
+
position: relative;
|
389 |
+
padding: 2px 16px 2px 16px;
|
390 |
background-color: #ddeeff;
|
391 |
font-size: 14px;
|
392 |
font-weight: 600;
|
398 |
text-align: center;
|
399 |
}
|
400 |
.pz-lkc-changelog {
|
401 |
+
position: relative;
|
402 |
padding: 4px 16px 4px 16px;
|
403 |
+
min-width: 100px;
|
404 |
width: 800px;
|
405 |
+
min-height: 50px;
|
406 |
height: 200px;
|
407 |
background-color: #ffffff;
|
408 |
border: solid 1px #888888;
|
618 |
color: #00aa88 !important;
|
619 |
}
|
620 |
.pz-lkc-develop-message {
|
621 |
+
margin: 0 0 0 -16px;
|
622 |
padding: 8px;
|
623 |
background-color: #00aa88 !important;
|
624 |
color: #ffffff !important;
|
js/admin-settings.js
CHANGED
@@ -52,6 +52,8 @@
|
|
52 |
|
53 |
}
|
54 |
|
|
|
|
|
55 |
} );
|
56 |
|
57 |
// タブの表示/非表示
|
52 |
|
53 |
}
|
54 |
|
55 |
+
$('.pz-lkc-dashboard' ).show();
|
56 |
+
|
57 |
} );
|
58 |
|
59 |
// タブの表示/非表示
|
languages/pz-linkcard-ja.mo
CHANGED
Binary file
|
languages/pz-linkcard-ja.po
CHANGED
@@ -4,19 +4,19 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Pz-LinkCard\n"
|
6 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: poporon@popozure <poporon@poponet.jp>\n"
|
10 |
"Language-Team: poporon\n"
|
11 |
"Language: ja_JP\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"
|
|
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
-
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
|
22 |
#: ../lib/pz-linkcard-cacheman-edit.php:13
|
@@ -38,13 +38,13 @@ msgid "Cancel"
|
|
38 |
msgstr "キャンセル"
|
39 |
|
40 |
#: ../lib/pz-linkcard-cacheman-edit.php:20
|
41 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
42 |
msgid "ID"
|
43 |
msgstr "ID"
|
44 |
|
45 |
#: ../lib/pz-linkcard-cacheman-edit.php:24
|
46 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
47 |
-
#: ../lib/pz-linkcard-settings.php:
|
48 |
msgid "URL"
|
49 |
msgstr "URL"
|
50 |
|
@@ -60,13 +60,13 @@ msgstr "URLキー"
|
|
60 |
msgid "Scheme"
|
61 |
msgstr "スキーム"
|
62 |
|
63 |
-
#: ../lib/pz-linkcard-cacheman-edit.php:40 ../lib/pz-linkcard-settings.php:
|
64 |
msgid "Site Name"
|
65 |
msgstr "サイト名称"
|
66 |
|
67 |
#: ../lib/pz-linkcard-cacheman-edit.php:44
|
68 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
69 |
-
#: ../lib/pz-linkcard-settings.php:
|
70 |
msgid "Domain"
|
71 |
msgstr "ドメイン"
|
72 |
|
@@ -75,7 +75,7 @@ msgid "Registration Title"
|
|
75 |
msgstr "登録時のタイトル"
|
76 |
|
77 |
#: ../lib/pz-linkcard-cacheman-edit.php:56
|
78 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
79 |
msgid "Title"
|
80 |
msgstr "タイトル"
|
81 |
|
@@ -88,7 +88,7 @@ msgid "Registration Excerpt"
|
|
88 |
msgstr "登録時の抜粋文"
|
89 |
|
90 |
#: ../lib/pz-linkcard-cacheman-edit.php:68
|
91 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
92 |
msgid "Excerpt"
|
93 |
msgstr "抜粋文"
|
94 |
|
@@ -125,7 +125,7 @@ msgid "The result code is inaccessible but can actually be accessed."
|
|
125 |
msgstr "結果コードはエラーでも、アクセス可能とする。"
|
126 |
|
127 |
#: ../lib/pz-linkcard-cacheman-edit.php:101
|
128 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
129 |
msgid "Post ID"
|
130 |
msgstr "記事ID"
|
131 |
|
@@ -134,22 +134,22 @@ msgid "SNS"
|
|
134 |
msgstr "SNS"
|
135 |
|
136 |
#: ../lib/pz-linkcard-cacheman-edit.php:114
|
137 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
138 |
msgid "Tw"
|
139 |
msgstr "Tw"
|
140 |
|
141 |
#: ../lib/pz-linkcard-cacheman-edit.php:115
|
142 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
143 |
msgid "fb"
|
144 |
msgstr "fb"
|
145 |
|
146 |
#: ../lib/pz-linkcard-cacheman-edit.php:116
|
147 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
148 |
msgid "B!"
|
149 |
msgstr "B!"
|
150 |
|
151 |
#: ../lib/pz-linkcard-cacheman-edit.php:117
|
152 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
153 |
msgid "Po"
|
154 |
msgstr "Po"
|
155 |
|
@@ -191,166 +191,170 @@ msgstr "リンク切れ確認時の結果コード"
|
|
191 |
msgid "Update Date"
|
192 |
msgstr "更新日"
|
193 |
|
194 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
195 |
#: ../lib/pz-linkcard-settings-admin.php:86
|
196 |
msgid "▼"
|
197 |
msgstr "▼"
|
198 |
|
199 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
200 |
msgid "▲"
|
201 |
msgstr "▲"
|
202 |
|
203 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
204 |
msgid "All"
|
205 |
msgstr "すべて"
|
206 |
|
207 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
208 |
msgid "Internal"
|
209 |
msgstr "内部"
|
210 |
|
211 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
212 |
msgid "External"
|
213 |
msgstr "外部"
|
214 |
|
215 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
216 |
msgid "Modify"
|
217 |
msgstr "更新あり"
|
218 |
|
219 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
220 |
msgid "Unlink"
|
221 |
msgstr "リンク切れ"
|
222 |
|
223 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
|
|
|
|
|
|
|
|
224 |
msgid "🔍️"
|
225 |
msgstr "🔍️"
|
226 |
|
227 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
228 |
msgid "Search"
|
229 |
msgstr "検索"
|
230 |
|
231 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
232 |
msgid "Select"
|
233 |
msgstr "選択してください"
|
234 |
|
235 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
236 |
msgid "Renew Cache"
|
237 |
msgstr "記事内容の再取得"
|
238 |
|
239 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
240 |
msgid "Renew Thumbnail Image"
|
241 |
msgstr "サムネイル画像を再取得する"
|
242 |
|
243 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
244 |
msgid "Renew SNS Count"
|
245 |
msgstr "ソーシャルカウントを再取得する"
|
246 |
|
247 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
248 |
msgid "Renew Post ID"
|
249 |
msgstr "記事IDの再取得"
|
250 |
|
251 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
252 |
msgid "Check Status"
|
253 |
msgstr "状態の確認"
|
254 |
|
255 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
256 |
msgid "Delete from Cache"
|
257 |
msgstr "キャッシュから削除する"
|
258 |
|
259 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
260 |
msgid "Submit"
|
261 |
msgstr "適用"
|
262 |
|
263 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
264 |
msgid "All Domain"
|
265 |
msgstr "すべてのドメイン"
|
266 |
|
267 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
268 |
msgid "Refine Search"
|
269 |
msgstr "絞り込み検索"
|
270 |
|
271 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
272 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
273 |
#, php-format
|
274 |
msgid "%d item"
|
275 |
msgstr "%d個の項目"
|
276 |
|
277 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
278 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
279 |
#, php-format
|
280 |
msgid "%d items"
|
281 |
msgstr "%d個の項目"
|
282 |
|
283 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
284 |
msgid "Charset"
|
285 |
msgstr "文字セット"
|
286 |
|
287 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
288 |
msgid "Regist<br>date"
|
289 |
msgstr "登録日"
|
290 |
|
291 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
292 |
msgid "Update<br>date"
|
293 |
msgstr "更新日"
|
294 |
|
295 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
296 |
msgid "SNS<br>check<br>date"
|
297 |
msgstr "SNS<br>取得日"
|
298 |
|
299 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
300 |
msgid "Alive<br>check<br>date"
|
301 |
msgstr "状態<br>確認日"
|
302 |
|
303 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
304 |
msgid "Result<br>code"
|
305 |
msgstr "結果<br>コード"
|
306 |
|
307 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
308 |
msgid "(last )"
|
309 |
msgstr "(直近)"
|
310 |
|
311 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
312 |
msgid "The latest HTTP code is in error, but ignore it."
|
313 |
msgstr "HTTP結果コードがエラーだが、無視する。"
|
314 |
|
315 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
316 |
msgid "⚠️"
|
317 |
msgstr "⚠️"
|
318 |
|
319 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
320 |
msgid ""
|
321 |
"The latest HTTP code is in error. You can change it to ignore the error from "
|
322 |
"the edit screen."
|
323 |
msgstr "HTTP結果コードがエラー。編集画面から無視するように設定できます。"
|
324 |
|
325 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
326 |
msgid "⛔️"
|
327 |
msgstr "⛔️"
|
328 |
|
329 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
330 |
msgid "Ignore"
|
331 |
msgstr "無視"
|
332 |
|
333 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
334 |
msgid "Edit"
|
335 |
msgstr "編集"
|
336 |
|
337 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
338 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
339 |
#: ../lib/pz-linkcard-settings-admin.php:52
|
340 |
-
#: ../lib/pz-linkcard-settings.php:
|
341 |
msgid "Are you sure?"
|
342 |
msgstr "実行しますか?"
|
343 |
|
344 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
345 |
msgid "Renew"
|
346 |
msgstr "再取得"
|
347 |
|
348 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
349 |
msgid "Delete"
|
350 |
msgstr "削除"
|
351 |
|
352 |
#: ../lib/pz-linkcard-cacheman.php:3 ../lib/pz-linkcard-settings.php:3
|
353 |
-
#: ../lib/pz-linkcard-settings.php:
|
354 |
msgid "Currently working in a development environment."
|
355 |
msgstr "現在、開発環境で作業中です。"
|
356 |
|
@@ -358,12 +362,12 @@ msgstr "現在、開発環境で作業中です。"
|
|
358 |
msgid "🗃️"
|
359 |
msgstr "🗃️"
|
360 |
|
361 |
-
#: ../lib/pz-linkcard-cacheman.php:4 ../pz-linkcard.php:
|
362 |
msgid "LinkCard Cache Manager"
|
363 |
msgstr "リンクカード/DBキャッシュ管理"
|
364 |
|
365 |
#: ../lib/pz-linkcard-cacheman.php:4 ../lib/pz-linkcard-settings.php:4
|
366 |
-
#: ../lib/pz-linkcard-settings.php:
|
367 |
msgid "Help"
|
368 |
msgstr "ヘルプ"
|
369 |
|
@@ -371,102 +375,102 @@ msgstr "ヘルプ"
|
|
371 |
msgid "⚙️"
|
372 |
msgstr "⚙️"
|
373 |
|
374 |
-
#: ../lib/pz-linkcard-cacheman.php:5 ../pz-linkcard.php:
|
375 |
msgid "Settings"
|
376 |
msgstr "設定"
|
377 |
|
378 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
379 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
380 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
381 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
382 |
msgid "Not selected"
|
383 |
msgstr "選択されていません"
|
384 |
|
385 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
386 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
387 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
388 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
389 |
msgid "..."
|
390 |
msgstr "..."
|
391 |
|
392 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
393 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
394 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
395 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
396 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
397 |
#: ../lib/pz-linkcard-file-import.php:100
|
398 |
-
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:
|
399 |
-
#: ../lib/pz-linkcard-settings.php:
|
400 |
-
#: ../lib/pz-linkcard-settings.php:
|
401 |
-
#: ../pz-linkcard.php:
|
402 |
msgid "("
|
403 |
msgstr "("
|
404 |
|
405 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
406 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
407 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
408 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
409 |
msgid "Success:"
|
410 |
msgstr "成功:"
|
411 |
|
412 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
413 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
414 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
415 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
416 |
#: ../lib/pz-linkcard-file-import.php:102
|
417 |
msgid "Skip:"
|
418 |
msgstr "スキップ:"
|
419 |
|
420 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
421 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
422 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
423 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
424 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
425 |
#: ../lib/pz-linkcard-file-import.php:100
|
426 |
-
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:
|
427 |
-
#: ../lib/pz-linkcard-settings.php:
|
428 |
-
#: ../lib/pz-linkcard-settings.php:
|
429 |
-
#: ../pz-linkcard.php:
|
430 |
msgid ")"
|
431 |
msgstr ")"
|
432 |
|
433 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
434 |
msgid "Delete Cache"
|
435 |
msgstr "キャッシュ削除"
|
436 |
|
437 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
438 |
msgid "Update Cache"
|
439 |
msgstr "キャッシュを更新しました"
|
440 |
|
441 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
442 |
msgid "Renew Post Id"
|
443 |
msgstr "記事IDの再取得"
|
444 |
|
445 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
446 |
msgid "Alive check"
|
447 |
msgstr "リンク先のチェック"
|
448 |
|
449 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
450 |
msgid "Upload Import File"
|
451 |
msgstr "インポートするファイルをアップロード"
|
452 |
|
453 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
454 |
msgid "Clear all cache"
|
455 |
msgstr "すべてのキャッシュを消去"
|
456 |
|
457 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
458 |
msgid "📄️"
|
459 |
msgstr "📄️"
|
460 |
|
461 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
462 |
msgid "File Menu"
|
463 |
msgstr "ファイルメニュー"
|
464 |
|
465 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
466 |
msgid "Import"
|
467 |
msgstr "インポート"
|
468 |
|
469 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
470 |
msgid "Export"
|
471 |
msgstr "エクスポート"
|
472 |
|
@@ -529,7 +533,7 @@ msgid "Information"
|
|
529 |
msgstr "情報"
|
530 |
|
531 |
#: ../lib/pz-linkcard-settings-admin.php:64
|
532 |
-
#: ../lib/pz-linkcard-settings.php:
|
533 |
msgid "Table Name"
|
534 |
msgstr "テーブル名称"
|
535 |
|
@@ -547,7 +551,7 @@ msgid "View all schedules."
|
|
547 |
msgstr "すべてのスケジュールを表示する。"
|
548 |
|
549 |
#: ../lib/pz-linkcard-settings-admin.php:84
|
550 |
-
#: ../lib/pz-linkcard-settings.php:
|
551 |
msgid "Run"
|
552 |
msgstr "実行"
|
553 |
|
@@ -563,7 +567,7 @@ msgstr "次回の日時"
|
|
563 |
msgid "Schedule"
|
564 |
msgstr "スケジュール"
|
565 |
|
566 |
-
#: ../lib/pz-linkcard-settings.php:4 ../pz-linkcard.php:
|
567 |
msgid "LinkCard Settings"
|
568 |
msgstr "リンクカード設定"
|
569 |
|
@@ -571,1012 +575,1016 @@ msgstr "リンクカード設定"
|
|
571 |
msgid "Cache Manager"
|
572 |
msgstr "DBキャッシュ管理"
|
573 |
|
574 |
-
#: ../lib/pz-linkcard-settings.php:
|
575 |
msgid "Succeeded in initialize the settings."
|
576 |
msgstr "設定を初期化しました。"
|
577 |
|
578 |
-
#: ../lib/pz-linkcard-settings.php:
|
579 |
msgid "Failed to initialize the settings."
|
580 |
msgstr "設定の初期化に失敗しました。"
|
581 |
|
582 |
-
#: ../lib/pz-linkcard-settings.php:
|
583 |
msgid "Succeeded in saving the settings."
|
584 |
msgstr "設定を更新しました。"
|
585 |
|
586 |
-
#: ../lib/pz-linkcard-settings.php:
|
587 |
msgid "The settings have not changed."
|
588 |
msgstr "設定は変更されていません。"
|
589 |
|
590 |
-
#: ../lib/pz-linkcard-settings.php:
|
591 |
msgid "Version"
|
592 |
msgstr "バージョン"
|
593 |
|
594 |
-
#: ../lib/pz-linkcard-settings.php:
|
595 |
msgid "Error"
|
596 |
msgstr "エラー"
|
597 |
|
598 |
-
#: ../lib/pz-linkcard-settings.php:
|
599 |
msgid "Basic"
|
600 |
msgstr "基本"
|
601 |
|
602 |
-
#: ../lib/pz-linkcard-settings.php:
|
603 |
msgid "Position"
|
604 |
msgstr "配置"
|
605 |
|
606 |
-
#: ../lib/pz-linkcard-settings.php:
|
607 |
msgid "Display"
|
608 |
msgstr "表示"
|
609 |
|
610 |
-
#: ../lib/pz-linkcard-settings.php:
|
611 |
msgid "Letter"
|
612 |
msgstr "文字"
|
613 |
|
614 |
-
#: ../lib/pz-linkcard-settings.php:
|
615 |
msgid "External Link"
|
616 |
msgstr "外部リンク"
|
617 |
|
618 |
-
#: ../lib/pz-linkcard-settings.php:
|
619 |
msgid "Internal Link"
|
620 |
msgstr "内部リンク"
|
621 |
|
622 |
-
#: ../lib/pz-linkcard-settings.php:
|
623 |
msgid "Same Page Link"
|
624 |
msgstr "同ページへのリンク"
|
625 |
|
626 |
-
#: ../lib/pz-linkcard-settings.php:
|
627 |
msgid "Link Check"
|
628 |
msgstr "リンク先の検査"
|
629 |
|
630 |
-
#: ../lib/pz-linkcard-settings.php:
|
631 |
msgid "Editor"
|
632 |
msgstr "エディター"
|
633 |
|
634 |
-
#: ../lib/pz-linkcard-settings.php:
|
635 |
msgid "Multi Site"
|
636 |
msgstr "マルチサイト"
|
637 |
|
638 |
-
#: ../lib/pz-linkcard-settings.php:
|
639 |
msgid "Admin"
|
640 |
msgstr "管理者"
|
641 |
|
642 |
-
#: ../lib/pz-linkcard-settings.php:
|
643 |
msgid "Advanced"
|
644 |
msgstr "上級者向け"
|
645 |
|
646 |
-
#: ../lib/pz-linkcard-settings.php:
|
647 |
msgid "etc."
|
648 |
msgstr "その他"
|
649 |
|
650 |
-
#: ../lib/pz-linkcard-settings.php:
|
651 |
msgid "Initialize"
|
652 |
msgstr "初期化"
|
653 |
|
654 |
-
#: ../lib/pz-linkcard-settings.php:
|
655 |
msgid "Error Settings"
|
656 |
msgstr "エラーの設定"
|
657 |
|
658 |
-
#: ../lib/pz-linkcard-settings.php:
|
659 |
msgid "Error Reset"
|
660 |
msgstr "エラーの解除"
|
661 |
|
662 |
-
#: ../lib/pz-linkcard-settings.php:
|
663 |
msgid "Reset"
|
664 |
msgstr "リセット"
|
665 |
|
666 |
-
#: ../lib/pz-linkcard-settings.php:
|
667 |
msgid "Cancel the error condition."
|
668 |
msgstr "エラー状態を解除します。"
|
669 |
|
670 |
-
#: ../lib/pz-linkcard-settings.php:
|
671 |
msgid "Uncheck to cancel the error condition."
|
672 |
msgstr "チェックを外すとエラー状態を解除します。"
|
673 |
|
674 |
-
#: ../lib/pz-linkcard-settings.php:
|
675 |
msgid "Post URL"
|
676 |
msgstr "記事URL"
|
677 |
|
678 |
-
#: ../lib/pz-linkcard-settings.php:
|
679 |
msgid "Occurrence Time"
|
680 |
msgstr "発生日時"
|
681 |
|
682 |
-
#: ../lib/pz-linkcard-settings.php:
|
683 |
msgid "Basic Settings"
|
684 |
msgstr "基本の設定"
|
685 |
|
686 |
-
#: ../lib/pz-linkcard-settings.php:
|
687 |
msgid "Easy format"
|
688 |
msgstr "かんたん書式設定"
|
689 |
|
690 |
-
#: ../lib/pz-linkcard-settings.php:
|
691 |
-
#: ../lib/pz-linkcard-settings.php:
|
692 |
-
#: ../lib/pz-linkcard-settings.php:
|
693 |
-
#: ../lib/pz-linkcard-settings.php:
|
694 |
-
#: ../lib/pz-linkcard-settings.php:
|
695 |
-
#: ../lib/pz-linkcard-settings.php:
|
696 |
msgid "None"
|
697 |
msgstr "なし"
|
698 |
|
699 |
-
#: ../lib/pz-linkcard-settings.php:
|
700 |
msgid "Pz-LkC Default"
|
701 |
msgstr "Pz リンクカード オリジナル"
|
702 |
|
703 |
-
#: ../lib/pz-linkcard-settings.php:
|
704 |
msgid "Normal"
|
705 |
msgstr "ノーマル(はてなブログカード風)"
|
706 |
|
707 |
-
#: ../lib/pz-linkcard-settings.php:
|
708 |
msgid "Compact"
|
709 |
msgstr "コンパクト"
|
710 |
|
711 |
-
#: ../lib/pz-linkcard-settings.php:
|
712 |
msgid "Simple"
|
713 |
msgstr "シンプル"
|
714 |
|
715 |
-
#: ../lib/pz-linkcard-settings.php:
|
716 |
msgid "Headline"
|
717 |
msgstr "見出し(付加情報のテキストが見出しとして表示されます)"
|
718 |
|
719 |
-
#: ../lib/pz-linkcard-settings.php:
|
720 |
msgid "Cellophane tape \"center\""
|
721 |
msgstr "セロハンテープ(中央)"
|
722 |
|
723 |
-
#: ../lib/pz-linkcard-settings.php:
|
724 |
msgid "Cellophane tape \"Top corner\""
|
725 |
msgstr "セロハンテープ(左上と右上)"
|
726 |
|
727 |
-
#: ../lib/pz-linkcard-settings.php:
|
728 |
msgid "Cellophane tape \"long\""
|
729 |
msgstr "セロハンテープ(長め)"
|
730 |
|
731 |
-
#: ../lib/pz-linkcard-settings.php:
|
732 |
msgid "Cellophane tape \"digonal\""
|
733 |
msgstr "セロハンテープ(斜め)"
|
734 |
|
735 |
-
#: ../lib/pz-linkcard-settings.php:
|
736 |
msgid "Cellophane tape and curling"
|
737 |
msgstr "セロハンテープと紙めくれた効果"
|
738 |
|
739 |
-
#: ../lib/pz-linkcard-settings.php:
|
740 |
msgid "Curling paper"
|
741 |
msgstr "紙がめくれた効果"
|
742 |
|
743 |
-
#: ../lib/pz-linkcard-settings.php:
|
744 |
msgid "Stitch blue & red"
|
745 |
msgstr "縫い目(青と赤)"
|
746 |
|
747 |
-
#: ../lib/pz-linkcard-settings.php:
|
748 |
msgid "Stitch green & yellow"
|
749 |
msgstr "縫い目(緑と黄色)"
|
750 |
|
751 |
-
#: ../lib/pz-linkcard-settings.php:
|
752 |
msgid "Square"
|
753 |
msgstr "スクエア"
|
754 |
|
755 |
-
#: ../lib/pz-linkcard-settings.php:
|
756 |
msgid "Enclose"
|
757 |
msgstr "囲み"
|
758 |
|
759 |
-
#: ../lib/pz-linkcard-settings.php:
|
760 |
msgid "Reflection"
|
761 |
msgstr "反射"
|
762 |
|
763 |
-
#: ../lib/pz-linkcard-settings.php:
|
764 |
msgid "Infomation orange"
|
765 |
msgstr "インフォメーション オレンジ"
|
766 |
|
767 |
-
#: ../lib/pz-linkcard-settings.php:
|
768 |
msgid "Neutral bluegreen"
|
769 |
msgstr "ニュートラル ブルーグリーン"
|
770 |
|
771 |
-
#: ../lib/pz-linkcard-settings.php:
|
772 |
msgid "Enlightened green"
|
773 |
msgstr "エンライテド グリーン"
|
774 |
|
775 |
-
#: ../lib/pz-linkcard-settings.php:
|
776 |
msgid "Resistance blue"
|
777 |
msgstr "レジスタンス ブルー"
|
778 |
|
779 |
-
#: ../lib/pz-linkcard-settings.php:
|
780 |
msgid "Windows XP"
|
781 |
msgstr "Windows XP 風"
|
782 |
|
783 |
-
#: ../lib/pz-linkcard-settings.php:
|
784 |
msgid "Windows 95"
|
785 |
msgstr "Windows 95 風"
|
786 |
|
787 |
-
#: ../lib/pz-linkcard-settings.php:
|
788 |
msgid "Slanting"
|
789 |
msgstr "斜め"
|
790 |
|
791 |
-
#: ../lib/pz-linkcard-settings.php:
|
792 |
msgid "3D Rotate"
|
793 |
msgstr "3D回転"
|
794 |
|
795 |
-
#: ../lib/pz-linkcard-settings.php:
|
796 |
msgid "Pushpin"
|
797 |
msgstr "押しピン"
|
798 |
|
799 |
-
#: ../lib/pz-linkcard-settings.php:
|
800 |
-
#: ../lib/pz-linkcard-settings.php:
|
801 |
-
#: ../pz-linkcard.php:
|
802 |
msgid "*"
|
803 |
msgstr "※"
|
804 |
|
805 |
-
#: ../lib/pz-linkcard-settings.php:
|
806 |
msgid "It applies over other formatting settings."
|
807 |
msgstr "ほかの項目よりも優先して適用されます。"
|
808 |
|
809 |
-
#: ../lib/pz-linkcard-settings.php:
|
810 |
msgid "Saved Datetime"
|
811 |
msgstr "保存した日時"
|
812 |
|
813 |
-
#: ../lib/pz-linkcard-settings.php:
|
814 |
msgid "Plugin Information"
|
815 |
msgstr "プラグイン情報"
|
816 |
|
817 |
-
#: ../lib/pz-linkcard-settings.php:
|
818 |
msgid "How to"
|
819 |
msgstr "使い方"
|
820 |
|
821 |
-
#: ../lib/pz-linkcard-settings.php:
|
822 |
msgid "Japanese Only"
|
823 |
msgstr "日本語のみ"
|
824 |
|
825 |
-
#: ../lib/pz-linkcard-settings.php:
|
|
|
|
|
|
|
|
|
826 |
msgid "Plugin Name"
|
827 |
msgstr "プラグイン名"
|
828 |
|
829 |
-
#: ../lib/pz-linkcard-settings.php:
|
830 |
msgid "Plugin Abbreviation"
|
831 |
msgstr "プラグイン略称"
|
832 |
|
833 |
-
#: ../lib/pz-linkcard-settings.php:
|
834 |
msgid "Plugin Version"
|
835 |
msgstr "プラグインバージョン"
|
836 |
|
837 |
-
#: ../lib/pz-linkcard-settings.php:
|
838 |
msgid "Author's Site"
|
839 |
msgstr "作者のサイト"
|
840 |
|
841 |
-
#: ../lib/pz-linkcard-settings.php:
|
842 |
msgid "Plugin Path"
|
843 |
msgstr "プラグインのパス"
|
844 |
|
845 |
-
#: ../lib/pz-linkcard-settings.php:
|
846 |
msgid "Author Name"
|
847 |
msgstr "作者の名前"
|
848 |
|
849 |
-
#: ../lib/pz-linkcard-settings.php:
|
850 |
msgid "Author Twitter"
|
851 |
msgstr "作者のツイッター"
|
852 |
|
853 |
-
#: ../lib/pz-linkcard-settings.php:
|
854 |
msgid "Popozure."
|
855 |
msgstr "ぽぽづれ。"
|
856 |
|
857 |
-
#: ../lib/pz-linkcard-settings.php:
|
858 |
msgid "Poporon's PC Daily Diary"
|
859 |
msgstr "ぽぽろんのパソコンつれづれ(ズレズレ?)日記"
|
860 |
|
861 |
-
#: ../lib/pz-linkcard-settings.php:
|
862 |
msgid "When in Trouble"
|
863 |
msgstr "困ったときは"
|
864 |
|
865 |
-
#: ../lib/pz-linkcard-settings.php:
|
866 |
msgid "Twitter Account"
|
867 |
msgstr "ツイッター アカウント"
|
868 |
|
869 |
-
#: ../lib/pz-linkcard-settings.php:
|
870 |
msgid "Donation"
|
871 |
msgstr "寄付"
|
872 |
|
873 |
-
#: ../lib/pz-linkcard-settings.php:
|
874 |
msgid "Wishlist"
|
875 |
msgstr "ほしい物リスト"
|
876 |
|
877 |
-
#: ../lib/pz-linkcard-settings.php:
|
878 |
msgid "Changelog"
|
879 |
msgstr "修正履歴"
|
880 |
|
881 |
-
#: ../lib/pz-linkcard-settings.php:
|
882 |
msgid "Position Settings"
|
883 |
msgstr "配置の設定"
|
884 |
|
885 |
-
#: ../lib/pz-linkcard-settings.php:
|
886 |
msgid "Link the Whole"
|
887 |
msgstr "カード全体をリンクする"
|
888 |
|
889 |
-
#: ../lib/pz-linkcard-settings.php:
|
890 |
msgid "Enclose the entire card at anchor."
|
891 |
msgstr ""
|
892 |
"カード全体をAタグで囲って、どこをクリックしてもリンク先を開くようにします。"
|
893 |
|
894 |
-
#: ../lib/pz-linkcard-settings.php:
|
895 |
msgid "Margin"
|
896 |
msgstr "余白"
|
897 |
|
898 |
-
#: ../lib/pz-linkcard-settings.php:
|
899 |
msgid "Margin top"
|
900 |
msgstr "上の余白"
|
901 |
|
902 |
-
#: ../lib/pz-linkcard-settings.php:
|
903 |
-
#: ../lib/pz-linkcard-settings.php:
|
904 |
-
#: ../lib/pz-linkcard-settings.php:
|
905 |
-
#: ../lib/pz-linkcard-settings.php:
|
906 |
msgid "Not defined"
|
907 |
msgstr "設定しない"
|
908 |
|
909 |
-
#: ../lib/pz-linkcard-settings.php:
|
910 |
-
#: ../lib/pz-linkcard-settings.php:
|
911 |
-
#: ../lib/pz-linkcard-settings.php:
|
912 |
-
#: ../lib/pz-linkcard-settings.php:
|
913 |
msgid "0"
|
914 |
msgstr "0"
|
915 |
|
916 |
-
#: ../lib/pz-linkcard-settings.php:
|
917 |
-
#: ../lib/pz-linkcard-settings.php:
|
918 |
-
#: ../lib/pz-linkcard-settings.php:
|
919 |
-
#: ../lib/pz-linkcard-settings.php:
|
920 |
-
#: ../lib/pz-linkcard-settings.php:
|
921 |
msgid "4px"
|
922 |
msgstr "4px"
|
923 |
|
924 |
-
#: ../lib/pz-linkcard-settings.php:
|
925 |
-
#: ../lib/pz-linkcard-settings.php:
|
926 |
-
#: ../lib/pz-linkcard-settings.php:
|
927 |
-
#: ../lib/pz-linkcard-settings.php:
|
928 |
-
#: ../lib/pz-linkcard-settings.php:
|
929 |
msgid "8px"
|
930 |
msgstr "8px"
|
931 |
|
932 |
-
#: ../lib/pz-linkcard-settings.php:
|
933 |
-
#: ../lib/pz-linkcard-settings.php:
|
934 |
-
#: ../lib/pz-linkcard-settings.php:
|
935 |
-
#: ../lib/pz-linkcard-settings.php:
|
936 |
-
#: ../lib/pz-linkcard-settings.php:
|
937 |
msgid "16px"
|
938 |
msgstr "16px"
|
939 |
|
940 |
-
#: ../lib/pz-linkcard-settings.php:
|
941 |
-
#: ../lib/pz-linkcard-settings.php:
|
942 |
-
#: ../lib/pz-linkcard-settings.php:
|
943 |
-
#: ../lib/pz-linkcard-settings.php:
|
944 |
-
#: ../lib/pz-linkcard-settings.php:
|
945 |
msgid "32px"
|
946 |
msgstr "32px"
|
947 |
|
948 |
-
#: ../lib/pz-linkcard-settings.php:
|
949 |
-
#: ../lib/pz-linkcard-settings.php:
|
950 |
-
#: ../lib/pz-linkcard-settings.php:
|
951 |
-
#: ../lib/pz-linkcard-settings.php:
|
952 |
msgid "40px"
|
953 |
msgstr "40px"
|
954 |
|
955 |
-
#: ../lib/pz-linkcard-settings.php:
|
956 |
-
#: ../lib/pz-linkcard-settings.php:
|
957 |
-
#: ../lib/pz-linkcard-settings.php:
|
958 |
-
#: ../lib/pz-linkcard-settings.php:
|
959 |
-
#: ../lib/pz-linkcard-settings.php:
|
960 |
msgid "64px"
|
961 |
msgstr "64px"
|
962 |
|
963 |
-
#: ../lib/pz-linkcard-settings.php:
|
964 |
msgid "Margin left"
|
965 |
msgstr "左の余白"
|
966 |
|
967 |
-
#: ../lib/pz-linkcard-settings.php:
|
968 |
-
#: ../lib/pz-linkcard-settings.php:
|
969 |
msgid "24px"
|
970 |
msgstr "24px"
|
971 |
|
972 |
-
#: ../lib/pz-linkcard-settings.php:
|
973 |
msgid "Margin right"
|
974 |
msgstr "右の余白"
|
975 |
|
976 |
-
#: ../lib/pz-linkcard-settings.php:
|
977 |
-
#: ../lib/pz-linkcard-settings.php:
|
978 |
msgid "Width"
|
979 |
msgstr "幅"
|
980 |
|
981 |
-
#: ../lib/pz-linkcard-settings.php:
|
982 |
-
#: ../lib/pz-linkcard-settings.php:
|
983 |
msgid "Height"
|
984 |
msgstr "高さ"
|
985 |
|
986 |
-
#: ../lib/pz-linkcard-settings.php:
|
987 |
msgid "Margin bottom"
|
988 |
msgstr "下の余白"
|
989 |
|
990 |
-
#: ../lib/pz-linkcard-settings.php:
|
991 |
msgid "Centering"
|
992 |
msgstr "中央に寄せる"
|
993 |
|
994 |
-
#: ../lib/pz-linkcard-settings.php:
|
995 |
msgid "Use Blockquote Tag"
|
996 |
msgstr "BLOCKQUOTEタグを使用する"
|
997 |
|
998 |
-
#: ../lib/pz-linkcard-settings.php:
|
999 |
msgid "Without using DIV tag, and use BLOCKQUOTE tag."
|
1000 |
msgstr "<BLOCKQUOTE>で囲んで引用扱いにします。"
|
1001 |
|
1002 |
-
#: ../lib/pz-linkcard-settings.php:
|
1003 |
-
#: ../lib/pz-linkcard-settings.php:
|
1004 |
-
#: ../lib/pz-linkcard-settings.php:
|
1005 |
-
#: ../lib/pz-linkcard-settings.php:
|
1006 |
msgid "(Deprecated)"
|
1007 |
msgstr "(非推奨)"
|
1008 |
|
1009 |
-
#: ../lib/pz-linkcard-settings.php:
|
1010 |
msgid "Display Settings"
|
1011 |
msgstr "表示の設定"
|
1012 |
|
1013 |
-
#: ../lib/pz-linkcard-settings.php:
|
1014 |
msgid "Layout"
|
1015 |
msgstr "レイアウト"
|
1016 |
|
1017 |
-
#: ../lib/pz-linkcard-settings.php:
|
1018 |
msgid "Site Information"
|
1019 |
msgstr "サイト情報"
|
1020 |
|
1021 |
-
#: ../lib/pz-linkcard-settings.php:
|
1022 |
msgid "Upper Side"
|
1023 |
msgstr "上側"
|
1024 |
|
1025 |
-
#: ../lib/pz-linkcard-settings.php:
|
1026 |
msgid "Above the Title"
|
1027 |
msgstr "タイトルの上側"
|
1028 |
|
1029 |
-
#: ../lib/pz-linkcard-settings.php:
|
1030 |
msgid "Under Side"
|
1031 |
msgstr "下側"
|
1032 |
|
1033 |
-
#: ../lib/pz-linkcard-settings.php:
|
1034 |
msgid "Use SiteName"
|
1035 |
msgstr "サイト名称を使用"
|
1036 |
|
1037 |
-
#: ../lib/pz-linkcard-settings.php:
|
1038 |
msgid "For internal links, display the posting date"
|
1039 |
msgstr "内部リンクの場合に投稿日を表示する"
|
1040 |
|
1041 |
-
#: ../lib/pz-linkcard-settings.php:
|
1042 |
msgid "Thumbnail"
|
1043 |
msgstr "サムネイル"
|
1044 |
|
1045 |
-
#: ../lib/pz-linkcard-settings.php:
|
1046 |
msgid "Right Side"
|
1047 |
msgstr "右側"
|
1048 |
|
1049 |
-
#: ../lib/pz-linkcard-settings.php:
|
1050 |
msgid "Left Side"
|
1051 |
msgstr "左側"
|
1052 |
|
1053 |
-
#: ../lib/pz-linkcard-settings.php:
|
1054 |
msgid "Shadow"
|
1055 |
msgstr "影を付ける"
|
1056 |
|
1057 |
-
#: ../lib/pz-linkcard-settings.php:
|
1058 |
msgid "Make additional information heading display"
|
1059 |
msgstr "付加情報を見出し表示にする"
|
1060 |
|
1061 |
-
#: ../lib/pz-linkcard-settings.php:
|
1062 |
msgid "Turn off the anchor text underlining"
|
1063 |
msgstr "リンク文字のアンダーラインを除去する"
|
1064 |
|
1065 |
-
#: ../lib/pz-linkcard-settings.php:
|
1066 |
msgid "Separator line"
|
1067 |
msgstr "区切り線"
|
1068 |
|
1069 |
-
#: ../lib/pz-linkcard-settings.php:
|
1070 |
msgid "Display URL"
|
1071 |
msgstr "リンク先URLの表示"
|
1072 |
|
1073 |
-
#: ../lib/pz-linkcard-settings.php:
|
1074 |
msgid "Under Title"
|
1075 |
msgstr "タイトルの下側"
|
1076 |
|
1077 |
-
#: ../lib/pz-linkcard-settings.php:
|
1078 |
msgid "Bihind Site-Info"
|
1079 |
msgstr "サイト情報の後ろ"
|
1080 |
|
1081 |
-
#: ../lib/pz-linkcard-settings.php:
|
1082 |
msgid "Hollow content area"
|
1083 |
msgstr "記事の情報に枠を付ける"
|
1084 |
|
1085 |
-
#: ../lib/pz-linkcard-settings.php:
|
1086 |
msgid "Display excerpt"
|
1087 |
msgstr "抜粋文を表示する"
|
1088 |
|
1089 |
-
#: ../lib/pz-linkcard-settings.php:
|
1090 |
msgid "Hollow"
|
1091 |
msgstr "内側に影を付ける"
|
1092 |
|
1093 |
-
#: ../lib/pz-linkcard-settings.php:
|
1094 |
msgid "Round a square"
|
1095 |
msgstr "角を丸める"
|
1096 |
|
1097 |
-
#: ../lib/pz-linkcard-settings.php:
|
1098 |
msgid "When the mouse is on"
|
1099 |
msgstr "マウスが上に乗ったとき、"
|
1100 |
|
1101 |
-
#: ../lib/pz-linkcard-settings.php:
|
1102 |
msgid "Lighten"
|
1103 |
msgstr "薄色にする"
|
1104 |
|
1105 |
-
#: ../lib/pz-linkcard-settings.php:
|
1106 |
msgid "Hover (light)"
|
1107 |
msgstr "浮かせる(薄色)"
|
1108 |
|
1109 |
-
#: ../lib/pz-linkcard-settings.php:
|
1110 |
msgid "Hover (dark)"
|
1111 |
msgstr "浮かせる(濃色)"
|
1112 |
|
1113 |
-
#: ../lib/pz-linkcard-settings.php:
|
1114 |
msgid "Radius"
|
1115 |
msgstr "角を丸める"
|
1116 |
|
1117 |
-
#: ../lib/pz-linkcard-settings.php:
|
1118 |
msgid "Border"
|
1119 |
msgstr "枠線の太さ"
|
1120 |
|
1121 |
-
#: ../lib/pz-linkcard-settings.php:
|
1122 |
msgid "Solid"
|
1123 |
msgstr "Solid(実線)"
|
1124 |
|
1125 |
-
#: ../lib/pz-linkcard-settings.php:
|
1126 |
msgid "Dotted"
|
1127 |
msgstr "Dotted(点線)"
|
1128 |
|
1129 |
-
#: ../lib/pz-linkcard-settings.php:
|
1130 |
msgid "Dashed"
|
1131 |
msgstr "Dashed(破線)"
|
1132 |
|
1133 |
-
#: ../lib/pz-linkcard-settings.php:
|
1134 |
msgid "Double"
|
1135 |
msgstr "Double(二重線)"
|
1136 |
|
1137 |
-
#: ../lib/pz-linkcard-settings.php:
|
1138 |
msgid "Groove"
|
1139 |
msgstr "Groove(立体・へこみ)"
|
1140 |
|
1141 |
-
#: ../lib/pz-linkcard-settings.php:
|
1142 |
msgid "Ridge"
|
1143 |
msgstr "Ridge(立体・隆起)"
|
1144 |
|
1145 |
-
#: ../lib/pz-linkcard-settings.php:
|
1146 |
msgid "Inset"
|
1147 |
msgstr "Inset(立体・押されたボタンのような効果)"
|
1148 |
|
1149 |
-
#: ../lib/pz-linkcard-settings.php:
|
1150 |
msgid "Outset"
|
1151 |
msgstr "Outset(立体・ボタンのような効果)"
|
1152 |
|
1153 |
-
#: ../lib/pz-linkcard-settings.php:
|
1154 |
msgid "Reset Image Style"
|
1155 |
msgstr "画像のスタイルのリセット"
|
1156 |
|
1157 |
-
#: ../lib/pz-linkcard-settings.php:
|
1158 |
msgid ""
|
1159 |
"When unnecessary frame is displayed on the image, you can improve it by case"
|
1160 |
msgstr "画像がずれて表示されるときに改善される可能性が有ります(推奨)"
|
1161 |
|
1162 |
-
#: ../lib/pz-linkcard-settings.php:
|
1163 |
msgid "More Button"
|
1164 |
msgstr "続きを読むボタン"
|
1165 |
|
1166 |
-
#: ../lib/pz-linkcard-settings.php:
|
1167 |
msgid "Text link"
|
1168 |
msgstr "テキスト リンク"
|
1169 |
|
1170 |
-
#: ../lib/pz-linkcard-settings.php:
|
1171 |
msgid "Simple button"
|
1172 |
msgstr "シンプルなボタン"
|
1173 |
|
1174 |
-
#: ../lib/pz-linkcard-settings.php:
|
1175 |
msgid "Blue"
|
1176 |
msgstr "ブルー"
|
1177 |
|
1178 |
-
#: ../lib/pz-linkcard-settings.php:
|
1179 |
msgid "Dark"
|
1180 |
msgstr "ダーク"
|
1181 |
|
1182 |
-
#: ../lib/pz-linkcard-settings.php:
|
1183 |
msgid ""
|
1184 |
"It is recommended that you leave the card height blank when using this "
|
1185 |
"setting."
|
1186 |
msgstr "この設定を使用するときはカードの高さを空欄にすることをお勧めします。"
|
1187 |
|
1188 |
-
#: ../lib/pz-linkcard-settings.php:
|
1189 |
msgid "Display SNS Count"
|
1190 |
msgstr "シェア数を表示する"
|
1191 |
|
1192 |
-
#: ../lib/pz-linkcard-settings.php:
|
1193 |
msgid "Bihind Title"
|
1194 |
msgstr "タイトルの後ろ"
|
1195 |
|
1196 |
-
#: ../lib/pz-linkcard-settings.php:
|
1197 |
msgid "Twitter"
|
1198 |
msgstr "ツイッター"
|
1199 |
|
1200 |
-
#: ../lib/pz-linkcard-settings.php:
|
1201 |
msgid "Facebook"
|
1202 |
msgstr "フェイスブック(シェア数)"
|
1203 |
|
1204 |
-
#: ../lib/pz-linkcard-settings.php:
|
1205 |
msgid "Hatena"
|
1206 |
msgstr "はてなブックマーク"
|
1207 |
|
1208 |
-
#: ../lib/pz-linkcard-settings.php:
|
1209 |
msgid "Pocket"
|
1210 |
msgstr "Pocket"
|
1211 |
|
1212 |
-
#: ../lib/pz-linkcard-settings.php:
|
1213 |
msgid "Letter Settings"
|
1214 |
msgstr "文字の設定"
|
1215 |
|
1216 |
-
#: ../lib/pz-linkcard-settings.php:
|
1217 |
msgid "Added Information"
|
1218 |
msgstr "付加情報"
|
1219 |
|
1220 |
-
#: ../lib/pz-linkcard-settings.php:
|
1221 |
msgid "Color"
|
1222 |
msgstr "色"
|
1223 |
|
1224 |
-
#: ../lib/pz-linkcard-settings.php:
|
1225 |
msgid "Outline"
|
1226 |
msgstr "縁取り"
|
1227 |
|
1228 |
-
#: ../lib/pz-linkcard-settings.php:
|
1229 |
msgid "Size"
|
1230 |
msgstr "大きさ"
|
1231 |
|
1232 |
-
#: ../lib/pz-linkcard-settings.php:
|
1233 |
msgid "Length"
|
1234 |
msgstr "桁数"
|
1235 |
|
1236 |
-
#: ../lib/pz-linkcard-settings.php:
|
1237 |
msgid "No wrap"
|
1238 |
msgstr "折り返さない"
|
1239 |
|
1240 |
-
#: ../lib/pz-linkcard-settings.php:
|
1241 |
msgid "Resize"
|
1242 |
msgstr "サイズの変更"
|
1243 |
|
1244 |
-
#: ../lib/pz-linkcard-settings.php:
|
1245 |
msgid "Adjust thumbnail and letter size according to width."
|
1246 |
msgstr "画面幅に合わせて文字とサムネイルの大きさを調整します。"
|
1247 |
|
1248 |
-
#: ../lib/pz-linkcard-settings.php:
|
1249 |
msgid "External Link Settings"
|
1250 |
msgstr "外部リンクの設定"
|
1251 |
|
1252 |
-
#: ../lib/pz-linkcard-settings.php:
|
1253 |
msgid "Internal Link Settings"
|
1254 |
msgstr "内部リンクの設定"
|
1255 |
|
1256 |
-
#: ../lib/pz-linkcard-settings.php:
|
1257 |
msgid "Same Page Link Settings"
|
1258 |
msgstr "同ページへのリンクの設定"
|
1259 |
|
1260 |
-
#: ../lib/pz-linkcard-settings.php:
|
1261 |
msgid "Border Color"
|
1262 |
msgstr "枠線の色"
|
1263 |
|
1264 |
-
#: ../lib/pz-linkcard-settings.php:
|
1265 |
msgid "Background Color"
|
1266 |
msgstr "背景色"
|
1267 |
|
1268 |
-
#: ../lib/pz-linkcard-settings.php:
|
1269 |
msgid "Background Image"
|
1270 |
msgstr "背景画像"
|
1271 |
|
1272 |
-
#: ../lib/pz-linkcard-settings.php:
|
1273 |
-
#: ../lib/pz-linkcard-settings.php:
|
1274 |
-
#: ../lib/pz-linkcard-settings.php:
|
1275 |
-
#: ../lib/pz-linkcard-settings.php:
|
1276 |
msgid "It is common with setting Internal-link"
|
1277 |
msgstr "内部リンク用の設定が使用されます"
|
1278 |
|
1279 |
-
#: ../lib/pz-linkcard-settings.php:
|
1280 |
msgid "Direct"
|
1281 |
msgstr "直接取得する"
|
1282 |
|
1283 |
-
#: ../lib/pz-linkcard-settings.php:
|
1284 |
msgid "Use WebAPI"
|
1285 |
msgstr "WebAPIを利用する"
|
1286 |
|
1287 |
-
#: ../lib/pz-linkcard-settings.php:
|
1288 |
msgid "Use WebAPI ,if can not direct"
|
1289 |
msgstr "直接取得できない場合、WebAPIを利用する"
|
1290 |
|
1291 |
-
#: ../lib/pz-linkcard-settings.php:
|
1292 |
msgid "Thumbnail Size"
|
1293 |
msgstr "サムネイルの大きさ"
|
1294 |
|
1295 |
-
#: ../lib/pz-linkcard-settings.php:
|
1296 |
msgid "Thumbnail (150px)"
|
1297 |
msgstr "小サイズ(150ピクセル)"
|
1298 |
|
1299 |
-
#: ../lib/pz-linkcard-settings.php:
|
1300 |
msgid "Medium (300px)"
|
1301 |
msgstr "中サイズ(300ピクセル)"
|
1302 |
|
1303 |
-
#: ../lib/pz-linkcard-settings.php:
|
1304 |
msgid "Large (1024px)"
|
1305 |
msgstr "大サイズ(1024ピクセル)"
|
1306 |
|
1307 |
-
#: ../lib/pz-linkcard-settings.php:
|
1308 |
msgid "Full size"
|
1309 |
msgstr "そのままのサイズ"
|
1310 |
|
1311 |
-
#: ../lib/pz-linkcard-settings.php:
|
1312 |
msgid "Site Icon"
|
1313 |
msgstr "サイトアイコン"
|
1314 |
|
1315 |
-
#: ../lib/pz-linkcard-settings.php:
|
1316 |
msgid "Text of More Button"
|
1317 |
msgstr "続きを読むボタンの文字"
|
1318 |
|
1319 |
-
#: ../lib/pz-linkcard-settings.php:
|
1320 |
msgid "Open New Window/Tab"
|
1321 |
msgstr "新しいタブで開く"
|
1322 |
|
1323 |
-
#: ../lib/pz-linkcard-settings.php:
|
1324 |
msgid "All client"
|
1325 |
msgstr "すべての端末"
|
1326 |
|
1327 |
-
#: ../lib/pz-linkcard-settings.php:
|
1328 |
msgid "Other than mobile"
|
1329 |
msgstr "モバイル端末以外"
|
1330 |
|
1331 |
-
#: ../lib/pz-linkcard-settings.php:
|
1332 |
msgid "Get Contents"
|
1333 |
msgstr "記事取得方法"
|
1334 |
|
1335 |
-
#: ../lib/pz-linkcard-settings.php:
|
1336 |
msgid "Always extract from the latest articles"
|
1337 |
msgstr "常に最新の記事内容から抜粋文を作成する"
|
1338 |
|
1339 |
-
#: ../lib/pz-linkcard-settings.php:
|
1340 |
msgid "If \"excerpt\" is set, give priority to it"
|
1341 |
msgstr "「抜粋」を設定していたら、それを優先"
|
1342 |
|
1343 |
-
#: ../lib/pz-linkcard-settings.php:
|
1344 |
msgid "Always display the contents registered in card management"
|
1345 |
msgstr "常にカード管理に登録された内容を表示"
|
1346 |
|
1347 |
-
#: ../lib/pz-linkcard-settings.php:
|
1348 |
msgid "Set NoFollow"
|
1349 |
msgstr "リンク先を信用しない"
|
1350 |
|
1351 |
-
#: ../lib/pz-linkcard-settings.php:
|
1352 |
msgid "In the case of an external site, it puts the \"nofollow\"."
|
1353 |
msgstr ""
|
1354 |
"アンカータグに rel=\"nofollow\" を追加して、検索エンジンの評価から外すことを"
|
1355 |
"宣言します。"
|
1356 |
|
1357 |
-
#: ../lib/pz-linkcard-settings.php:
|
1358 |
msgid "Set NoOpener"
|
1359 |
msgstr "リンク元タブを保護する"
|
1360 |
|
1361 |
-
#: ../lib/pz-linkcard-settings.php:
|
1362 |
msgid "In the case of an external site, it puts the \"noopener\"."
|
1363 |
msgstr ""
|
1364 |
"アンカータグに rel=\"noopener\" を追加して、リンク先サイトからリンク元タブに"
|
1365 |
"対する操作を無効にします。"
|
1366 |
|
1367 |
-
#: ../lib/pz-linkcard-settings.php:
|
1368 |
msgid "Use HatenaBlogCard"
|
1369 |
msgstr "はてなブログカードを使用する"
|
1370 |
|
1371 |
-
#: ../lib/pz-linkcard-settings.php:
|
1372 |
msgid "External links will use Always HatenaBlogCard."
|
1373 |
msgstr "外部リンクは「はてなブログカード」を利用する。"
|
1374 |
|
1375 |
-
#: ../lib/pz-linkcard-settings.php:
|
1376 |
msgid "Retry Get PID"
|
1377 |
msgstr "記事URLの再取得"
|
1378 |
|
1379 |
-
#: ../lib/pz-linkcard-settings.php:
|
1380 |
msgid "When the `Post ID` can not be acquired, it is acquired again."
|
1381 |
msgstr "記事IDが取得できなかった場合に、リダイレクト先のURLを取得する。"
|
1382 |
|
1383 |
-
#: ../lib/pz-linkcard-settings.php:
|
1384 |
msgid "Link Check Settings"
|
1385 |
msgstr "リンク先の検査の設定"
|
1386 |
|
1387 |
-
#: ../lib/pz-linkcard-settings.php:
|
1388 |
msgid "Relative URL"
|
1389 |
msgstr "相対指定URL"
|
1390 |
|
1391 |
-
#: ../lib/pz-linkcard-settings.php:
|
1392 |
msgid "For relative-specified URLs, complement the site URL."
|
1393 |
msgstr "相対指定のURLの場合、サイトURLを補完します。"
|
1394 |
|
1395 |
-
#: ../lib/pz-linkcard-settings.php:
|
1396 |
msgid "Do Not Link at Error"
|
1397 |
msgstr "エラーのときリンクしない"
|
1398 |
|
1399 |
-
#: ../lib/pz-linkcard-settings.php:
|
1400 |
msgid "When access status is \"403\", \"404\", \"410\", unlink."
|
1401 |
msgstr "ステータスが「403」「404」「410」のときにリンクを無効にします。"
|
1402 |
|
1403 |
-
#: ../lib/pz-linkcard-settings.php:
|
1404 |
msgid "Disable SSL Verification"
|
1405 |
msgstr "SSL検証を無効"
|
1406 |
|
1407 |
-
#: ../lib/pz-linkcard-settings.php:
|
1408 |
msgid "Try setting if the contents of the SSL site can not be acquired."
|
1409 |
msgstr ""
|
1410 |
"SSLサイトのタイトルや記事内容が取得できない場合に設定することで取得できる可能"
|
1411 |
"性があります。"
|
1412 |
|
1413 |
-
#: ../lib/pz-linkcard-settings.php:
|
1414 |
msgid "Follow Location"
|
1415 |
msgstr "リダイレクト処理する"
|
1416 |
|
1417 |
-
#: ../lib/pz-linkcard-settings.php:
|
1418 |
msgid "Track when the link destination is redirected."
|
1419 |
msgstr "リンク先がリダイレクトされている場合に追跡します。"
|
1420 |
|
1421 |
-
#: ../lib/pz-linkcard-settings.php:
|
1422 |
msgid "Set Referer"
|
1423 |
msgstr "リファラーの通知"
|
1424 |
|
1425 |
-
#: ../lib/pz-linkcard-settings.php:
|
1426 |
msgid "Notify the article URL to the link destination."
|
1427 |
msgstr "リンク先に記事のURLを知らせます。"
|
1428 |
|
1429 |
-
#: ../lib/pz-linkcard-settings.php:
|
1430 |
msgid "Use User-Agent"
|
1431 |
msgstr "ユーザーエージェントの通知"
|
1432 |
|
1433 |
-
#: ../lib/pz-linkcard-settings.php:
|
1434 |
msgid "Notify using Pz-LinkCard to the link destination."
|
1435 |
msgstr "リンク先にPz-LinkCardを使用していることを知らせます。"
|
1436 |
|
1437 |
-
#: ../lib/pz-linkcard-settings.php:
|
1438 |
msgid "Broken Link Checker"
|
1439 |
msgstr "リンク切れチェッカー"
|
1440 |
|
1441 |
-
#: ../lib/pz-linkcard-settings.php:
|
1442 |
msgid "Alive confirmation of the link destination."
|
1443 |
msgstr "リンク先がアクセスできるか定期的に確認します。"
|
1444 |
|
1445 |
-
#: ../lib/pz-linkcard-settings.php:
|
1446 |
msgid "Broken Link Count"
|
1447 |
msgstr "リンク切れカウント"
|
1448 |
|
1449 |
-
#: ../lib/pz-linkcard-settings.php:
|
1450 |
msgid "The number of broken links is displayed next to the submenu."
|
1451 |
msgstr "サブメニューの横にリンク切れの件数を表示します。"
|
1452 |
|
1453 |
-
#: ../lib/pz-linkcard-settings.php:
|
1454 |
msgid "Editor Settings"
|
1455 |
msgstr "エディターの設定"
|
1456 |
|
1457 |
-
#: ../lib/pz-linkcard-settings.php:
|
1458 |
msgid "Convert from Text Link"
|
1459 |
msgstr "テキストリンク行を変換"
|
1460 |
|
1461 |
-
#: ../lib/pz-linkcard-settings.php:
|
1462 |
msgid "Convert lines with text link only to Linkcard."
|
1463 |
msgstr "テキストリンクだけの行をリンクカードに変換する。"
|
1464 |
|
1465 |
-
#: ../lib/pz-linkcard-settings.php:
|
1466 |
msgid "Convert from URL"
|
1467 |
msgstr "URL行を変換"
|
1468 |
|
1469 |
-
#: ../lib/pz-linkcard-settings.php:
|
1470 |
msgid "Convert lines with URL only to Linkcard."
|
1471 |
msgstr "URLだけの行をリンクカードに変換する。"
|
1472 |
|
1473 |
-
#: ../lib/pz-linkcard-settings.php:
|
1474 |
msgid "External Link Only"
|
1475 |
msgstr "外部リンクのみ"
|
1476 |
|
1477 |
-
#: ../lib/pz-linkcard-settings.php:
|
1478 |
msgid "Convert only external links."
|
1479 |
msgstr "外部リンクのときのみ変換します。"
|
1480 |
|
1481 |
-
#: ../lib/pz-linkcard-settings.php:
|
1482 |
msgid "Do Shortcode"
|
1483 |
msgstr "ショートコード 実行"
|
1484 |
|
1485 |
-
#: ../lib/pz-linkcard-settings.php:
|
1486 |
msgid "Force shortcode development."
|
1487 |
msgstr "リンク・URLから変換したときにショートコードを強制的に実行する。"
|
1488 |
|
1489 |
-
#: ../lib/pz-linkcard-settings.php:
|
1490 |
msgid "Add Insert Button"
|
1491 |
msgstr "リンクカードボタンを追加"
|
1492 |
|
1493 |
-
#: ../lib/pz-linkcard-settings.php:
|
1494 |
msgid "Add insert button to visual editor."
|
1495 |
msgstr ""
|
1496 |
"ビジュアル エディタにリンクカードのショートコードを挿入するボタンを追加する。"
|
1497 |
|
1498 |
-
#: ../lib/pz-linkcard-settings.php:
|
1499 |
msgid "Add Quick Tag"
|
1500 |
msgstr "クイックタグを追加"
|
1501 |
|
1502 |
-
#: ../lib/pz-linkcard-settings.php:
|
1503 |
msgid "Add quick tag button to text editor."
|
1504 |
msgstr ""
|
1505 |
"テキスト エディタにリンクカードのショートコードを挿入するクイックタグを追加す"
|
1506 |
"る。"
|
1507 |
|
1508 |
-
#: ../lib/pz-linkcard-settings.php:
|
1509 |
msgid "ShortCode 1"
|
1510 |
msgstr "ショートコード 1"
|
1511 |
|
1512 |
-
#: ../lib/pz-linkcard-settings.php:
|
1513 |
-
#: ../lib/pz-linkcard-settings.php:
|
1514 |
msgid "Case-sensitive"
|
1515 |
msgstr "大文字と小文字を区別します"
|
1516 |
|
1517 |
-
#: ../lib/pz-linkcard-settings.php:
|
1518 |
msgid "Use InLineText"
|
1519 |
msgstr "ショートコードで囲んだ文字列を使用する"
|
1520 |
|
1521 |
-
#: ../lib/pz-linkcard-settings.php:
|
1522 |
msgid "No use"
|
1523 |
msgstr "使用しない"
|
1524 |
|
1525 |
-
#: ../lib/pz-linkcard-settings.php:
|
1526 |
msgid "Use to excerpt"
|
1527 |
msgstr "抜粋文として使用"
|
1528 |
|
1529 |
-
#: ../lib/pz-linkcard-settings.php:
|
1530 |
msgid "Use to title"
|
1531 |
msgstr "タイトルとして使用"
|
1532 |
|
1533 |
-
#: ../lib/pz-linkcard-settings.php:
|
1534 |
msgid "This setting applies only to the Shortcode1"
|
1535 |
msgstr "ショートコード1にのみ適用されます"
|
1536 |
|
1537 |
-
#: ../lib/pz-linkcard-settings.php:
|
1538 |
msgid "ShortCode 2"
|
1539 |
msgstr "ショートコード 2"
|
1540 |
|
1541 |
-
#: ../lib/pz-linkcard-settings.php:
|
1542 |
msgid "ShortCode 3"
|
1543 |
msgstr "ショートコード 3"
|
1544 |
|
1545 |
-
#: ../lib/pz-linkcard-settings.php:
|
1546 |
msgid "ShortCode 4"
|
1547 |
msgstr "ショートコード 4"
|
1548 |
|
1549 |
-
#: ../lib/pz-linkcard-settings.php:
|
1550 |
msgid "Parameters"
|
1551 |
msgstr "パラメータ"
|
1552 |
|
1553 |
-
#: ../lib/pz-linkcard-settings.php:
|
1554 |
-
#: ../lib/pz-linkcard-settings.php:
|
1555 |
msgid "ex1."
|
1556 |
msgstr "例1."
|
1557 |
|
1558 |
-
#: ../lib/pz-linkcard-settings.php:
|
1559 |
msgid "Specify only URL parameters."
|
1560 |
msgstr "URLパラメーターだけを指定。"
|
1561 |
|
1562 |
-
#: ../lib/pz-linkcard-settings.php:
|
1563 |
-
#: ../lib/pz-linkcard-settings.php:
|
1564 |
msgid "ex2."
|
1565 |
msgstr "例2."
|
1566 |
|
1567 |
-
#: ../lib/pz-linkcard-settings.php:
|
1568 |
msgid "Specify URL and title parameters."
|
1569 |
msgstr "URLパラメーターとtitleパラメーターを指定。"
|
1570 |
|
1571 |
-
#: ../lib/pz-linkcard-settings.php:
|
1572 |
msgid "ex3."
|
1573 |
msgstr "例3."
|
1574 |
|
1575 |
-
#: ../lib/pz-linkcard-settings.php:
|
1576 |
msgid "Specify URL, title and content parameters."
|
1577 |
msgstr "URLパラメーターとtitleパラメーターとcontentパラメーターを指定。"
|
1578 |
|
1579 |
-
#: ../lib/pz-linkcard-settings.php:
|
1580 |
msgid ""
|
1581 |
"For any shortcode you can change the title and excerpt with `title` "
|
1582 |
"parameter and `content` parameter"
|
@@ -1584,381 +1592,381 @@ msgstr ""
|
|
1584 |
"どのショートコードでも title パラメータと content パラメータでタイトルと抜粋"
|
1585 |
"文を指定できます"
|
1586 |
|
1587 |
-
#: ../lib/pz-linkcard-settings.php:
|
1588 |
msgid "Multi Site Information"
|
1589 |
msgstr "マルチサイト情報"
|
1590 |
|
1591 |
-
#: ../lib/pz-linkcard-settings.php:
|
1592 |
msgid "Cannot be changed"
|
1593 |
msgstr "設定は変更できません"
|
1594 |
|
1595 |
-
#: ../lib/pz-linkcard-settings.php:
|
1596 |
msgid "Disabled"
|
1597 |
msgstr "無効化"
|
1598 |
|
1599 |
-
#: ../lib/pz-linkcard-settings.php:
|
1600 |
msgid "Enabled"
|
1601 |
msgstr "有効化"
|
1602 |
|
1603 |
-
#: ../lib/pz-linkcard-settings.php:
|
1604 |
msgid "Type"
|
1605 |
msgstr "種類"
|
1606 |
|
1607 |
-
#: ../lib/pz-linkcard-settings.php:
|
1608 |
msgid "Subdirectories"
|
1609 |
msgstr "サブディレクトリー型"
|
1610 |
|
1611 |
-
#: ../lib/pz-linkcard-settings.php:
|
1612 |
msgid "Subdomains"
|
1613 |
msgstr "サブドメイン型"
|
1614 |
|
1615 |
-
#: ../lib/pz-linkcard-settings.php:
|
1616 |
msgid "Current Blog ID"
|
1617 |
msgstr "現在のブログID"
|
1618 |
|
1619 |
-
#: ../lib/pz-linkcard-settings.php:
|
1620 |
msgid "Number of Sites"
|
1621 |
msgstr "サイトの数"
|
1622 |
|
1623 |
-
#: ../lib/pz-linkcard-settings.php:
|
1624 |
msgid "Link to SubSite"
|
1625 |
msgstr "サブサイトへのリンク"
|
1626 |
|
1627 |
-
#: ../lib/pz-linkcard-settings.php:
|
1628 |
msgid "Treat links to subsites as external links."
|
1629 |
msgstr "サブサイトへのリンクを外部リンクとして扱う。"
|
1630 |
|
1631 |
-
#: ../lib/pz-linkcard-settings.php:
|
1632 |
msgid "Site List"
|
1633 |
msgstr "サイトの一覧"
|
1634 |
|
1635 |
-
#: ../lib/pz-linkcard-settings.php:
|
1636 |
msgid "Current"
|
1637 |
msgstr "現在"
|
1638 |
|
1639 |
-
#: ../lib/pz-linkcard-settings.php:
|
1640 |
msgid "Blog ID"
|
1641 |
msgstr "ブログID"
|
1642 |
|
1643 |
-
#: ../lib/pz-linkcard-settings.php:
|
1644 |
msgid "Senior Settings"
|
1645 |
msgstr "上級者向けの設定"
|
1646 |
|
1647 |
-
#: ../lib/pz-linkcard-settings.php:
|
1648 |
msgid "Trailing Slash"
|
1649 |
msgstr "末尾のスラッシュの除去"
|
1650 |
|
1651 |
-
#: ../lib/pz-linkcard-settings.php:
|
1652 |
msgid "As it"
|
1653 |
msgstr "そのまま"
|
1654 |
|
1655 |
-
#: ../lib/pz-linkcard-settings.php:
|
1656 |
msgid "When only domain name, remove"
|
1657 |
msgstr "ドメイン名のみのときだけ削除"
|
1658 |
|
1659 |
-
#: ../lib/pz-linkcard-settings.php:
|
1660 |
msgid "Always remove"
|
1661 |
msgstr "常に削除"
|
1662 |
|
1663 |
-
#: ../lib/pz-linkcard-settings.php:
|
1664 |
msgid "Class ID to be Added (for PC)"
|
1665 |
msgstr "PCのときに追加するクラス名"
|
1666 |
|
1667 |
-
#: ../lib/pz-linkcard-settings.php:
|
1668 |
msgid "Class ID to be Added (for Mobile)"
|
1669 |
msgstr "モバイルのときに追加するクラス名"
|
1670 |
|
1671 |
-
#: ../lib/pz-linkcard-settings.php:
|
1672 |
msgid "Compress"
|
1673 |
msgstr "圧縮"
|
1674 |
|
1675 |
-
#: ../lib/pz-linkcard-settings.php:
|
1676 |
msgid "Compress CSS and JavaScript to improve access speed."
|
1677 |
msgstr "CSSやJavaScriptを圧縮してアクセス速度を向上させます"
|
1678 |
|
1679 |
-
#: ../lib/pz-linkcard-settings.php:
|
1680 |
-
msgid "Google AMP
|
1681 |
-
msgstr "
|
1682 |
|
1683 |
-
#: ../lib/pz-linkcard-settings.php:
|
1684 |
-
msgid "
|
|
|
1685 |
msgstr ""
|
1686 |
-
"
|
1687 |
-
"える。"
|
1688 |
|
1689 |
-
#: ../lib/pz-linkcard-settings.php:
|
1690 |
msgid "Hide URL Error"
|
1691 |
msgstr "URLエラーを非表示"
|
1692 |
|
1693 |
-
#: ../lib/pz-linkcard-settings.php:
|
1694 |
msgid "Do not display an error on the admin page."
|
1695 |
msgstr "管理画面にURLエラーを表示しません。"
|
1696 |
|
1697 |
-
#: ../lib/pz-linkcard-settings.php:
|
1698 |
msgid "Extension Settings"
|
1699 |
msgstr "拡張機能の設定"
|
1700 |
|
1701 |
-
#: ../lib/pz-linkcard-settings.php:
|
1702 |
msgid "Display the file menu on the card management screen."
|
1703 |
msgstr "カード管理画面へ「ファイルメニュー」を表示します。"
|
1704 |
|
1705 |
-
#: ../lib/pz-linkcard-settings.php:
|
1706 |
msgid "Initialize Tab"
|
1707 |
msgstr "初期化タブ"
|
1708 |
|
1709 |
-
#: ../lib/pz-linkcard-settings.php:
|
1710 |
msgid "Display the initialize tab on the settings screen."
|
1711 |
msgstr "設定画面に「初期化」タブを表示します。"
|
1712 |
|
1713 |
-
#: ../lib/pz-linkcard-settings.php:
|
1714 |
msgid "Survey Mode"
|
1715 |
msgstr "調査モード"
|
1716 |
|
1717 |
-
#: ../lib/pz-linkcard-settings.php:
|
1718 |
msgid "Outputs some events and setting information to a log file."
|
1719 |
msgstr "いくつかのイベントや設定情報等をログファイルへ出力します。"
|
1720 |
|
1721 |
-
#: ../lib/pz-linkcard-settings.php:
|
1722 |
msgid "Administrator Mode"
|
1723 |
msgstr "管理者モード"
|
1724 |
|
1725 |
-
#: ../lib/pz-linkcard-settings.php:
|
1726 |
msgid ""
|
1727 |
"Display information that is not normally needed or open special settings."
|
1728 |
msgstr "通常は必要のない情報を表示したり、特別な設定を開放します。"
|
1729 |
|
1730 |
-
#: ../lib/pz-linkcard-settings.php:
|
1731 |
msgid "Develop Mode"
|
1732 |
msgstr "開発モード"
|
1733 |
|
1734 |
-
#: ../lib/pz-linkcard-settings.php:
|
1735 |
msgid "Stylesheet Settings"
|
1736 |
msgstr "スタイルシートの設定"
|
1737 |
|
1738 |
-
#: ../lib/pz-linkcard-settings.php:
|
1739 |
msgid "Stylesheet URL"
|
1740 |
msgstr "CSSファイルのURL"
|
1741 |
|
1742 |
-
#: ../lib/pz-linkcard-settings.php:
|
1743 |
msgid "Schemes (http and https) are omitted."
|
1744 |
msgstr "スキーム( http: や https: )は省略されています。"
|
1745 |
|
1746 |
-
#: ../lib/pz-linkcard-settings.php:
|
1747 |
msgid "Stylesheet URL to Add"
|
1748 |
msgstr "追加するCSSのURL"
|
1749 |
|
1750 |
-
#: ../lib/pz-linkcard-settings.php:
|
1751 |
-
#: ../lib/pz-linkcard-settings.php:
|
1752 |
msgid "ex."
|
1753 |
msgstr "例."
|
1754 |
|
1755 |
-
#: ../lib/pz-linkcard-settings.php:
|
1756 |
msgid "Stylesheet Text to Add"
|
1757 |
msgstr "追加するCSSのテキスト"
|
1758 |
|
1759 |
-
#: ../lib/pz-linkcard-settings.php:
|
1760 |
msgid "Stylesheet Version"
|
1761 |
msgstr "CSSの補助バージョン"
|
1762 |
|
1763 |
-
#: ../lib/pz-linkcard-settings.php:
|
1764 |
msgid "Stylesheet File"
|
1765 |
msgstr "CSSファイルのパス"
|
1766 |
|
1767 |
-
#: ../lib/pz-linkcard-settings.php:
|
1768 |
msgid "Stylesheet Templete File"
|
1769 |
msgstr "ひな型CSSファイルのパス"
|
1770 |
|
1771 |
-
#: ../lib/pz-linkcard-settings.php:
|
1772 |
msgid "Image Settings"
|
1773 |
msgstr "画像の設定"
|
1774 |
|
1775 |
-
#: ../lib/pz-linkcard-settings.php:
|
1776 |
msgid "Image Cache URL"
|
1777 |
msgstr "キャッシュ画像を保存するディレクトリのURL"
|
1778 |
|
1779 |
-
#: ../lib/pz-linkcard-settings.php:
|
1780 |
msgid "Used"
|
1781 |
msgstr "使用中"
|
1782 |
|
1783 |
-
#: ../lib/pz-linkcard-settings.php:
|
1784 |
msgid ": "
|
1785 |
msgstr ":"
|
1786 |
|
1787 |
-
#: ../lib/pz-linkcard-settings.php:
|
1788 |
msgid "Image Cache Directory"
|
1789 |
msgstr "キャッシュ画像を保存するディレクトリ"
|
1790 |
|
1791 |
-
#: ../lib/pz-linkcard-settings.php:
|
1792 |
msgid "Survey Settings"
|
1793 |
msgstr "調査モードの設定"
|
1794 |
|
1795 |
-
#: ../lib/pz-linkcard-settings.php:
|
1796 |
msgid "Log URL"
|
1797 |
msgstr "ログ格納ディレクトリーURL"
|
1798 |
|
1799 |
-
#: ../lib/pz-linkcard-settings.php:
|
1800 |
msgid "Log Directory"
|
1801 |
msgstr "ログ格納ディレクトリー"
|
1802 |
|
1803 |
-
#: ../lib/pz-linkcard-settings.php:
|
1804 |
msgid "Web-API Settings"
|
1805 |
msgstr "WebAPIの設定"
|
1806 |
|
1807 |
-
#: ../lib/pz-linkcard-settings.php:
|
1808 |
msgid "Site Icon API"
|
1809 |
msgstr "サイトアイコン取得API"
|
1810 |
|
1811 |
-
#: ../lib/pz-linkcard-settings.php:
|
1812 |
msgid "%DOMAIN% replace to domain name."
|
1813 |
msgstr "%DOMAIN% と記述するとドメイン名に置き換わります。"
|
1814 |
|
1815 |
-
#: ../lib/pz-linkcard-settings.php:
|
1816 |
msgid "%DOMAIN_URL% replace to domain URL."
|
1817 |
msgstr "%DOMAIN_URL% と記述するとドメインのURLに置き換わります。"
|
1818 |
|
1819 |
-
#: ../lib/pz-linkcard-settings.php:
|
1820 |
msgid "%URL% replace to URL."
|
1821 |
msgstr "%URL% と記述すると記事のURLに置き換わります。"
|
1822 |
|
1823 |
-
#: ../lib/pz-linkcard-settings.php:
|
1824 |
msgid "Thumbnail API"
|
1825 |
msgstr "サムネイル画像取得API"
|
1826 |
|
1827 |
-
#: ../lib/pz-linkcard-settings.php:
|
1828 |
msgid "Initialize Settings"
|
1829 |
msgstr "設定の初期化"
|
1830 |
|
1831 |
-
#: ../lib/pz-linkcard-settings.php:
|
1832 |
msgid "Reset the \"Settings\" to the initial value."
|
1833 |
msgstr "すべての設定を初期状態に戻します。"
|
1834 |
|
1835 |
-
#: ../lib/pz-linkcard-settings.php:
|
1836 |
msgid "Initialize Operation"
|
1837 |
msgstr "プラグインの再起動"
|
1838 |
|
1839 |
-
#: ../lib/pz-linkcard-settings.php:
|
1840 |
msgid "Perform initial setup."
|
1841 |
msgstr "プラグインの初期化処理を実行します。"
|
1842 |
|
1843 |
-
#: ../lib/pz-linkcard-settings.php:
|
1844 |
msgid "\"Settings\" will not be initialized."
|
1845 |
msgstr "設定値は初期化しません。"
|
1846 |
|
1847 |
-
#: ../lib/pz-linkcard-settings.php:
|
1848 |
msgid "Initialization Exception"
|
1849 |
msgstr "初期化時の例外"
|
1850 |
|
1851 |
-
#: ../lib/pz-linkcard-settings.php:
|
1852 |
msgid "Do not initialize \"Survey Mode\" and \"Administrator Mode\"."
|
1853 |
msgstr "初期化時に調査モードと管理者モードを解除しません。"
|
1854 |
|
1855 |
-
#: ../lib/pz-linkcard-settings.php:
|
1856 |
msgid "Notice"
|
1857 |
msgstr "通知"
|
1858 |
|
1859 |
-
#: ../lib/pz-linkcard-settings.php:
|
1860 |
msgid "Do not use normally as it can be set to incapacitate."
|
1861 |
msgstr "動作無能に陥る設定が可能なため、通常は使用しないでください。"
|
1862 |
|
1863 |
-
#: ../lib/pz-linkcard-style.php:
|
1864 |
msgid "Succeeded in saving the Stylesheet."
|
1865 |
msgstr "スタイルシートの生成に成功しました。"
|
1866 |
|
1867 |
-
#: ../lib/pz-linkcard-style.php:
|
1868 |
msgid "Failed to save Stylesheet."
|
1869 |
msgstr "スタイルシートの生成に失敗しました。"
|
1870 |
|
1871 |
-
#: ../lib/pz-linkcard-style.php:
|
1872 |
msgid "Failed to call the Stylesheet template."
|
1873 |
msgstr "スタイルシートのひな型の呼び出しに失敗しました。"
|
1874 |
|
1875 |
-
#: ../pz-linkcard.php:
|
1876 |
msgid "-"
|
1877 |
msgstr "-"
|
1878 |
|
1879 |
-
#: ../pz-linkcard.php:
|
1880 |
msgid "Incorrect URL specification."
|
1881 |
msgstr "URLの記述に誤りがあります。"
|
1882 |
|
1883 |
-
#: ../pz-linkcard.php:
|
1884 |
#, php-format
|
1885 |
msgid "%d tweet"
|
1886 |
msgstr "%d Tweet"
|
1887 |
|
1888 |
-
#: ../pz-linkcard.php:
|
1889 |
#, php-format
|
1890 |
msgid "%d tweets"
|
1891 |
msgstr "%d Tweets"
|
1892 |
|
1893 |
-
#: ../pz-linkcard.php:
|
1894 |
#, php-format
|
1895 |
msgid "%d share"
|
1896 |
msgstr "%d Share"
|
1897 |
|
1898 |
-
#: ../pz-linkcard.php:
|
1899 |
#, php-format
|
1900 |
msgid "%d shares"
|
1901 |
msgstr "%d Shares"
|
1902 |
|
1903 |
-
#: ../pz-linkcard.php:
|
1904 |
#, php-format
|
1905 |
msgid "%d user"
|
1906 |
msgstr "%d User"
|
1907 |
|
1908 |
-
#: ../pz-linkcard.php:
|
1909 |
#, php-format
|
1910 |
msgid "%d users"
|
1911 |
msgstr "%d Users"
|
1912 |
|
1913 |
-
#: ../pz-linkcard.php:
|
1914 |
#, php-format
|
1915 |
msgid "%d pocket"
|
1916 |
msgstr "%d Pocket"
|
1917 |
|
1918 |
-
#: ../pz-linkcard.php:
|
1919 |
#, php-format
|
1920 |
msgid "%d pockets"
|
1921 |
msgstr "%d Pockets"
|
1922 |
|
1923 |
-
#: ../pz-linkcard.php:
|
1924 |
msgid "Category"
|
1925 |
msgstr "カテゴリー"
|
1926 |
|
1927 |
-
#: ../pz-linkcard.php:
|
1928 |
-
#: ../pz-linkcard.php:
|
1929 |
msgid "‘"
|
1930 |
msgstr "「"
|
1931 |
|
1932 |
-
#: ../pz-linkcard.php:
|
1933 |
-
#: ../pz-linkcard.php:
|
1934 |
msgid "’"
|
1935 |
msgstr "」"
|
1936 |
|
1937 |
-
#: ../pz-linkcard.php:
|
1938 |
msgid "Count"
|
1939 |
msgstr "件数"
|
1940 |
|
1941 |
-
#: ../pz-linkcard.php:
|
1942 |
msgid "Not Found"
|
1943 |
msgstr "見つかりません"
|
1944 |
|
1945 |
-
#: ../pz-linkcard.php:
|
1946 |
msgid "Tag"
|
1947 |
msgstr "タグ"
|
1948 |
|
1949 |
-
#: ../pz-linkcard.php:
|
1950 |
msgid "Linkcard"
|
1951 |
msgstr "リンクカード"
|
1952 |
|
1953 |
-
#: ../pz-linkcard.php:
|
1954 |
msgid "Make Linkcard"
|
1955 |
msgstr "リンクカードのショートコードを挿入する"
|
1956 |
|
1957 |
-
#: ../pz-linkcard.php:
|
1958 |
msgid "Invalid URL parameter in "
|
1959 |
msgstr "URLパラメーターの指定が無効です→"
|
1960 |
|
1961 |
-
#: ../pz-linkcard.php:
|
1962 |
msgid ""
|
1963 |
"You can cancel this message from <a href=\"./options-general.php?page=pz-"
|
1964 |
"linkcard-settings\">the setting screen</a>."
|
@@ -1966,18 +1974,29 @@ msgstr ""
|
|
1966 |
"このメッセージの表示は<a href=\"./options-general.php?page=pz-linkcard-"
|
1967 |
"settings\">設定画面</a>から解除できます。"
|
1968 |
|
1969 |
-
#: ../pz-linkcard.php:
|
1970 |
msgid "Pz LkC Cache"
|
1971 |
msgstr "Pz カード管理"
|
1972 |
|
1973 |
-
#: ../pz-linkcard.php:
|
1974 |
msgid "Pz LinkCard"
|
1975 |
msgstr "Pz カード設定"
|
1976 |
|
1977 |
-
#: ../pz-linkcard.php:
|
1978 |
-
msgid "
|
1979 |
msgstr "管理"
|
1980 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1981 |
#~ msgid "Run Log"
|
1982 |
#~ msgstr "実行ログ"
|
1983 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Pz-LinkCard\n"
|
6 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
7 |
+
"POT-Creation-Date: 2022-06-05 02:06+0900\n"
|
8 |
+
"PO-Revision-Date: 2022-06-05 02:07+0900\n"
|
9 |
"Last-Translator: poporon@popozure <poporon@poponet.jp>\n"
|
10 |
"Language-Team: poporon\n"
|
11 |
"Language: ja_JP\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"X-Generator: Poedit 3.0.1\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
|
22 |
#: ../lib/pz-linkcard-cacheman-edit.php:13
|
38 |
msgstr "キャンセル"
|
39 |
|
40 |
#: ../lib/pz-linkcard-cacheman-edit.php:20
|
41 |
+
#: ../lib/pz-linkcard-cacheman-list.php:232
|
42 |
msgid "ID"
|
43 |
msgstr "ID"
|
44 |
|
45 |
#: ../lib/pz-linkcard-cacheman-edit.php:24
|
46 |
+
#: ../lib/pz-linkcard-cacheman-list.php:235 ../lib/pz-linkcard-settings.php:650
|
47 |
+
#: ../lib/pz-linkcard-settings.php:1025 ../pz-linkcard.php:430
|
48 |
msgid "URL"
|
49 |
msgstr "URL"
|
50 |
|
60 |
msgid "Scheme"
|
61 |
msgstr "スキーム"
|
62 |
|
63 |
+
#: ../lib/pz-linkcard-cacheman-edit.php:40 ../lib/pz-linkcard-settings.php:1024
|
64 |
msgid "Site Name"
|
65 |
msgstr "サイト名称"
|
66 |
|
67 |
#: ../lib/pz-linkcard-cacheman-edit.php:44
|
68 |
+
#: ../lib/pz-linkcard-cacheman-list.php:247
|
69 |
+
#: ../lib/pz-linkcard-settings.php:1026
|
70 |
msgid "Domain"
|
71 |
msgstr "ドメイン"
|
72 |
|
75 |
msgstr "登録時のタイトル"
|
76 |
|
77 |
#: ../lib/pz-linkcard-cacheman-edit.php:56
|
78 |
+
#: ../lib/pz-linkcard-cacheman-list.php:238 ../lib/pz-linkcard-settings.php:649
|
79 |
msgid "Title"
|
80 |
msgstr "タイトル"
|
81 |
|
88 |
msgstr "登録時の抜粋文"
|
89 |
|
90 |
#: ../lib/pz-linkcard-cacheman-edit.php:68
|
91 |
+
#: ../lib/pz-linkcard-cacheman-list.php:241 ../lib/pz-linkcard-settings.php:651
|
92 |
msgid "Excerpt"
|
93 |
msgstr "抜粋文"
|
94 |
|
125 |
msgstr "結果コードはエラーでも、アクセス可能とする。"
|
126 |
|
127 |
#: ../lib/pz-linkcard-cacheman-edit.php:101
|
128 |
+
#: ../lib/pz-linkcard-cacheman-list.php:265
|
129 |
msgid "Post ID"
|
130 |
msgstr "記事ID"
|
131 |
|
134 |
msgstr "SNS"
|
135 |
|
136 |
#: ../lib/pz-linkcard-cacheman-edit.php:114
|
137 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
138 |
msgid "Tw"
|
139 |
msgstr "Tw"
|
140 |
|
141 |
#: ../lib/pz-linkcard-cacheman-edit.php:115
|
142 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
143 |
msgid "fb"
|
144 |
msgstr "fb"
|
145 |
|
146 |
#: ../lib/pz-linkcard-cacheman-edit.php:116
|
147 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
148 |
msgid "B!"
|
149 |
msgstr "B!"
|
150 |
|
151 |
#: ../lib/pz-linkcard-cacheman-edit.php:117
|
152 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
153 |
msgid "Po"
|
154 |
msgstr "Po"
|
155 |
|
191 |
msgid "Update Date"
|
192 |
msgstr "更新日"
|
193 |
|
194 |
+
#: ../lib/pz-linkcard-cacheman-list.php:146
|
195 |
#: ../lib/pz-linkcard-settings-admin.php:86
|
196 |
msgid "▼"
|
197 |
msgstr "▼"
|
198 |
|
199 |
+
#: ../lib/pz-linkcard-cacheman-list.php:147
|
200 |
msgid "▲"
|
201 |
msgstr "▲"
|
202 |
|
203 |
+
#: ../lib/pz-linkcard-cacheman-list.php:157
|
204 |
msgid "All"
|
205 |
msgstr "すべて"
|
206 |
|
207 |
+
#: ../lib/pz-linkcard-cacheman-list.php:158
|
208 |
msgid "Internal"
|
209 |
msgstr "内部"
|
210 |
|
211 |
+
#: ../lib/pz-linkcard-cacheman-list.php:159
|
212 |
msgid "External"
|
213 |
msgstr "外部"
|
214 |
|
215 |
+
#: ../lib/pz-linkcard-cacheman-list.php:160
|
216 |
msgid "Modify"
|
217 |
msgstr "更新あり"
|
218 |
|
219 |
+
#: ../lib/pz-linkcard-cacheman-list.php:161
|
220 |
msgid "Unlink"
|
221 |
msgstr "リンク切れ"
|
222 |
|
223 |
+
#: ../lib/pz-linkcard-cacheman-list.php:166
|
224 |
+
msgid "Text search by title and excerpt"
|
225 |
+
msgstr "タイトルと概要文からテキスト検索します"
|
226 |
+
|
227 |
+
#: ../lib/pz-linkcard-cacheman-list.php:167
|
228 |
msgid "🔍️"
|
229 |
msgstr "🔍️"
|
230 |
|
231 |
+
#: ../lib/pz-linkcard-cacheman-list.php:169
|
232 |
msgid "Search"
|
233 |
msgstr "検索"
|
234 |
|
235 |
+
#: ../lib/pz-linkcard-cacheman-list.php:176
|
236 |
msgid "Select"
|
237 |
msgstr "選択してください"
|
238 |
|
239 |
+
#: ../lib/pz-linkcard-cacheman-list.php:177 ../lib/pz-linkcard-cacheman.php:77
|
240 |
msgid "Renew Cache"
|
241 |
msgstr "記事内容の再取得"
|
242 |
|
243 |
+
#: ../lib/pz-linkcard-cacheman-list.php:178 ../lib/pz-linkcard-cacheman.php:161
|
244 |
msgid "Renew Thumbnail Image"
|
245 |
msgstr "サムネイル画像を再取得する"
|
246 |
|
247 |
+
#: ../lib/pz-linkcard-cacheman-list.php:179 ../lib/pz-linkcard-cacheman.php:140
|
248 |
msgid "Renew SNS Count"
|
249 |
msgstr "ソーシャルカウントを再取得する"
|
250 |
|
251 |
+
#: ../lib/pz-linkcard-cacheman-list.php:180
|
252 |
msgid "Renew Post ID"
|
253 |
msgstr "記事IDの再取得"
|
254 |
|
255 |
+
#: ../lib/pz-linkcard-cacheman-list.php:181
|
256 |
msgid "Check Status"
|
257 |
msgstr "状態の確認"
|
258 |
|
259 |
+
#: ../lib/pz-linkcard-cacheman-list.php:182
|
260 |
msgid "Delete from Cache"
|
261 |
msgstr "キャッシュから削除する"
|
262 |
|
263 |
+
#: ../lib/pz-linkcard-cacheman-list.php:184
|
264 |
msgid "Submit"
|
265 |
msgstr "適用"
|
266 |
|
267 |
+
#: ../lib/pz-linkcard-cacheman-list.php:190
|
268 |
msgid "All Domain"
|
269 |
msgstr "すべてのドメイン"
|
270 |
|
271 |
+
#: ../lib/pz-linkcard-cacheman-list.php:201
|
272 |
msgid "Refine Search"
|
273 |
msgstr "絞り込み検索"
|
274 |
|
275 |
+
#: ../lib/pz-linkcard-cacheman-list.php:205
|
276 |
+
#: ../lib/pz-linkcard-cacheman-list.php:405
|
277 |
#, php-format
|
278 |
msgid "%d item"
|
279 |
msgstr "%d個の項目"
|
280 |
|
281 |
+
#: ../lib/pz-linkcard-cacheman-list.php:205
|
282 |
+
#: ../lib/pz-linkcard-cacheman-list.php:405
|
283 |
#, php-format
|
284 |
msgid "%d items"
|
285 |
msgstr "%d個の項目"
|
286 |
|
287 |
+
#: ../lib/pz-linkcard-cacheman-list.php:244
|
288 |
msgid "Charset"
|
289 |
msgstr "文字セット"
|
290 |
|
291 |
+
#: ../lib/pz-linkcard-cacheman-list.php:253
|
292 |
msgid "Regist<br>date"
|
293 |
msgstr "登録日"
|
294 |
|
295 |
+
#: ../lib/pz-linkcard-cacheman-list.php:256
|
296 |
msgid "Update<br>date"
|
297 |
msgstr "更新日"
|
298 |
|
299 |
+
#: ../lib/pz-linkcard-cacheman-list.php:259
|
300 |
msgid "SNS<br>check<br>date"
|
301 |
msgstr "SNS<br>取得日"
|
302 |
|
303 |
+
#: ../lib/pz-linkcard-cacheman-list.php:262
|
304 |
msgid "Alive<br>check<br>date"
|
305 |
msgstr "状態<br>確認日"
|
306 |
|
307 |
+
#: ../lib/pz-linkcard-cacheman-list.php:268
|
308 |
msgid "Result<br>code"
|
309 |
msgstr "結果<br>コード"
|
310 |
|
311 |
+
#: ../lib/pz-linkcard-cacheman-list.php:268
|
312 |
msgid "(last )"
|
313 |
msgstr "(直近)"
|
314 |
|
315 |
+
#: ../lib/pz-linkcard-cacheman-list.php:299
|
316 |
msgid "The latest HTTP code is in error, but ignore it."
|
317 |
msgstr "HTTP結果コードがエラーだが、無視する。"
|
318 |
|
319 |
+
#: ../lib/pz-linkcard-cacheman-list.php:299
|
320 |
msgid "⚠️"
|
321 |
msgstr "⚠️"
|
322 |
|
323 |
+
#: ../lib/pz-linkcard-cacheman-list.php:301
|
324 |
msgid ""
|
325 |
"The latest HTTP code is in error. You can change it to ignore the error from "
|
326 |
"the edit screen."
|
327 |
msgstr "HTTP結果コードがエラー。編集画面から無視するように設定できます。"
|
328 |
|
329 |
+
#: ../lib/pz-linkcard-cacheman-list.php:301
|
330 |
msgid "⛔️"
|
331 |
msgstr "⛔️"
|
332 |
|
333 |
+
#: ../lib/pz-linkcard-cacheman-list.php:371
|
334 |
msgid "Ignore"
|
335 |
msgstr "無視"
|
336 |
|
337 |
+
#: ../lib/pz-linkcard-cacheman-list.php:383
|
338 |
msgid "Edit"
|
339 |
msgstr "編集"
|
340 |
|
341 |
+
#: ../lib/pz-linkcard-cacheman-list.php:384
|
342 |
+
#: ../lib/pz-linkcard-cacheman-list.php:385
|
343 |
#: ../lib/pz-linkcard-settings-admin.php:52
|
344 |
+
#: ../lib/pz-linkcard-settings.php:1204 ../lib/pz-linkcard-settings.php:1211
|
345 |
msgid "Are you sure?"
|
346 |
msgstr "実行しますか?"
|
347 |
|
348 |
+
#: ../lib/pz-linkcard-cacheman-list.php:384
|
349 |
msgid "Renew"
|
350 |
msgstr "再取得"
|
351 |
|
352 |
+
#: ../lib/pz-linkcard-cacheman-list.php:385
|
353 |
msgid "Delete"
|
354 |
msgstr "削除"
|
355 |
|
356 |
#: ../lib/pz-linkcard-cacheman.php:3 ../lib/pz-linkcard-settings.php:3
|
357 |
+
#: ../lib/pz-linkcard-settings.php:1103
|
358 |
msgid "Currently working in a development environment."
|
359 |
msgstr "現在、開発環境で作業中です。"
|
360 |
|
362 |
msgid "🗃️"
|
363 |
msgstr "🗃️"
|
364 |
|
365 |
+
#: ../lib/pz-linkcard-cacheman.php:4 ../pz-linkcard.php:2314
|
366 |
msgid "LinkCard Cache Manager"
|
367 |
msgstr "リンクカード/DBキャッシュ管理"
|
368 |
|
369 |
#: ../lib/pz-linkcard-cacheman.php:4 ../lib/pz-linkcard-settings.php:4
|
370 |
+
#: ../lib/pz-linkcard-settings.php:113
|
371 |
msgid "Help"
|
372 |
msgstr "ヘルプ"
|
373 |
|
375 |
msgid "⚙️"
|
376 |
msgstr "⚙️"
|
377 |
|
378 |
+
#: ../lib/pz-linkcard-cacheman.php:5 ../pz-linkcard.php:2332
|
379 |
msgid "Settings"
|
380 |
msgstr "設定"
|
381 |
|
382 |
+
#: ../lib/pz-linkcard-cacheman.php:64 ../lib/pz-linkcard-cacheman.php:83
|
383 |
+
#: ../lib/pz-linkcard-cacheman.php:100 ../lib/pz-linkcard-cacheman.php:126
|
384 |
+
#: ../lib/pz-linkcard-cacheman.php:146 ../lib/pz-linkcard-cacheman.php:167
|
385 |
+
#: ../lib/pz-linkcard-cacheman.php:188
|
386 |
msgid "Not selected"
|
387 |
msgstr "選択されていません"
|
388 |
|
389 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
390 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
391 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
392 |
+
#: ../lib/pz-linkcard-cacheman.php:217
|
393 |
msgid "..."
|
394 |
msgstr "..."
|
395 |
|
396 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
397 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
398 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
399 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:11
|
400 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
401 |
#: ../lib/pz-linkcard-file-import.php:100
|
402 |
+
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:245
|
403 |
+
#: ../lib/pz-linkcard-settings.php:1120 ../lib/pz-linkcard-settings.php:1181
|
404 |
+
#: ../lib/pz-linkcard-settings.php:1190 ../pz-linkcard.php:1593
|
405 |
+
#: ../pz-linkcard.php:1610
|
406 |
msgid "("
|
407 |
msgstr "("
|
408 |
|
409 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
410 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
411 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
412 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:100
|
413 |
msgid "Success:"
|
414 |
msgstr "成功:"
|
415 |
|
416 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
417 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
418 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
419 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:100
|
420 |
#: ../lib/pz-linkcard-file-import.php:102
|
421 |
msgid "Skip:"
|
422 |
msgstr "スキップ:"
|
423 |
|
424 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
425 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
426 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
427 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:11
|
428 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
429 |
#: ../lib/pz-linkcard-file-import.php:100
|
430 |
+
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:245
|
431 |
+
#: ../lib/pz-linkcard-settings.php:1120 ../lib/pz-linkcard-settings.php:1181
|
432 |
+
#: ../lib/pz-linkcard-settings.php:1190 ../pz-linkcard.php:1593
|
433 |
+
#: ../pz-linkcard.php:1610
|
434 |
msgid ")"
|
435 |
msgstr ")"
|
436 |
|
437 |
+
#: ../lib/pz-linkcard-cacheman.php:94
|
438 |
msgid "Delete Cache"
|
439 |
msgstr "キャッシュ削除"
|
440 |
|
441 |
+
#: ../lib/pz-linkcard-cacheman.php:120
|
442 |
msgid "Update Cache"
|
443 |
msgstr "キャッシュを更新しました"
|
444 |
|
445 |
+
#: ../lib/pz-linkcard-cacheman.php:182
|
446 |
msgid "Renew Post Id"
|
447 |
msgstr "記事IDの再取得"
|
448 |
|
449 |
+
#: ../lib/pz-linkcard-cacheman.php:217
|
450 |
msgid "Alive check"
|
451 |
msgstr "リンク先のチェック"
|
452 |
|
453 |
+
#: ../lib/pz-linkcard-cacheman.php:227
|
454 |
msgid "Upload Import File"
|
455 |
msgstr "インポートするファイルをアップロード"
|
456 |
|
457 |
+
#: ../lib/pz-linkcard-cacheman.php:228
|
458 |
msgid "Clear all cache"
|
459 |
msgstr "すべてのキャッシュを消去"
|
460 |
|
461 |
+
#: ../lib/pz-linkcard-cacheman.php:251
|
462 |
msgid "📄️"
|
463 |
msgstr "📄️"
|
464 |
|
465 |
+
#: ../lib/pz-linkcard-cacheman.php:251 ../lib/pz-linkcard-settings.php:1086
|
466 |
msgid "File Menu"
|
467 |
msgstr "ファイルメニュー"
|
468 |
|
469 |
+
#: ../lib/pz-linkcard-cacheman.php:258
|
470 |
msgid "Import"
|
471 |
msgstr "インポート"
|
472 |
|
473 |
+
#: ../lib/pz-linkcard-cacheman.php:266
|
474 |
msgid "Export"
|
475 |
msgstr "エクスポート"
|
476 |
|
533 |
msgstr "情報"
|
534 |
|
535 |
#: ../lib/pz-linkcard-settings-admin.php:64
|
536 |
+
#: ../lib/pz-linkcard-settings.php:1007
|
537 |
msgid "Table Name"
|
538 |
msgstr "テーブル名称"
|
539 |
|
551 |
msgstr "すべてのスケジュールを表示する。"
|
552 |
|
553 |
#: ../lib/pz-linkcard-settings-admin.php:84
|
554 |
+
#: ../lib/pz-linkcard-settings.php:1204 ../lib/pz-linkcard-settings.php:1211
|
555 |
msgid "Run"
|
556 |
msgstr "実行"
|
557 |
|
567 |
msgid "Schedule"
|
568 |
msgstr "スケジュール"
|
569 |
|
570 |
+
#: ../lib/pz-linkcard-settings.php:4 ../pz-linkcard.php:2315
|
571 |
msgid "LinkCard Settings"
|
572 |
msgstr "リンクカード設定"
|
573 |
|
575 |
msgid "Cache Manager"
|
576 |
msgstr "DBキャッシュ管理"
|
577 |
|
578 |
+
#: ../lib/pz-linkcard-settings.php:19
|
579 |
msgid "Succeeded in initialize the settings."
|
580 |
msgstr "設定を初期化しました。"
|
581 |
|
582 |
+
#: ../lib/pz-linkcard-settings.php:21
|
583 |
msgid "Failed to initialize the settings."
|
584 |
msgstr "設定の初期化に失敗しました。"
|
585 |
|
586 |
+
#: ../lib/pz-linkcard-settings.php:49
|
587 |
msgid "Succeeded in saving the settings."
|
588 |
msgstr "設定を更新しました。"
|
589 |
|
590 |
+
#: ../lib/pz-linkcard-settings.php:52
|
591 |
msgid "The settings have not changed."
|
592 |
msgstr "設定は変更されていません。"
|
593 |
|
594 |
+
#: ../lib/pz-linkcard-settings.php:80
|
595 |
msgid "Version"
|
596 |
msgstr "バージョン"
|
597 |
|
598 |
+
#: ../lib/pz-linkcard-settings.php:132
|
599 |
msgid "Error"
|
600 |
msgstr "エラー"
|
601 |
|
602 |
+
#: ../lib/pz-linkcard-settings.php:133
|
603 |
msgid "Basic"
|
604 |
msgstr "基本"
|
605 |
|
606 |
+
#: ../lib/pz-linkcard-settings.php:134 ../lib/pz-linkcard-settings.php:501
|
607 |
msgid "Position"
|
608 |
msgstr "配置"
|
609 |
|
610 |
+
#: ../lib/pz-linkcard-settings.php:135
|
611 |
msgid "Display"
|
612 |
msgstr "表示"
|
613 |
|
614 |
+
#: ../lib/pz-linkcard-settings.php:136
|
615 |
msgid "Letter"
|
616 |
msgstr "文字"
|
617 |
|
618 |
+
#: ../lib/pz-linkcard-settings.php:137
|
619 |
msgid "External Link"
|
620 |
msgstr "外部リンク"
|
621 |
|
622 |
+
#: ../lib/pz-linkcard-settings.php:138
|
623 |
msgid "Internal Link"
|
624 |
msgstr "内部リンク"
|
625 |
|
626 |
+
#: ../lib/pz-linkcard-settings.php:139
|
627 |
msgid "Same Page Link"
|
628 |
msgstr "同ページへのリンク"
|
629 |
|
630 |
+
#: ../lib/pz-linkcard-settings.php:140
|
631 |
msgid "Link Check"
|
632 |
msgstr "リンク先の検査"
|
633 |
|
634 |
+
#: ../lib/pz-linkcard-settings.php:141
|
635 |
msgid "Editor"
|
636 |
msgstr "エディター"
|
637 |
|
638 |
+
#: ../lib/pz-linkcard-settings.php:142 ../lib/pz-linkcard-settings.php:977
|
639 |
msgid "Multi Site"
|
640 |
msgstr "マルチサイト"
|
641 |
|
642 |
+
#: ../lib/pz-linkcard-settings.php:143
|
643 |
msgid "Admin"
|
644 |
msgstr "管理者"
|
645 |
|
646 |
+
#: ../lib/pz-linkcard-settings.php:144
|
647 |
msgid "Advanced"
|
648 |
msgstr "上級者向け"
|
649 |
|
650 |
+
#: ../lib/pz-linkcard-settings.php:145
|
651 |
msgid "etc."
|
652 |
msgstr "その他"
|
653 |
|
654 |
+
#: ../lib/pz-linkcard-settings.php:146 ../lib/pz-linkcard-settings.php:1199
|
655 |
msgid "Initialize"
|
656 |
msgstr "初期化"
|
657 |
|
658 |
+
#: ../lib/pz-linkcard-settings.php:150
|
659 |
msgid "Error Settings"
|
660 |
msgstr "エラーの設定"
|
661 |
|
662 |
+
#: ../lib/pz-linkcard-settings.php:153 ../lib/pz-linkcard-settings.php:160
|
663 |
msgid "Error Reset"
|
664 |
msgstr "エラーの解除"
|
665 |
|
666 |
+
#: ../lib/pz-linkcard-settings.php:155
|
667 |
msgid "Reset"
|
668 |
msgstr "リセット"
|
669 |
|
670 |
+
#: ../lib/pz-linkcard-settings.php:156
|
671 |
msgid "Cancel the error condition."
|
672 |
msgstr "エラー状態を解除します。"
|
673 |
|
674 |
+
#: ../lib/pz-linkcard-settings.php:161
|
675 |
msgid "Uncheck to cancel the error condition."
|
676 |
msgstr "チェックを外すとエラー状態を解除します。"
|
677 |
|
678 |
+
#: ../lib/pz-linkcard-settings.php:164 ../lib/pz-linkcard-settings.php:170
|
679 |
msgid "Post URL"
|
680 |
msgstr "記事URL"
|
681 |
|
682 |
+
#: ../lib/pz-linkcard-settings.php:176
|
683 |
msgid "Occurrence Time"
|
684 |
msgstr "発生日時"
|
685 |
|
686 |
+
#: ../lib/pz-linkcard-settings.php:186
|
687 |
msgid "Basic Settings"
|
688 |
msgstr "基本の設定"
|
689 |
|
690 |
+
#: ../lib/pz-linkcard-settings.php:189
|
691 |
msgid "Easy format"
|
692 |
msgstr "かんたん書式設定"
|
693 |
|
694 |
+
#: ../lib/pz-linkcard-settings.php:192 ../lib/pz-linkcard-settings.php:484
|
695 |
+
#: ../lib/pz-linkcard-settings.php:503 ../lib/pz-linkcard-settings.php:536
|
696 |
+
#: ../lib/pz-linkcard-settings.php:567 ../lib/pz-linkcard-settings.php:581
|
697 |
+
#: ../lib/pz-linkcard-settings.php:597 ../lib/pz-linkcard-settings.php:618
|
698 |
+
#: ../lib/pz-linkcard-settings.php:631 ../lib/pz-linkcard-settings.php:741
|
699 |
+
#: ../lib/pz-linkcard-settings.php:775 ../lib/pz-linkcard-settings.php:806
|
700 |
msgid "None"
|
701 |
msgstr "なし"
|
702 |
|
703 |
+
#: ../lib/pz-linkcard-settings.php:193
|
704 |
msgid "Pz-LkC Default"
|
705 |
msgstr "Pz リンクカード オリジナル"
|
706 |
|
707 |
+
#: ../lib/pz-linkcard-settings.php:195
|
708 |
msgid "Normal"
|
709 |
msgstr "ノーマル(はてなブログカード風)"
|
710 |
|
711 |
+
#: ../lib/pz-linkcard-settings.php:196
|
712 |
msgid "Compact"
|
713 |
msgstr "コンパクト"
|
714 |
|
715 |
+
#: ../lib/pz-linkcard-settings.php:197
|
716 |
msgid "Simple"
|
717 |
msgstr "シンプル"
|
718 |
|
719 |
+
#: ../lib/pz-linkcard-settings.php:198
|
720 |
msgid "Headline"
|
721 |
msgstr "見出し(付加情報のテキストが見出しとして表示されます)"
|
722 |
|
723 |
+
#: ../lib/pz-linkcard-settings.php:200
|
724 |
msgid "Cellophane tape \"center\""
|
725 |
msgstr "セロハンテープ(中央)"
|
726 |
|
727 |
+
#: ../lib/pz-linkcard-settings.php:201
|
728 |
msgid "Cellophane tape \"Top corner\""
|
729 |
msgstr "セロハンテープ(左上と右上)"
|
730 |
|
731 |
+
#: ../lib/pz-linkcard-settings.php:202
|
732 |
msgid "Cellophane tape \"long\""
|
733 |
msgstr "セロハンテープ(長め)"
|
734 |
|
735 |
+
#: ../lib/pz-linkcard-settings.php:203
|
736 |
msgid "Cellophane tape \"digonal\""
|
737 |
msgstr "セロハンテープ(斜め)"
|
738 |
|
739 |
+
#: ../lib/pz-linkcard-settings.php:204
|
740 |
msgid "Cellophane tape and curling"
|
741 |
msgstr "セロハンテープと紙めくれた効果"
|
742 |
|
743 |
+
#: ../lib/pz-linkcard-settings.php:205
|
744 |
msgid "Curling paper"
|
745 |
msgstr "紙がめくれた効果"
|
746 |
|
747 |
+
#: ../lib/pz-linkcard-settings.php:207
|
748 |
msgid "Stitch blue & red"
|
749 |
msgstr "縫い目(青と赤)"
|
750 |
|
751 |
+
#: ../lib/pz-linkcard-settings.php:208
|
752 |
msgid "Stitch green & yellow"
|
753 |
msgstr "縫い目(緑と黄色)"
|
754 |
|
755 |
+
#: ../lib/pz-linkcard-settings.php:210
|
756 |
msgid "Square"
|
757 |
msgstr "スクエア"
|
758 |
|
759 |
+
#: ../lib/pz-linkcard-settings.php:212
|
760 |
msgid "Enclose"
|
761 |
msgstr "囲み"
|
762 |
|
763 |
+
#: ../lib/pz-linkcard-settings.php:213
|
764 |
msgid "Reflection"
|
765 |
msgstr "反射"
|
766 |
|
767 |
+
#: ../lib/pz-linkcard-settings.php:215
|
768 |
msgid "Infomation orange"
|
769 |
msgstr "インフォメーション オレンジ"
|
770 |
|
771 |
+
#: ../lib/pz-linkcard-settings.php:216
|
772 |
msgid "Neutral bluegreen"
|
773 |
msgstr "ニュートラル ブルーグリーン"
|
774 |
|
775 |
+
#: ../lib/pz-linkcard-settings.php:217
|
776 |
msgid "Enlightened green"
|
777 |
msgstr "エンライテド グリーン"
|
778 |
|
779 |
+
#: ../lib/pz-linkcard-settings.php:218
|
780 |
msgid "Resistance blue"
|
781 |
msgstr "レジスタンス ブルー"
|
782 |
|
783 |
+
#: ../lib/pz-linkcard-settings.php:220
|
784 |
msgid "Windows XP"
|
785 |
msgstr "Windows XP 風"
|
786 |
|
787 |
+
#: ../lib/pz-linkcard-settings.php:221
|
788 |
msgid "Windows 95"
|
789 |
msgstr "Windows 95 風"
|
790 |
|
791 |
+
#: ../lib/pz-linkcard-settings.php:223
|
792 |
msgid "Slanting"
|
793 |
msgstr "斜め"
|
794 |
|
795 |
+
#: ../lib/pz-linkcard-settings.php:225
|
796 |
msgid "3D Rotate"
|
797 |
msgstr "3D回転"
|
798 |
|
799 |
+
#: ../lib/pz-linkcard-settings.php:226
|
800 |
msgid "Pushpin"
|
801 |
msgstr "押しピン"
|
802 |
|
803 |
+
#: ../lib/pz-linkcard-settings.php:228 ../lib/pz-linkcard-settings.php:624
|
804 |
+
#: ../lib/pz-linkcard-settings.php:974 ../lib/pz-linkcard-settings.php:1017
|
805 |
+
#: ../pz-linkcard.php:2284
|
806 |
msgid "*"
|
807 |
msgstr "※"
|
808 |
|
809 |
+
#: ../lib/pz-linkcard-settings.php:228
|
810 |
msgid "It applies over other formatting settings."
|
811 |
msgstr "ほかの項目よりも優先して適用されます。"
|
812 |
|
813 |
+
#: ../lib/pz-linkcard-settings.php:232
|
814 |
msgid "Saved Datetime"
|
815 |
msgstr "保存した日時"
|
816 |
|
817 |
+
#: ../lib/pz-linkcard-settings.php:242
|
818 |
msgid "Plugin Information"
|
819 |
msgstr "プラグイン情報"
|
820 |
|
821 |
+
#: ../lib/pz-linkcard-settings.php:245
|
822 |
msgid "How to"
|
823 |
msgstr "使い方"
|
824 |
|
825 |
+
#: ../lib/pz-linkcard-settings.php:245
|
826 |
msgid "Japanese Only"
|
827 |
msgstr "日本語のみ"
|
828 |
|
829 |
+
#: ../lib/pz-linkcard-settings.php:253
|
830 |
+
msgid "PHP Version"
|
831 |
+
msgstr "PHPバージョン"
|
832 |
+
|
833 |
+
#: ../lib/pz-linkcard-settings.php:258
|
834 |
msgid "Plugin Name"
|
835 |
msgstr "プラグイン名"
|
836 |
|
837 |
+
#: ../lib/pz-linkcard-settings.php:262
|
838 |
msgid "Plugin Abbreviation"
|
839 |
msgstr "プラグイン略称"
|
840 |
|
841 |
+
#: ../lib/pz-linkcard-settings.php:266
|
842 |
msgid "Plugin Version"
|
843 |
msgstr "プラグインバージョン"
|
844 |
|
845 |
+
#: ../lib/pz-linkcard-settings.php:270 ../lib/pz-linkcard-settings.php:287
|
846 |
msgid "Author's Site"
|
847 |
msgstr "作者のサイト"
|
848 |
|
849 |
+
#: ../lib/pz-linkcard-settings.php:274
|
850 |
msgid "Plugin Path"
|
851 |
msgstr "プラグインのパス"
|
852 |
|
853 |
+
#: ../lib/pz-linkcard-settings.php:279
|
854 |
msgid "Author Name"
|
855 |
msgstr "作者の名前"
|
856 |
|
857 |
+
#: ../lib/pz-linkcard-settings.php:283
|
858 |
msgid "Author Twitter"
|
859 |
msgstr "作者のツイッター"
|
860 |
|
861 |
+
#: ../lib/pz-linkcard-settings.php:288
|
862 |
msgid "Popozure."
|
863 |
msgstr "ぽぽづれ。"
|
864 |
|
865 |
+
#: ../lib/pz-linkcard-settings.php:288
|
866 |
msgid "Poporon's PC Daily Diary"
|
867 |
msgstr "ぽぽろんのパソコンつれづれ(ズレズレ?)日記"
|
868 |
|
869 |
+
#: ../lib/pz-linkcard-settings.php:291
|
870 |
msgid "When in Trouble"
|
871 |
msgstr "困ったときは"
|
872 |
|
873 |
+
#: ../lib/pz-linkcard-settings.php:292
|
874 |
msgid "Twitter Account"
|
875 |
msgstr "ツイッター アカウント"
|
876 |
|
877 |
+
#: ../lib/pz-linkcard-settings.php:295
|
878 |
msgid "Donation"
|
879 |
msgstr "寄付"
|
880 |
|
881 |
+
#: ../lib/pz-linkcard-settings.php:296
|
882 |
msgid "Wishlist"
|
883 |
msgstr "ほしい物リスト"
|
884 |
|
885 |
+
#: ../lib/pz-linkcard-settings.php:300
|
886 |
msgid "Changelog"
|
887 |
msgstr "修正履歴"
|
888 |
|
889 |
+
#: ../lib/pz-linkcard-settings.php:308
|
890 |
msgid "Position Settings"
|
891 |
msgstr "配置の設定"
|
892 |
|
893 |
+
#: ../lib/pz-linkcard-settings.php:311
|
894 |
msgid "Link the Whole"
|
895 |
msgstr "カード全体をリンクする"
|
896 |
|
897 |
+
#: ../lib/pz-linkcard-settings.php:315
|
898 |
msgid "Enclose the entire card at anchor."
|
899 |
msgstr ""
|
900 |
"カード全体をAタグで囲って、どこをクリックしてもリンク先を開くようにします。"
|
901 |
|
902 |
+
#: ../lib/pz-linkcard-settings.php:321
|
903 |
msgid "Margin"
|
904 |
msgstr "余白"
|
905 |
|
906 |
+
#: ../lib/pz-linkcard-settings.php:328 ../lib/pz-linkcard-settings.php:360
|
907 |
msgid "Margin top"
|
908 |
msgstr "上の余白"
|
909 |
|
910 |
+
#: ../lib/pz-linkcard-settings.php:330 ../lib/pz-linkcard-settings.php:346
|
911 |
+
#: ../lib/pz-linkcard-settings.php:362 ../lib/pz-linkcard-settings.php:378
|
912 |
+
#: ../lib/pz-linkcard-settings.php:392 ../lib/pz-linkcard-settings.php:414
|
913 |
+
#: ../lib/pz-linkcard-settings.php:432 ../lib/pz-linkcard-settings.php:450
|
914 |
msgid "Not defined"
|
915 |
msgstr "設定しない"
|
916 |
|
917 |
+
#: ../lib/pz-linkcard-settings.php:331 ../lib/pz-linkcard-settings.php:347
|
918 |
+
#: ../lib/pz-linkcard-settings.php:363 ../lib/pz-linkcard-settings.php:379
|
919 |
+
#: ../lib/pz-linkcard-settings.php:393 ../lib/pz-linkcard-settings.php:415
|
920 |
+
#: ../lib/pz-linkcard-settings.php:433 ../lib/pz-linkcard-settings.php:451
|
921 |
msgid "0"
|
922 |
msgstr "0"
|
923 |
|
924 |
+
#: ../lib/pz-linkcard-settings.php:332 ../lib/pz-linkcard-settings.php:348
|
925 |
+
#: ../lib/pz-linkcard-settings.php:364 ../lib/pz-linkcard-settings.php:380
|
926 |
+
#: ../lib/pz-linkcard-settings.php:394 ../lib/pz-linkcard-settings.php:416
|
927 |
+
#: ../lib/pz-linkcard-settings.php:434 ../lib/pz-linkcard-settings.php:452
|
928 |
+
#: ../lib/pz-linkcard-settings.php:568
|
929 |
msgid "4px"
|
930 |
msgstr "4px"
|
931 |
|
932 |
+
#: ../lib/pz-linkcard-settings.php:333 ../lib/pz-linkcard-settings.php:349
|
933 |
+
#: ../lib/pz-linkcard-settings.php:365 ../lib/pz-linkcard-settings.php:381
|
934 |
+
#: ../lib/pz-linkcard-settings.php:395 ../lib/pz-linkcard-settings.php:417
|
935 |
+
#: ../lib/pz-linkcard-settings.php:435 ../lib/pz-linkcard-settings.php:453
|
936 |
+
#: ../lib/pz-linkcard-settings.php:569
|
937 |
msgid "8px"
|
938 |
msgstr "8px"
|
939 |
|
940 |
+
#: ../lib/pz-linkcard-settings.php:334 ../lib/pz-linkcard-settings.php:350
|
941 |
+
#: ../lib/pz-linkcard-settings.php:366 ../lib/pz-linkcard-settings.php:382
|
942 |
+
#: ../lib/pz-linkcard-settings.php:396 ../lib/pz-linkcard-settings.php:418
|
943 |
+
#: ../lib/pz-linkcard-settings.php:436 ../lib/pz-linkcard-settings.php:454
|
944 |
+
#: ../lib/pz-linkcard-settings.php:570
|
945 |
msgid "16px"
|
946 |
msgstr "16px"
|
947 |
|
948 |
+
#: ../lib/pz-linkcard-settings.php:335 ../lib/pz-linkcard-settings.php:351
|
949 |
+
#: ../lib/pz-linkcard-settings.php:368 ../lib/pz-linkcard-settings.php:384
|
950 |
+
#: ../lib/pz-linkcard-settings.php:398 ../lib/pz-linkcard-settings.php:420
|
951 |
+
#: ../lib/pz-linkcard-settings.php:437 ../lib/pz-linkcard-settings.php:455
|
952 |
+
#: ../lib/pz-linkcard-settings.php:571
|
953 |
msgid "32px"
|
954 |
msgstr "32px"
|
955 |
|
956 |
+
#: ../lib/pz-linkcard-settings.php:336 ../lib/pz-linkcard-settings.php:352
|
957 |
+
#: ../lib/pz-linkcard-settings.php:369 ../lib/pz-linkcard-settings.php:385
|
958 |
+
#: ../lib/pz-linkcard-settings.php:399 ../lib/pz-linkcard-settings.php:421
|
959 |
+
#: ../lib/pz-linkcard-settings.php:438 ../lib/pz-linkcard-settings.php:456
|
960 |
msgid "40px"
|
961 |
msgstr "40px"
|
962 |
|
963 |
+
#: ../lib/pz-linkcard-settings.php:337 ../lib/pz-linkcard-settings.php:353
|
964 |
+
#: ../lib/pz-linkcard-settings.php:370 ../lib/pz-linkcard-settings.php:386
|
965 |
+
#: ../lib/pz-linkcard-settings.php:400 ../lib/pz-linkcard-settings.php:422
|
966 |
+
#: ../lib/pz-linkcard-settings.php:439 ../lib/pz-linkcard-settings.php:457
|
967 |
+
#: ../lib/pz-linkcard-settings.php:572
|
968 |
msgid "64px"
|
969 |
msgstr "64px"
|
970 |
|
971 |
+
#: ../lib/pz-linkcard-settings.php:344 ../lib/pz-linkcard-settings.php:376
|
972 |
msgid "Margin left"
|
973 |
msgstr "左の余白"
|
974 |
|
975 |
+
#: ../lib/pz-linkcard-settings.php:367 ../lib/pz-linkcard-settings.php:383
|
976 |
+
#: ../lib/pz-linkcard-settings.php:397 ../lib/pz-linkcard-settings.php:419
|
977 |
msgid "24px"
|
978 |
msgstr "24px"
|
979 |
|
980 |
+
#: ../lib/pz-linkcard-settings.php:390 ../lib/pz-linkcard-settings.php:430
|
981 |
msgid "Margin right"
|
982 |
msgstr "右の余白"
|
983 |
|
984 |
+
#: ../lib/pz-linkcard-settings.php:406 ../lib/pz-linkcard-settings.php:511
|
985 |
+
#: ../lib/pz-linkcard-settings.php:607
|
986 |
msgid "Width"
|
987 |
msgstr "幅"
|
988 |
|
989 |
+
#: ../lib/pz-linkcard-settings.php:407 ../lib/pz-linkcard-settings.php:514
|
990 |
+
#: ../lib/pz-linkcard-settings.php:680
|
991 |
msgid "Height"
|
992 |
msgstr "高さ"
|
993 |
|
994 |
+
#: ../lib/pz-linkcard-settings.php:412 ../lib/pz-linkcard-settings.php:448
|
995 |
msgid "Margin bottom"
|
996 |
msgstr "下の余白"
|
997 |
|
998 |
+
#: ../lib/pz-linkcard-settings.php:445
|
999 |
msgid "Centering"
|
1000 |
msgstr "中央に寄せる"
|
1001 |
|
1002 |
+
#: ../lib/pz-linkcard-settings.php:467
|
1003 |
msgid "Use Blockquote Tag"
|
1004 |
msgstr "BLOCKQUOTEタグを使用する"
|
1005 |
|
1006 |
+
#: ../lib/pz-linkcard-settings.php:468
|
1007 |
msgid "Without using DIV tag, and use BLOCKQUOTE tag."
|
1008 |
msgstr "<BLOCKQUOTE>で囲んで引用扱いにします。"
|
1009 |
|
1010 |
+
#: ../lib/pz-linkcard-settings.php:468 ../lib/pz-linkcard-settings.php:832
|
1011 |
+
#: ../lib/pz-linkcard-settings.php:840 ../lib/pz-linkcard-settings.php:1073
|
1012 |
+
#: ../lib/pz-linkcard-settings.php:1079 ../lib/pz-linkcard-settings.php:1095
|
1013 |
+
#: ../lib/pz-linkcard-settings.php:1099
|
1014 |
msgid "(Deprecated)"
|
1015 |
msgstr "(非推奨)"
|
1016 |
|
1017 |
+
#: ../lib/pz-linkcard-settings.php:474
|
1018 |
msgid "Display Settings"
|
1019 |
msgstr "表示の設定"
|
1020 |
|
1021 |
+
#: ../lib/pz-linkcard-settings.php:477
|
1022 |
msgid "Layout"
|
1023 |
msgstr "レイアウト"
|
1024 |
|
1025 |
+
#: ../lib/pz-linkcard-settings.php:482 ../lib/pz-linkcard-settings.php:653
|
1026 |
msgid "Site Information"
|
1027 |
msgstr "サイト情報"
|
1028 |
|
1029 |
+
#: ../lib/pz-linkcard-settings.php:485 ../lib/pz-linkcard-settings.php:506
|
1030 |
msgid "Upper Side"
|
1031 |
msgstr "上側"
|
1032 |
|
1033 |
+
#: ../lib/pz-linkcard-settings.php:486
|
1034 |
msgid "Above the Title"
|
1035 |
msgstr "タイトルの上側"
|
1036 |
|
1037 |
+
#: ../lib/pz-linkcard-settings.php:487
|
1038 |
msgid "Under Side"
|
1039 |
msgstr "下側"
|
1040 |
|
1041 |
+
#: ../lib/pz-linkcard-settings.php:489
|
1042 |
msgid "Use SiteName"
|
1043 |
msgstr "サイト名称を使用"
|
1044 |
|
1045 |
+
#: ../lib/pz-linkcard-settings.php:493
|
1046 |
msgid "For internal links, display the posting date"
|
1047 |
msgstr "内部リンクの場合に投稿日を表示する"
|
1048 |
|
1049 |
+
#: ../lib/pz-linkcard-settings.php:497 ../lib/pz-linkcard-settings.php:733
|
1050 |
msgid "Thumbnail"
|
1051 |
msgstr "サムネイル"
|
1052 |
|
1053 |
+
#: ../lib/pz-linkcard-settings.php:504
|
1054 |
msgid "Right Side"
|
1055 |
msgstr "右側"
|
1056 |
|
1057 |
+
#: ../lib/pz-linkcard-settings.php:505
|
1058 |
msgid "Left Side"
|
1059 |
msgstr "左側"
|
1060 |
|
1061 |
+
#: ../lib/pz-linkcard-settings.php:517 ../lib/pz-linkcard-settings.php:560
|
1062 |
msgid "Shadow"
|
1063 |
msgstr "影を付ける"
|
1064 |
|
1065 |
+
#: ../lib/pz-linkcard-settings.php:523
|
1066 |
msgid "Make additional information heading display"
|
1067 |
msgstr "付加情報を見出し表示にする"
|
1068 |
|
1069 |
+
#: ../lib/pz-linkcard-settings.php:526
|
1070 |
msgid "Turn off the anchor text underlining"
|
1071 |
msgstr "リンク文字のアンダーラインを除去する"
|
1072 |
|
1073 |
+
#: ../lib/pz-linkcard-settings.php:529
|
1074 |
msgid "Separator line"
|
1075 |
msgstr "区切り線"
|
1076 |
|
1077 |
+
#: ../lib/pz-linkcard-settings.php:534
|
1078 |
msgid "Display URL"
|
1079 |
msgstr "リンク先URLの表示"
|
1080 |
|
1081 |
+
#: ../lib/pz-linkcard-settings.php:537
|
1082 |
msgid "Under Title"
|
1083 |
msgstr "タイトルの下側"
|
1084 |
|
1085 |
+
#: ../lib/pz-linkcard-settings.php:538 ../lib/pz-linkcard-settings.php:633
|
1086 |
msgid "Bihind Site-Info"
|
1087 |
msgstr "サイト情報の後ろ"
|
1088 |
|
1089 |
+
#: ../lib/pz-linkcard-settings.php:545
|
1090 |
msgid "Hollow content area"
|
1091 |
msgstr "記事の情報に枠を付ける"
|
1092 |
|
1093 |
+
#: ../lib/pz-linkcard-settings.php:550
|
1094 |
msgid "Display excerpt"
|
1095 |
msgstr "抜粋文を表示する"
|
1096 |
|
1097 |
+
#: ../lib/pz-linkcard-settings.php:555
|
1098 |
msgid "Hollow"
|
1099 |
msgstr "内側に影を付ける"
|
1100 |
|
1101 |
+
#: ../lib/pz-linkcard-settings.php:565
|
1102 |
msgid "Round a square"
|
1103 |
msgstr "角を丸める"
|
1104 |
|
1105 |
+
#: ../lib/pz-linkcard-settings.php:579
|
1106 |
msgid "When the mouse is on"
|
1107 |
msgstr "マウスが上に乗ったとき、"
|
1108 |
|
1109 |
+
#: ../lib/pz-linkcard-settings.php:582
|
1110 |
msgid "Lighten"
|
1111 |
msgstr "薄色にする"
|
1112 |
|
1113 |
+
#: ../lib/pz-linkcard-settings.php:583
|
1114 |
msgid "Hover (light)"
|
1115 |
msgstr "浮かせる(薄色)"
|
1116 |
|
1117 |
+
#: ../lib/pz-linkcard-settings.php:584
|
1118 |
msgid "Hover (dark)"
|
1119 |
msgstr "浮かせる(濃色)"
|
1120 |
|
1121 |
+
#: ../lib/pz-linkcard-settings.php:585
|
1122 |
msgid "Radius"
|
1123 |
msgstr "角を丸める"
|
1124 |
|
1125 |
+
#: ../lib/pz-linkcard-settings.php:594
|
1126 |
msgid "Border"
|
1127 |
msgstr "枠線の太さ"
|
1128 |
|
1129 |
+
#: ../lib/pz-linkcard-settings.php:598
|
1130 |
msgid "Solid"
|
1131 |
msgstr "Solid(実線)"
|
1132 |
|
1133 |
+
#: ../lib/pz-linkcard-settings.php:599
|
1134 |
msgid "Dotted"
|
1135 |
msgstr "Dotted(点線)"
|
1136 |
|
1137 |
+
#: ../lib/pz-linkcard-settings.php:600
|
1138 |
msgid "Dashed"
|
1139 |
msgstr "Dashed(破線)"
|
1140 |
|
1141 |
+
#: ../lib/pz-linkcard-settings.php:601
|
1142 |
msgid "Double"
|
1143 |
msgstr "Double(二重線)"
|
1144 |
|
1145 |
+
#: ../lib/pz-linkcard-settings.php:602
|
1146 |
msgid "Groove"
|
1147 |
msgstr "Groove(立体・へこみ)"
|
1148 |
|
1149 |
+
#: ../lib/pz-linkcard-settings.php:603
|
1150 |
msgid "Ridge"
|
1151 |
msgstr "Ridge(立体・隆起)"
|
1152 |
|
1153 |
+
#: ../lib/pz-linkcard-settings.php:604
|
1154 |
msgid "Inset"
|
1155 |
msgstr "Inset(立体・押されたボタンのような効果)"
|
1156 |
|
1157 |
+
#: ../lib/pz-linkcard-settings.php:605
|
1158 |
msgid "Outset"
|
1159 |
msgstr "Outset(立体・ボタンのような効果)"
|
1160 |
|
1161 |
+
#: ../lib/pz-linkcard-settings.php:611
|
1162 |
msgid "Reset Image Style"
|
1163 |
msgstr "画像のスタイルのリセット"
|
1164 |
|
1165 |
+
#: ../lib/pz-linkcard-settings.php:612
|
1166 |
msgid ""
|
1167 |
"When unnecessary frame is displayed on the image, you can improve it by case"
|
1168 |
msgstr "画像がずれて表示されるときに改善される可能性が有ります(推奨)"
|
1169 |
|
1170 |
+
#: ../lib/pz-linkcard-settings.php:615 ../lib/pz-linkcard-settings.php:652
|
1171 |
msgid "More Button"
|
1172 |
msgstr "続きを読むボタン"
|
1173 |
|
1174 |
+
#: ../lib/pz-linkcard-settings.php:619
|
1175 |
msgid "Text link"
|
1176 |
msgstr "テキスト リンク"
|
1177 |
|
1178 |
+
#: ../lib/pz-linkcard-settings.php:620
|
1179 |
msgid "Simple button"
|
1180 |
msgstr "シンプルなボタン"
|
1181 |
|
1182 |
+
#: ../lib/pz-linkcard-settings.php:621
|
1183 |
msgid "Blue"
|
1184 |
msgstr "ブルー"
|
1185 |
|
1186 |
+
#: ../lib/pz-linkcard-settings.php:622
|
1187 |
msgid "Dark"
|
1188 |
msgstr "ダーク"
|
1189 |
|
1190 |
+
#: ../lib/pz-linkcard-settings.php:624
|
1191 |
msgid ""
|
1192 |
"It is recommended that you leave the card height blank when using this "
|
1193 |
"setting."
|
1194 |
msgstr "この設定を使用するときはカードの高さを空欄にすることをお勧めします。"
|
1195 |
|
1196 |
+
#: ../lib/pz-linkcard-settings.php:628
|
1197 |
msgid "Display SNS Count"
|
1198 |
msgstr "シェア数を表示する"
|
1199 |
|
1200 |
+
#: ../lib/pz-linkcard-settings.php:632
|
1201 |
msgid "Bihind Title"
|
1202 |
msgstr "タイトルの後ろ"
|
1203 |
|
1204 |
+
#: ../lib/pz-linkcard-settings.php:635
|
1205 |
msgid "Twitter"
|
1206 |
msgstr "ツイッター"
|
1207 |
|
1208 |
+
#: ../lib/pz-linkcard-settings.php:636
|
1209 |
msgid "Facebook"
|
1210 |
msgstr "フェイスブック(シェア数)"
|
1211 |
|
1212 |
+
#: ../lib/pz-linkcard-settings.php:637
|
1213 |
msgid "Hatena"
|
1214 |
msgstr "はてなブックマーク"
|
1215 |
|
1216 |
+
#: ../lib/pz-linkcard-settings.php:638
|
1217 |
msgid "Pocket"
|
1218 |
msgstr "Pocket"
|
1219 |
|
1220 |
+
#: ../lib/pz-linkcard-settings.php:645
|
1221 |
msgid "Letter Settings"
|
1222 |
msgstr "文字の設定"
|
1223 |
|
1224 |
+
#: ../lib/pz-linkcard-settings.php:654 ../lib/pz-linkcard-settings.php:784
|
1225 |
msgid "Added Information"
|
1226 |
msgstr "付加情報"
|
1227 |
|
1228 |
+
#: ../lib/pz-linkcard-settings.php:663
|
1229 |
msgid "Color"
|
1230 |
msgstr "色"
|
1231 |
|
1232 |
+
#: ../lib/pz-linkcard-settings.php:670
|
1233 |
msgid "Outline"
|
1234 |
msgstr "縁取り"
|
1235 |
|
1236 |
+
#: ../lib/pz-linkcard-settings.php:676
|
1237 |
msgid "Size"
|
1238 |
msgstr "大きさ"
|
1239 |
|
1240 |
+
#: ../lib/pz-linkcard-settings.php:685
|
1241 |
msgid "Length"
|
1242 |
msgstr "桁数"
|
1243 |
|
1244 |
+
#: ../lib/pz-linkcard-settings.php:689
|
1245 |
msgid "No wrap"
|
1246 |
msgstr "折り返さない"
|
1247 |
|
1248 |
+
#: ../lib/pz-linkcard-settings.php:697
|
1249 |
msgid "Resize"
|
1250 |
msgstr "サイズの変更"
|
1251 |
|
1252 |
+
#: ../lib/pz-linkcard-settings.php:698
|
1253 |
msgid "Adjust thumbnail and letter size according to width."
|
1254 |
msgstr "画面幅に合わせて文字とサムネイルの大きさを調整します。"
|
1255 |
|
1256 |
+
#: ../lib/pz-linkcard-settings.php:705
|
1257 |
msgid "External Link Settings"
|
1258 |
msgstr "外部リンクの設定"
|
1259 |
|
1260 |
+
#: ../lib/pz-linkcard-settings.php:706
|
1261 |
msgid "Internal Link Settings"
|
1262 |
msgstr "内部リンクの設定"
|
1263 |
|
1264 |
+
#: ../lib/pz-linkcard-settings.php:707
|
1265 |
msgid "Same Page Link Settings"
|
1266 |
msgstr "同ページへのリンクの設定"
|
1267 |
|
1268 |
+
#: ../lib/pz-linkcard-settings.php:715
|
1269 |
msgid "Border Color"
|
1270 |
msgstr "枠線の色"
|
1271 |
|
1272 |
+
#: ../lib/pz-linkcard-settings.php:722
|
1273 |
msgid "Background Color"
|
1274 |
msgstr "背景色"
|
1275 |
|
1276 |
+
#: ../lib/pz-linkcard-settings.php:729
|
1277 |
msgid "Background Image"
|
1278 |
msgstr "背景画像"
|
1279 |
|
1280 |
+
#: ../lib/pz-linkcard-settings.php:737 ../lib/pz-linkcard-settings.php:754
|
1281 |
+
#: ../lib/pz-linkcard-settings.php:771 ../lib/pz-linkcard-settings.php:791
|
1282 |
+
#: ../lib/pz-linkcard-settings.php:802 ../lib/pz-linkcard-settings.php:818
|
1283 |
+
#: ../lib/pz-linkcard-settings.php:848
|
1284 |
msgid "It is common with setting Internal-link"
|
1285 |
msgstr "内部リンク用の設定が使用されます"
|
1286 |
|
1287 |
+
#: ../lib/pz-linkcard-settings.php:742 ../lib/pz-linkcard-settings.php:776
|
1288 |
msgid "Direct"
|
1289 |
msgstr "直接取得する"
|
1290 |
|
1291 |
+
#: ../lib/pz-linkcard-settings.php:743 ../lib/pz-linkcard-settings.php:777
|
1292 |
msgid "Use WebAPI"
|
1293 |
msgstr "WebAPIを利用する"
|
1294 |
|
1295 |
+
#: ../lib/pz-linkcard-settings.php:744 ../lib/pz-linkcard-settings.php:778
|
1296 |
msgid "Use WebAPI ,if can not direct"
|
1297 |
msgstr "直接取得できない場合、WebAPIを利用する"
|
1298 |
|
1299 |
+
#: ../lib/pz-linkcard-settings.php:750
|
1300 |
msgid "Thumbnail Size"
|
1301 |
msgstr "サムネイルの大きさ"
|
1302 |
|
1303 |
+
#: ../lib/pz-linkcard-settings.php:758
|
1304 |
msgid "Thumbnail (150px)"
|
1305 |
msgstr "小サイズ(150ピクセル)"
|
1306 |
|
1307 |
+
#: ../lib/pz-linkcard-settings.php:759
|
1308 |
msgid "Medium (300px)"
|
1309 |
msgstr "中サイズ(300ピクセル)"
|
1310 |
|
1311 |
+
#: ../lib/pz-linkcard-settings.php:760
|
1312 |
msgid "Large (1024px)"
|
1313 |
msgstr "大サイズ(1024ピクセル)"
|
1314 |
|
1315 |
+
#: ../lib/pz-linkcard-settings.php:761
|
1316 |
msgid "Full size"
|
1317 |
msgstr "そのままのサイズ"
|
1318 |
|
1319 |
+
#: ../lib/pz-linkcard-settings.php:767
|
1320 |
msgid "Site Icon"
|
1321 |
msgstr "サイトアイコン"
|
1322 |
|
1323 |
+
#: ../lib/pz-linkcard-settings.php:788
|
1324 |
msgid "Text of More Button"
|
1325 |
msgstr "続きを読むボタンの文字"
|
1326 |
|
1327 |
+
#: ../lib/pz-linkcard-settings.php:798
|
1328 |
msgid "Open New Window/Tab"
|
1329 |
msgstr "新しいタブで開く"
|
1330 |
|
1331 |
+
#: ../lib/pz-linkcard-settings.php:807
|
1332 |
msgid "All client"
|
1333 |
msgstr "すべての端末"
|
1334 |
|
1335 |
+
#: ../lib/pz-linkcard-settings.php:808
|
1336 |
msgid "Other than mobile"
|
1337 |
msgstr "モバイル端末以外"
|
1338 |
|
1339 |
+
#: ../lib/pz-linkcard-settings.php:814
|
1340 |
msgid "Get Contents"
|
1341 |
msgstr "記事取得方法"
|
1342 |
|
1343 |
+
#: ../lib/pz-linkcard-settings.php:822
|
1344 |
msgid "Always extract from the latest articles"
|
1345 |
msgstr "常に最新の記事内容から抜粋文を作成する"
|
1346 |
|
1347 |
+
#: ../lib/pz-linkcard-settings.php:823
|
1348 |
msgid "If \"excerpt\" is set, give priority to it"
|
1349 |
msgstr "「抜粋」を設定していたら、それを優先"
|
1350 |
|
1351 |
+
#: ../lib/pz-linkcard-settings.php:824
|
1352 |
msgid "Always display the contents registered in card management"
|
1353 |
msgstr "常にカード管理に登録された内容を表示"
|
1354 |
|
1355 |
+
#: ../lib/pz-linkcard-settings.php:831
|
1356 |
msgid "Set NoFollow"
|
1357 |
msgstr "リンク先を信用しない"
|
1358 |
|
1359 |
+
#: ../lib/pz-linkcard-settings.php:832
|
1360 |
msgid "In the case of an external site, it puts the \"nofollow\"."
|
1361 |
msgstr ""
|
1362 |
"アンカータグに rel=\"nofollow\" を追加して、検索エンジンの評価から外すことを"
|
1363 |
"宣言します。"
|
1364 |
|
1365 |
+
#: ../lib/pz-linkcard-settings.php:835
|
1366 |
msgid "Set NoOpener"
|
1367 |
msgstr "リンク元タブを保護する"
|
1368 |
|
1369 |
+
#: ../lib/pz-linkcard-settings.php:836
|
1370 |
msgid "In the case of an external site, it puts the \"noopener\"."
|
1371 |
msgstr ""
|
1372 |
"アンカータグに rel=\"noopener\" を追加して、リンク先サイトからリンク元タブに"
|
1373 |
"対する操作を無効にします。"
|
1374 |
|
1375 |
+
#: ../lib/pz-linkcard-settings.php:839
|
1376 |
msgid "Use HatenaBlogCard"
|
1377 |
msgstr "はてなブログカードを使用する"
|
1378 |
|
1379 |
+
#: ../lib/pz-linkcard-settings.php:840
|
1380 |
msgid "External links will use Always HatenaBlogCard."
|
1381 |
msgstr "外部リンクは「はてなブログカード」を利用する。"
|
1382 |
|
1383 |
+
#: ../lib/pz-linkcard-settings.php:844
|
1384 |
msgid "Retry Get PID"
|
1385 |
msgstr "記事URLの再取得"
|
1386 |
|
1387 |
+
#: ../lib/pz-linkcard-settings.php:850
|
1388 |
msgid "When the `Post ID` can not be acquired, it is acquired again."
|
1389 |
msgstr "記事IDが取得できなかった場合に、リダイレクト先のURLを取得する。"
|
1390 |
|
1391 |
+
#: ../lib/pz-linkcard-settings.php:861
|
1392 |
msgid "Link Check Settings"
|
1393 |
msgstr "リンク先の検査の設定"
|
1394 |
|
1395 |
+
#: ../lib/pz-linkcard-settings.php:864
|
1396 |
msgid "Relative URL"
|
1397 |
msgstr "相対指定URL"
|
1398 |
|
1399 |
+
#: ../lib/pz-linkcard-settings.php:865
|
1400 |
msgid "For relative-specified URLs, complement the site URL."
|
1401 |
msgstr "相対指定のURLの場合、サイトURLを補完します。"
|
1402 |
|
1403 |
+
#: ../lib/pz-linkcard-settings.php:868
|
1404 |
msgid "Do Not Link at Error"
|
1405 |
msgstr "エラーのときリンクしない"
|
1406 |
|
1407 |
+
#: ../lib/pz-linkcard-settings.php:869
|
1408 |
msgid "When access status is \"403\", \"404\", \"410\", unlink."
|
1409 |
msgstr "ステータスが「403」「404」「410」のときにリンクを無効にします。"
|
1410 |
|
1411 |
+
#: ../lib/pz-linkcard-settings.php:872
|
1412 |
msgid "Disable SSL Verification"
|
1413 |
msgstr "SSL検証を無効"
|
1414 |
|
1415 |
+
#: ../lib/pz-linkcard-settings.php:873
|
1416 |
msgid "Try setting if the contents of the SSL site can not be acquired."
|
1417 |
msgstr ""
|
1418 |
"SSLサイトのタイトルや記事内容が取得できない場合に設定することで取得できる可能"
|
1419 |
"性があります。"
|
1420 |
|
1421 |
+
#: ../lib/pz-linkcard-settings.php:876
|
1422 |
msgid "Follow Location"
|
1423 |
msgstr "リダイレクト処理する"
|
1424 |
|
1425 |
+
#: ../lib/pz-linkcard-settings.php:877
|
1426 |
msgid "Track when the link destination is redirected."
|
1427 |
msgstr "リンク先がリダイレクトされている場合に追跡します。"
|
1428 |
|
1429 |
+
#: ../lib/pz-linkcard-settings.php:880
|
1430 |
msgid "Set Referer"
|
1431 |
msgstr "リファラーの通知"
|
1432 |
|
1433 |
+
#: ../lib/pz-linkcard-settings.php:881
|
1434 |
msgid "Notify the article URL to the link destination."
|
1435 |
msgstr "リンク先に記事のURLを知らせます。"
|
1436 |
|
1437 |
+
#: ../lib/pz-linkcard-settings.php:884
|
1438 |
msgid "Use User-Agent"
|
1439 |
msgstr "ユーザーエージェントの通知"
|
1440 |
|
1441 |
+
#: ../lib/pz-linkcard-settings.php:886
|
1442 |
msgid "Notify using Pz-LinkCard to the link destination."
|
1443 |
msgstr "リンク先にPz-LinkCardを使用していることを知らせます。"
|
1444 |
|
1445 |
+
#: ../lib/pz-linkcard-settings.php:891
|
1446 |
msgid "Broken Link Checker"
|
1447 |
msgstr "リンク切れチェッカー"
|
1448 |
|
1449 |
+
#: ../lib/pz-linkcard-settings.php:892
|
1450 |
msgid "Alive confirmation of the link destination."
|
1451 |
msgstr "リンク先がアクセスできるか定期的に確認します。"
|
1452 |
|
1453 |
+
#: ../lib/pz-linkcard-settings.php:895
|
1454 |
msgid "Broken Link Count"
|
1455 |
msgstr "リンク切れカウント"
|
1456 |
|
1457 |
+
#: ../lib/pz-linkcard-settings.php:896
|
1458 |
msgid "The number of broken links is displayed next to the submenu."
|
1459 |
msgstr "サブメニューの横にリンク切れの件数を表示します。"
|
1460 |
|
1461 |
+
#: ../lib/pz-linkcard-settings.php:902
|
1462 |
msgid "Editor Settings"
|
1463 |
msgstr "エディターの設定"
|
1464 |
|
1465 |
+
#: ../lib/pz-linkcard-settings.php:905
|
1466 |
msgid "Convert from Text Link"
|
1467 |
msgstr "テキストリンク行を変換"
|
1468 |
|
1469 |
+
#: ../lib/pz-linkcard-settings.php:906
|
1470 |
msgid "Convert lines with text link only to Linkcard."
|
1471 |
msgstr "テキストリンクだけの行をリンクカードに変換する。"
|
1472 |
|
1473 |
+
#: ../lib/pz-linkcard-settings.php:909
|
1474 |
msgid "Convert from URL"
|
1475 |
msgstr "URL行を変換"
|
1476 |
|
1477 |
+
#: ../lib/pz-linkcard-settings.php:910
|
1478 |
msgid "Convert lines with URL only to Linkcard."
|
1479 |
msgstr "URLだけの行をリンクカードに変換する。"
|
1480 |
|
1481 |
+
#: ../lib/pz-linkcard-settings.php:913
|
1482 |
msgid "External Link Only"
|
1483 |
msgstr "外部リンクのみ"
|
1484 |
|
1485 |
+
#: ../lib/pz-linkcard-settings.php:914
|
1486 |
msgid "Convert only external links."
|
1487 |
msgstr "外部リンクのときのみ変換します。"
|
1488 |
|
1489 |
+
#: ../lib/pz-linkcard-settings.php:918
|
1490 |
msgid "Do Shortcode"
|
1491 |
msgstr "ショートコード 実行"
|
1492 |
|
1493 |
+
#: ../lib/pz-linkcard-settings.php:919
|
1494 |
msgid "Force shortcode development."
|
1495 |
msgstr "リンク・URLから変換したときにショートコードを強制的に実行する。"
|
1496 |
|
1497 |
+
#: ../lib/pz-linkcard-settings.php:923
|
1498 |
msgid "Add Insert Button"
|
1499 |
msgstr "リンクカードボタンを追加"
|
1500 |
|
1501 |
+
#: ../lib/pz-linkcard-settings.php:924
|
1502 |
msgid "Add insert button to visual editor."
|
1503 |
msgstr ""
|
1504 |
"ビジュアル エディタにリンクカードのショートコードを挿入するボタンを追加する。"
|
1505 |
|
1506 |
+
#: ../lib/pz-linkcard-settings.php:927
|
1507 |
msgid "Add Quick Tag"
|
1508 |
msgstr "クイックタグを追加"
|
1509 |
|
1510 |
+
#: ../lib/pz-linkcard-settings.php:928
|
1511 |
msgid "Add quick tag button to text editor."
|
1512 |
msgstr ""
|
1513 |
"テキスト エディタにリンクカードのショートコードを挿入するクイックタグを追加す"
|
1514 |
"る。"
|
1515 |
|
1516 |
+
#: ../lib/pz-linkcard-settings.php:932
|
1517 |
msgid "ShortCode 1"
|
1518 |
msgstr "ショートコード 1"
|
1519 |
|
1520 |
+
#: ../lib/pz-linkcard-settings.php:933 ../lib/pz-linkcard-settings.php:950
|
1521 |
+
#: ../lib/pz-linkcard-settings.php:954 ../lib/pz-linkcard-settings.php:958
|
1522 |
msgid "Case-sensitive"
|
1523 |
msgstr "大文字と小文字を区別します"
|
1524 |
|
1525 |
+
#: ../lib/pz-linkcard-settings.php:936
|
1526 |
msgid "Use InLineText"
|
1527 |
msgstr "ショートコードで囲んだ文字列を使用する"
|
1528 |
|
1529 |
+
#: ../lib/pz-linkcard-settings.php:940
|
1530 |
msgid "No use"
|
1531 |
msgstr "使用しない"
|
1532 |
|
1533 |
+
#: ../lib/pz-linkcard-settings.php:941
|
1534 |
msgid "Use to excerpt"
|
1535 |
msgstr "抜粋文として使用"
|
1536 |
|
1537 |
+
#: ../lib/pz-linkcard-settings.php:942
|
1538 |
msgid "Use to title"
|
1539 |
msgstr "タイトルとして使用"
|
1540 |
|
1541 |
+
#: ../lib/pz-linkcard-settings.php:945
|
1542 |
msgid "This setting applies only to the Shortcode1"
|
1543 |
msgstr "ショートコード1にのみ適用されます"
|
1544 |
|
1545 |
+
#: ../lib/pz-linkcard-settings.php:949
|
1546 |
msgid "ShortCode 2"
|
1547 |
msgstr "ショートコード 2"
|
1548 |
|
1549 |
+
#: ../lib/pz-linkcard-settings.php:953
|
1550 |
msgid "ShortCode 3"
|
1551 |
msgstr "ショートコード 3"
|
1552 |
|
1553 |
+
#: ../lib/pz-linkcard-settings.php:957
|
1554 |
msgid "ShortCode 4"
|
1555 |
msgstr "ショートコード 4"
|
1556 |
|
1557 |
+
#: ../lib/pz-linkcard-settings.php:961
|
1558 |
msgid "Parameters"
|
1559 |
msgstr "パラメータ"
|
1560 |
|
1561 |
+
#: ../lib/pz-linkcard-settings.php:963 ../lib/pz-linkcard-settings.php:1182
|
1562 |
+
#: ../lib/pz-linkcard-settings.php:1191
|
1563 |
msgid "ex1."
|
1564 |
msgstr "例1."
|
1565 |
|
1566 |
+
#: ../lib/pz-linkcard-settings.php:963
|
1567 |
msgid "Specify only URL parameters."
|
1568 |
msgstr "URLパラメーターだけを指定。"
|
1569 |
|
1570 |
+
#: ../lib/pz-linkcard-settings.php:964 ../lib/pz-linkcard-settings.php:1183
|
1571 |
+
#: ../lib/pz-linkcard-settings.php:1192
|
1572 |
msgid "ex2."
|
1573 |
msgstr "例2."
|
1574 |
|
1575 |
+
#: ../lib/pz-linkcard-settings.php:964
|
1576 |
msgid "Specify URL and title parameters."
|
1577 |
msgstr "URLパラメーターとtitleパラメーターを指定。"
|
1578 |
|
1579 |
+
#: ../lib/pz-linkcard-settings.php:965
|
1580 |
msgid "ex3."
|
1581 |
msgstr "例3."
|
1582 |
|
1583 |
+
#: ../lib/pz-linkcard-settings.php:965
|
1584 |
msgid "Specify URL, title and content parameters."
|
1585 |
msgstr "URLパラメーターとtitleパラメーターとcontentパラメーターを指定。"
|
1586 |
|
1587 |
+
#: ../lib/pz-linkcard-settings.php:966
|
1588 |
msgid ""
|
1589 |
"For any shortcode you can change the title and excerpt with `title` "
|
1590 |
"parameter and `content` parameter"
|
1592 |
"どのショートコードでも title パラメータと content パラメータでタイトルと抜粋"
|
1593 |
"文を指定できます"
|
1594 |
|
1595 |
+
#: ../lib/pz-linkcard-settings.php:973
|
1596 |
msgid "Multi Site Information"
|
1597 |
msgstr "マルチサイト情報"
|
1598 |
|
1599 |
+
#: ../lib/pz-linkcard-settings.php:974 ../lib/pz-linkcard-settings.php:1017
|
1600 |
msgid "Cannot be changed"
|
1601 |
msgstr "設定は変更できません"
|
1602 |
|
1603 |
+
#: ../lib/pz-linkcard-settings.php:980
|
1604 |
msgid "Disabled"
|
1605 |
msgstr "無効化"
|
1606 |
|
1607 |
+
#: ../lib/pz-linkcard-settings.php:981
|
1608 |
msgid "Enabled"
|
1609 |
msgstr "有効化"
|
1610 |
|
1611 |
+
#: ../lib/pz-linkcard-settings.php:986
|
1612 |
msgid "Type"
|
1613 |
msgstr "種類"
|
1614 |
|
1615 |
+
#: ../lib/pz-linkcard-settings.php:989
|
1616 |
msgid "Subdirectories"
|
1617 |
msgstr "サブディレクトリー型"
|
1618 |
|
1619 |
+
#: ../lib/pz-linkcard-settings.php:990
|
1620 |
msgid "Subdomains"
|
1621 |
msgstr "サブドメイン型"
|
1622 |
|
1623 |
+
#: ../lib/pz-linkcard-settings.php:995
|
1624 |
msgid "Current Blog ID"
|
1625 |
msgstr "現在のブログID"
|
1626 |
|
1627 |
+
#: ../lib/pz-linkcard-settings.php:1001
|
1628 |
msgid "Number of Sites"
|
1629 |
msgstr "サイトの数"
|
1630 |
|
1631 |
+
#: ../lib/pz-linkcard-settings.php:1011
|
1632 |
msgid "Link to SubSite"
|
1633 |
msgstr "サブサイトへのリンク"
|
1634 |
|
1635 |
+
#: ../lib/pz-linkcard-settings.php:1012
|
1636 |
msgid "Treat links to subsites as external links."
|
1637 |
msgstr "サブサイトへのリンクを外部リンクとして扱う。"
|
1638 |
|
1639 |
+
#: ../lib/pz-linkcard-settings.php:1016
|
1640 |
msgid "Site List"
|
1641 |
msgstr "サイトの一覧"
|
1642 |
|
1643 |
+
#: ../lib/pz-linkcard-settings.php:1022
|
1644 |
msgid "Current"
|
1645 |
msgstr "現在"
|
1646 |
|
1647 |
+
#: ../lib/pz-linkcard-settings.php:1023
|
1648 |
msgid "Blog ID"
|
1649 |
msgstr "ブログID"
|
1650 |
|
1651 |
+
#: ../lib/pz-linkcard-settings.php:1044
|
1652 |
msgid "Senior Settings"
|
1653 |
msgstr "上級者向けの設定"
|
1654 |
|
1655 |
+
#: ../lib/pz-linkcard-settings.php:1047
|
1656 |
msgid "Trailing Slash"
|
1657 |
msgstr "末尾のスラッシュの除去"
|
1658 |
|
1659 |
+
#: ../lib/pz-linkcard-settings.php:1050
|
1660 |
msgid "As it"
|
1661 |
msgstr "そのまま"
|
1662 |
|
1663 |
+
#: ../lib/pz-linkcard-settings.php:1051
|
1664 |
msgid "When only domain name, remove"
|
1665 |
msgstr "ドメイン名のみのときだけ削除"
|
1666 |
|
1667 |
+
#: ../lib/pz-linkcard-settings.php:1052
|
1668 |
msgid "Always remove"
|
1669 |
msgstr "常に削除"
|
1670 |
|
1671 |
+
#: ../lib/pz-linkcard-settings.php:1057
|
1672 |
msgid "Class ID to be Added (for PC)"
|
1673 |
msgstr "PCのときに追加するクラス名"
|
1674 |
|
1675 |
+
#: ../lib/pz-linkcard-settings.php:1061
|
1676 |
msgid "Class ID to be Added (for Mobile)"
|
1677 |
msgstr "モバイルのときに追加するクラス名"
|
1678 |
|
1679 |
+
#: ../lib/pz-linkcard-settings.php:1066
|
1680 |
msgid "Compress"
|
1681 |
msgstr "圧縮"
|
1682 |
|
1683 |
+
#: ../lib/pz-linkcard-settings.php:1067
|
1684 |
msgid "Compress CSS and JavaScript to improve access speed."
|
1685 |
msgstr "CSSやJavaScriptを圧縮してアクセス速度を向上させます"
|
1686 |
|
1687 |
+
#: ../lib/pz-linkcard-settings.php:1071
|
1688 |
+
msgid "Google AMP determination"
|
1689 |
+
msgstr "Goole AMPの判定"
|
1690 |
|
1691 |
+
#: ../lib/pz-linkcard-settings.php:1073
|
1692 |
+
msgid ""
|
1693 |
+
"Simplified display if the URL ends with \"/amp\", \"/amp/\", or \"/?amp=1\"."
|
1694 |
msgstr ""
|
1695 |
+
"URLの末尾が「/amp」、「/amp/」または「/?amp=1\"」の場合、簡易表示する。"
|
|
|
1696 |
|
1697 |
+
#: ../lib/pz-linkcard-settings.php:1078
|
1698 |
msgid "Hide URL Error"
|
1699 |
msgstr "URLエラーを非表示"
|
1700 |
|
1701 |
+
#: ../lib/pz-linkcard-settings.php:1079
|
1702 |
msgid "Do not display an error on the admin page."
|
1703 |
msgstr "管理画面にURLエラーを表示しません。"
|
1704 |
|
1705 |
+
#: ../lib/pz-linkcard-settings.php:1083
|
1706 |
msgid "Extension Settings"
|
1707 |
msgstr "拡張機能の設定"
|
1708 |
|
1709 |
+
#: ../lib/pz-linkcard-settings.php:1087
|
1710 |
msgid "Display the file menu on the card management screen."
|
1711 |
msgstr "カード管理画面へ「ファイルメニュー」を表示します。"
|
1712 |
|
1713 |
+
#: ../lib/pz-linkcard-settings.php:1090
|
1714 |
msgid "Initialize Tab"
|
1715 |
msgstr "初期化タブ"
|
1716 |
|
1717 |
+
#: ../lib/pz-linkcard-settings.php:1091
|
1718 |
msgid "Display the initialize tab on the settings screen."
|
1719 |
msgstr "設定画面に「初期化」タブを表示します。"
|
1720 |
|
1721 |
+
#: ../lib/pz-linkcard-settings.php:1094
|
1722 |
msgid "Survey Mode"
|
1723 |
msgstr "調査モード"
|
1724 |
|
1725 |
+
#: ../lib/pz-linkcard-settings.php:1095
|
1726 |
msgid "Outputs some events and setting information to a log file."
|
1727 |
msgstr "いくつかのイベントや設定情報等をログファイルへ出力します。"
|
1728 |
|
1729 |
+
#: ../lib/pz-linkcard-settings.php:1098
|
1730 |
msgid "Administrator Mode"
|
1731 |
msgstr "管理者モード"
|
1732 |
|
1733 |
+
#: ../lib/pz-linkcard-settings.php:1099
|
1734 |
msgid ""
|
1735 |
"Display information that is not normally needed or open special settings."
|
1736 |
msgstr "通常は必要のない情報を表示したり、特別な設定を開放します。"
|
1737 |
|
1738 |
+
#: ../lib/pz-linkcard-settings.php:1102
|
1739 |
msgid "Develop Mode"
|
1740 |
msgstr "開発モード"
|
1741 |
|
1742 |
+
#: ../lib/pz-linkcard-settings.php:1109
|
1743 |
msgid "Stylesheet Settings"
|
1744 |
msgstr "スタイルシートの設定"
|
1745 |
|
1746 |
+
#: ../lib/pz-linkcard-settings.php:1112
|
1747 |
msgid "Stylesheet URL"
|
1748 |
msgstr "CSSファイルのURL"
|
1749 |
|
1750 |
+
#: ../lib/pz-linkcard-settings.php:1115 ../lib/pz-linkcard-settings.php:1146
|
1751 |
msgid "Schemes (http and https) are omitted."
|
1752 |
msgstr "スキーム( http: や https: )は省略されています。"
|
1753 |
|
1754 |
+
#: ../lib/pz-linkcard-settings.php:1119
|
1755 |
msgid "Stylesheet URL to Add"
|
1756 |
msgstr "追加するCSSのURL"
|
1757 |
|
1758 |
+
#: ../lib/pz-linkcard-settings.php:1120 ../lib/pz-linkcard-settings.php:1181
|
1759 |
+
#: ../lib/pz-linkcard-settings.php:1190
|
1760 |
msgid "ex."
|
1761 |
msgstr "例."
|
1762 |
|
1763 |
+
#: ../lib/pz-linkcard-settings.php:1123
|
1764 |
msgid "Stylesheet Text to Add"
|
1765 |
msgstr "追加するCSSのテキスト"
|
1766 |
|
1767 |
+
#: ../lib/pz-linkcard-settings.php:1127
|
1768 |
msgid "Stylesheet Version"
|
1769 |
msgstr "CSSの補助バージョン"
|
1770 |
|
1771 |
+
#: ../lib/pz-linkcard-settings.php:1131
|
1772 |
msgid "Stylesheet File"
|
1773 |
msgstr "CSSファイルのパス"
|
1774 |
|
1775 |
+
#: ../lib/pz-linkcard-settings.php:1135
|
1776 |
msgid "Stylesheet Templete File"
|
1777 |
msgstr "ひな型CSSファイルのパス"
|
1778 |
|
1779 |
+
#: ../lib/pz-linkcard-settings.php:1140
|
1780 |
msgid "Image Settings"
|
1781 |
msgstr "画像の設定"
|
1782 |
|
1783 |
+
#: ../lib/pz-linkcard-settings.php:1143
|
1784 |
msgid "Image Cache URL"
|
1785 |
msgstr "キャッシュ画像を保存するディレクトリのURL"
|
1786 |
|
1787 |
+
#: ../lib/pz-linkcard-settings.php:1147 ../lib/pz-linkcard-settings.php:1164
|
1788 |
msgid "Used"
|
1789 |
msgstr "使用中"
|
1790 |
|
1791 |
+
#: ../lib/pz-linkcard-settings.php:1147 ../lib/pz-linkcard-settings.php:1164
|
1792 |
msgid ": "
|
1793 |
msgstr ":"
|
1794 |
|
1795 |
+
#: ../lib/pz-linkcard-settings.php:1151
|
1796 |
msgid "Image Cache Directory"
|
1797 |
msgstr "キャッシュ画像を保存するディレクトリ"
|
1798 |
|
1799 |
+
#: ../lib/pz-linkcard-settings.php:1158
|
1800 |
msgid "Survey Settings"
|
1801 |
msgstr "調査モードの設定"
|
1802 |
|
1803 |
+
#: ../lib/pz-linkcard-settings.php:1161
|
1804 |
msgid "Log URL"
|
1805 |
msgstr "ログ格納ディレクトリーURL"
|
1806 |
|
1807 |
+
#: ../lib/pz-linkcard-settings.php:1168
|
1808 |
msgid "Log Directory"
|
1809 |
msgstr "ログ格納ディレクトリー"
|
1810 |
|
1811 |
+
#: ../lib/pz-linkcard-settings.php:1175
|
1812 |
msgid "Web-API Settings"
|
1813 |
msgstr "WebAPIの設定"
|
1814 |
|
1815 |
+
#: ../lib/pz-linkcard-settings.php:1178
|
1816 |
msgid "Site Icon API"
|
1817 |
msgstr "サイトアイコン取得API"
|
1818 |
|
1819 |
+
#: ../lib/pz-linkcard-settings.php:1181
|
1820 |
msgid "%DOMAIN% replace to domain name."
|
1821 |
msgstr "%DOMAIN% と記述するとドメイン名に置き換わります。"
|
1822 |
|
1823 |
+
#: ../lib/pz-linkcard-settings.php:1181
|
1824 |
msgid "%DOMAIN_URL% replace to domain URL."
|
1825 |
msgstr "%DOMAIN_URL% と記述するとドメインのURLに置き換わります。"
|
1826 |
|
1827 |
+
#: ../lib/pz-linkcard-settings.php:1181 ../lib/pz-linkcard-settings.php:1190
|
1828 |
msgid "%URL% replace to URL."
|
1829 |
msgstr "%URL% と記述すると記事のURLに置き換わります。"
|
1830 |
|
1831 |
+
#: ../lib/pz-linkcard-settings.php:1187
|
1832 |
msgid "Thumbnail API"
|
1833 |
msgstr "サムネイル画像取得API"
|
1834 |
|
1835 |
+
#: ../lib/pz-linkcard-settings.php:1202
|
1836 |
msgid "Initialize Settings"
|
1837 |
msgstr "設定の初期化"
|
1838 |
|
1839 |
+
#: ../lib/pz-linkcard-settings.php:1205
|
1840 |
msgid "Reset the \"Settings\" to the initial value."
|
1841 |
msgstr "すべての設定を初期状態に戻します。"
|
1842 |
|
1843 |
+
#: ../lib/pz-linkcard-settings.php:1209
|
1844 |
msgid "Initialize Operation"
|
1845 |
msgstr "プラグインの再起動"
|
1846 |
|
1847 |
+
#: ../lib/pz-linkcard-settings.php:1212
|
1848 |
msgid "Perform initial setup."
|
1849 |
msgstr "プラグインの初期化処理を実行します。"
|
1850 |
|
1851 |
+
#: ../lib/pz-linkcard-settings.php:1212
|
1852 |
msgid "\"Settings\" will not be initialized."
|
1853 |
msgstr "設定値は初期化しません。"
|
1854 |
|
1855 |
+
#: ../lib/pz-linkcard-settings.php:1216
|
1856 |
msgid "Initialization Exception"
|
1857 |
msgstr "初期化時の例外"
|
1858 |
|
1859 |
+
#: ../lib/pz-linkcard-settings.php:1217
|
1860 |
msgid "Do not initialize \"Survey Mode\" and \"Administrator Mode\"."
|
1861 |
msgstr "初期化時に調査モードと管理者モードを解除しません。"
|
1862 |
|
1863 |
+
#: ../lib/pz-linkcard-settings.php:1223
|
1864 |
msgid "Notice"
|
1865 |
msgstr "通知"
|
1866 |
|
1867 |
+
#: ../lib/pz-linkcard-settings.php:1224
|
1868 |
msgid "Do not use normally as it can be set to incapacitate."
|
1869 |
msgstr "動作無能に陥る設定が可能なため、通常は使用しないでください。"
|
1870 |
|
1871 |
+
#: ../lib/pz-linkcard-style.php:639
|
1872 |
msgid "Succeeded in saving the Stylesheet."
|
1873 |
msgstr "スタイルシートの生成に成功しました。"
|
1874 |
|
1875 |
+
#: ../lib/pz-linkcard-style.php:641
|
1876 |
msgid "Failed to save Stylesheet."
|
1877 |
msgstr "スタイルシートの生成に失敗しました。"
|
1878 |
|
1879 |
+
#: ../lib/pz-linkcard-style.php:644
|
1880 |
msgid "Failed to call the Stylesheet template."
|
1881 |
msgstr "スタイルシートのひな型の呼び出しに失敗しました。"
|
1882 |
|
1883 |
+
#: ../pz-linkcard.php:430
|
1884 |
msgid "-"
|
1885 |
msgstr "-"
|
1886 |
|
1887 |
+
#: ../pz-linkcard.php:430
|
1888 |
msgid "Incorrect URL specification."
|
1889 |
msgstr "URLの記述に誤りがあります。"
|
1890 |
|
1891 |
+
#: ../pz-linkcard.php:841
|
1892 |
#, php-format
|
1893 |
msgid "%d tweet"
|
1894 |
msgstr "%d Tweet"
|
1895 |
|
1896 |
+
#: ../pz-linkcard.php:841
|
1897 |
#, php-format
|
1898 |
msgid "%d tweets"
|
1899 |
msgstr "%d Tweets"
|
1900 |
|
1901 |
+
#: ../pz-linkcard.php:844
|
1902 |
#, php-format
|
1903 |
msgid "%d share"
|
1904 |
msgstr "%d Share"
|
1905 |
|
1906 |
+
#: ../pz-linkcard.php:844
|
1907 |
#, php-format
|
1908 |
msgid "%d shares"
|
1909 |
msgstr "%d Shares"
|
1910 |
|
1911 |
+
#: ../pz-linkcard.php:847
|
1912 |
#, php-format
|
1913 |
msgid "%d user"
|
1914 |
msgstr "%d User"
|
1915 |
|
1916 |
+
#: ../pz-linkcard.php:847
|
1917 |
#, php-format
|
1918 |
msgid "%d users"
|
1919 |
msgstr "%d Users"
|
1920 |
|
1921 |
+
#: ../pz-linkcard.php:850
|
1922 |
#, php-format
|
1923 |
msgid "%d pocket"
|
1924 |
msgstr "%d Pocket"
|
1925 |
|
1926 |
+
#: ../pz-linkcard.php:850
|
1927 |
#, php-format
|
1928 |
msgid "%d pockets"
|
1929 |
msgstr "%d Pockets"
|
1930 |
|
1931 |
+
#: ../pz-linkcard.php:1592 ../pz-linkcard.php:1596
|
1932 |
msgid "Category"
|
1933 |
msgstr "カテゴリー"
|
1934 |
|
1935 |
+
#: ../pz-linkcard.php:1592 ../pz-linkcard.php:1596 ../pz-linkcard.php:1609
|
1936 |
+
#: ../pz-linkcard.php:1613
|
1937 |
msgid "‘"
|
1938 |
msgstr "「"
|
1939 |
|
1940 |
+
#: ../pz-linkcard.php:1592 ../pz-linkcard.php:1596 ../pz-linkcard.php:1609
|
1941 |
+
#: ../pz-linkcard.php:1613
|
1942 |
msgid "’"
|
1943 |
msgstr "」"
|
1944 |
|
1945 |
+
#: ../pz-linkcard.php:1593 ../pz-linkcard.php:1610
|
1946 |
msgid "Count"
|
1947 |
msgstr "件数"
|
1948 |
|
1949 |
+
#: ../pz-linkcard.php:1597 ../pz-linkcard.php:1614
|
1950 |
msgid "Not Found"
|
1951 |
msgstr "見つかりません"
|
1952 |
|
1953 |
+
#: ../pz-linkcard.php:1609 ../pz-linkcard.php:1613
|
1954 |
msgid "Tag"
|
1955 |
msgstr "タグ"
|
1956 |
|
1957 |
+
#: ../pz-linkcard.php:2273
|
1958 |
msgid "Linkcard"
|
1959 |
msgstr "リンクカード"
|
1960 |
|
1961 |
+
#: ../pz-linkcard.php:2273
|
1962 |
msgid "Make Linkcard"
|
1963 |
msgstr "リンクカードのショートコードを挿入する"
|
1964 |
|
1965 |
+
#: ../pz-linkcard.php:2284
|
1966 |
msgid "Invalid URL parameter in "
|
1967 |
msgstr "URLパラメーターの指定が無効です→"
|
1968 |
|
1969 |
+
#: ../pz-linkcard.php:2284
|
1970 |
msgid ""
|
1971 |
"You can cancel this message from <a href=\"./options-general.php?page=pz-"
|
1972 |
"linkcard-settings\">the setting screen</a>."
|
1974 |
"このメッセージの表示は<a href=\"./options-general.php?page=pz-linkcard-"
|
1975 |
"settings\">設定画面</a>から解除できます。"
|
1976 |
|
1977 |
+
#: ../pz-linkcard.php:2305
|
1978 |
msgid "Pz LkC Cache"
|
1979 |
msgstr "Pz カード管理"
|
1980 |
|
1981 |
+
#: ../pz-linkcard.php:2306
|
1982 |
msgid "Pz LinkCard"
|
1983 |
msgstr "Pz カード設定"
|
1984 |
|
1985 |
+
#: ../pz-linkcard.php:2333
|
1986 |
+
msgid "Manager"
|
1987 |
msgstr "管理"
|
1988 |
|
1989 |
+
#~ msgid "Simplified display if header is not processed."
|
1990 |
+
#~ msgstr "ヘッダー処理がされなかった場合、簡易表示する。"
|
1991 |
+
|
1992 |
+
#~ msgid "Google AMP URL"
|
1993 |
+
#~ msgstr "URLによるAMP判断"
|
1994 |
+
|
1995 |
+
#~ msgid "If the URL is AMP, display simple."
|
1996 |
+
#~ msgstr ""
|
1997 |
+
#~ "アクセスされたURLの末尾が「/amp」「/amp/」「/?amp=1」の場合、簡易表示に切"
|
1998 |
+
#~ "り替える。"
|
1999 |
+
|
2000 |
#~ msgid "Run Log"
|
2001 |
#~ msgstr "実行ログ"
|
2002 |
|
languages/pz-linkcard.pot
CHANGED
@@ -5,19 +5,18 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Pz-LinkCard\n"
|
7 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
-
"PO-Revision-Date:
|
|
|
10 |
"Language-Team: poporon\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"
|
|
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"Last-Translator: \n"
|
20 |
-
"Language: en\n"
|
21 |
"X-Poedit-SearchPath-0: ..\n"
|
22 |
|
23 |
#: ../lib/pz-linkcard-cacheman-edit.php:13
|
@@ -39,14 +38,13 @@ msgid "Cancel"
|
|
39 |
msgstr ""
|
40 |
|
41 |
#: ../lib/pz-linkcard-cacheman-edit.php:20
|
42 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
43 |
msgid "ID"
|
44 |
msgstr ""
|
45 |
|
46 |
#: ../lib/pz-linkcard-cacheman-edit.php:24
|
47 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
48 |
-
#: ../lib/pz-linkcard-settings.php:
|
49 |
-
#: ../pz-linkcard.php:425
|
50 |
msgid "URL"
|
51 |
msgstr ""
|
52 |
|
@@ -62,14 +60,13 @@ msgstr ""
|
|
62 |
msgid "Scheme"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../lib/pz-linkcard-cacheman-edit.php:40
|
66 |
-
#: ../lib/pz-linkcard-settings.php:1021
|
67 |
msgid "Site Name"
|
68 |
msgstr ""
|
69 |
|
70 |
#: ../lib/pz-linkcard-cacheman-edit.php:44
|
71 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
72 |
-
#: ../lib/pz-linkcard-settings.php:
|
73 |
msgid "Domain"
|
74 |
msgstr ""
|
75 |
|
@@ -78,8 +75,7 @@ msgid "Registration Title"
|
|
78 |
msgstr ""
|
79 |
|
80 |
#: ../lib/pz-linkcard-cacheman-edit.php:56
|
81 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
82 |
-
#: ../lib/pz-linkcard-settings.php:646
|
83 |
msgid "Title"
|
84 |
msgstr ""
|
85 |
|
@@ -92,8 +88,7 @@ msgid "Registration Excerpt"
|
|
92 |
msgstr ""
|
93 |
|
94 |
#: ../lib/pz-linkcard-cacheman-edit.php:68
|
95 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
96 |
-
#: ../lib/pz-linkcard-settings.php:648
|
97 |
msgid "Excerpt"
|
98 |
msgstr ""
|
99 |
|
@@ -130,7 +125,7 @@ msgid "The result code is inaccessible but can actually be accessed."
|
|
130 |
msgstr ""
|
131 |
|
132 |
#: ../lib/pz-linkcard-cacheman-edit.php:101
|
133 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
134 |
msgid "Post ID"
|
135 |
msgstr ""
|
136 |
|
@@ -139,22 +134,22 @@ msgid "SNS"
|
|
139 |
msgstr ""
|
140 |
|
141 |
#: ../lib/pz-linkcard-cacheman-edit.php:114
|
142 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
143 |
msgid "Tw"
|
144 |
msgstr ""
|
145 |
|
146 |
#: ../lib/pz-linkcard-cacheman-edit.php:115
|
147 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
148 |
msgid "fb"
|
149 |
msgstr ""
|
150 |
|
151 |
#: ../lib/pz-linkcard-cacheman-edit.php:116
|
152 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
153 |
msgid "B!"
|
154 |
msgstr ""
|
155 |
|
156 |
#: ../lib/pz-linkcard-cacheman-edit.php:117
|
157 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
158 |
msgid "Po"
|
159 |
msgstr ""
|
160 |
|
@@ -196,168 +191,168 @@ msgstr ""
|
|
196 |
msgid "Update Date"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
200 |
#: ../lib/pz-linkcard-settings-admin.php:86
|
201 |
msgid "▼"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
205 |
msgid "▲"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
209 |
msgid "All"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
213 |
msgid "Internal"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
217 |
msgid "External"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
221 |
msgid "Modify"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
225 |
msgid "Unlink"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
|
|
|
|
|
|
|
|
229 |
msgid "🔍️"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
233 |
msgid "Search"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
237 |
msgid "Select"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
241 |
msgid "Renew Cache"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
245 |
-
#: ../lib/pz-linkcard-cacheman.php:160
|
246 |
msgid "Renew Thumbnail Image"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
250 |
-
#: ../lib/pz-linkcard-cacheman.php:139
|
251 |
msgid "Renew SNS Count"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
255 |
msgid "Renew Post ID"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
259 |
msgid "Check Status"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
263 |
msgid "Delete from Cache"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
267 |
msgid "Submit"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
271 |
msgid "All Domain"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
275 |
msgid "Refine Search"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
279 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
280 |
#, php-format
|
281 |
msgid "%d item"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
285 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
286 |
#, php-format
|
287 |
msgid "%d items"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
291 |
msgid "Charset"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
295 |
msgid "Regist<br>date"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
299 |
msgid "Update<br>date"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
303 |
msgid "SNS<br>check<br>date"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
307 |
msgid "Alive<br>check<br>date"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
311 |
msgid "Result<br>code"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
315 |
msgid "(last )"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
319 |
msgid "The latest HTTP code is in error, but ignore it."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
323 |
msgid "⚠️"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
327 |
-
msgid ""
|
328 |
-
"The latest HTTP code is in error. You can change it to ignore the error "
|
329 |
-
"from the edit screen."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
333 |
msgid "⛔️"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
337 |
msgid "Ignore"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
341 |
msgid "Edit"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
345 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
346 |
#: ../lib/pz-linkcard-settings-admin.php:52
|
347 |
-
#: ../lib/pz-linkcard-settings.php:
|
348 |
msgid "Are you sure?"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
352 |
msgid "Renew"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../lib/pz-linkcard-cacheman-list.php:
|
356 |
msgid "Delete"
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../lib/pz-linkcard-cacheman.php:3 ../lib/pz-linkcard-settings.php:3
|
360 |
-
#: ../lib/pz-linkcard-settings.php:
|
361 |
msgid "Currently working in a development environment."
|
362 |
msgstr ""
|
363 |
|
@@ -365,12 +360,12 @@ msgstr ""
|
|
365 |
msgid "🗃️"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../lib/pz-linkcard-cacheman.php:4 ../pz-linkcard.php:
|
369 |
msgid "LinkCard Cache Manager"
|
370 |
msgstr ""
|
371 |
|
372 |
#: ../lib/pz-linkcard-cacheman.php:4 ../lib/pz-linkcard-settings.php:4
|
373 |
-
#: ../lib/pz-linkcard-settings.php:
|
374 |
msgid "Help"
|
375 |
msgstr ""
|
376 |
|
@@ -378,102 +373,102 @@ msgstr ""
|
|
378 |
msgid "⚙️"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: ../lib/pz-linkcard-cacheman.php:5 ../pz-linkcard.php:
|
382 |
msgid "Settings"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
386 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
387 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
388 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
389 |
msgid "Not selected"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
393 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
394 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
395 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
396 |
msgid "..."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
400 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
401 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
402 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
403 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
404 |
#: ../lib/pz-linkcard-file-import.php:100
|
405 |
-
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:
|
406 |
-
#: ../lib/pz-linkcard-settings.php:
|
407 |
-
#: ../lib/pz-linkcard-settings.php:
|
408 |
-
#: ../pz-linkcard.php:
|
409 |
msgid "("
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
413 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
414 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
415 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
416 |
msgid "Success:"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
420 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
421 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
422 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
423 |
#: ../lib/pz-linkcard-file-import.php:102
|
424 |
msgid "Skip:"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
428 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
429 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
430 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
431 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
432 |
#: ../lib/pz-linkcard-file-import.php:100
|
433 |
-
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:
|
434 |
-
#: ../lib/pz-linkcard-settings.php:
|
435 |
-
#: ../lib/pz-linkcard-settings.php:
|
436 |
-
#: ../pz-linkcard.php:
|
437 |
msgid ")"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
441 |
msgid "Delete Cache"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
445 |
msgid "Update Cache"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
449 |
msgid "Renew Post Id"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
453 |
msgid "Alive check"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
457 |
msgid "Upload Import File"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
461 |
msgid "Clear all cache"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
465 |
msgid "📄️"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
469 |
msgid "File Menu"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
473 |
msgid "Import"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../lib/pz-linkcard-cacheman.php:
|
477 |
msgid "Export"
|
478 |
msgstr ""
|
479 |
|
@@ -536,7 +531,7 @@ msgid "Information"
|
|
536 |
msgstr ""
|
537 |
|
538 |
#: ../lib/pz-linkcard-settings-admin.php:64
|
539 |
-
#: ../lib/pz-linkcard-settings.php:
|
540 |
msgid "Table Name"
|
541 |
msgstr ""
|
542 |
|
@@ -554,7 +549,7 @@ msgid "View all schedules."
|
|
554 |
msgstr ""
|
555 |
|
556 |
#: ../lib/pz-linkcard-settings-admin.php:84
|
557 |
-
#: ../lib/pz-linkcard-settings.php:
|
558 |
msgid "Run"
|
559 |
msgstr ""
|
560 |
|
@@ -570,7 +565,7 @@ msgstr ""
|
|
570 |
msgid "Schedule"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../lib/pz-linkcard-settings.php:4 ../pz-linkcard.php:
|
574 |
msgid "LinkCard Settings"
|
575 |
msgstr ""
|
576 |
|
@@ -578,1393 +573,1389 @@ msgstr ""
|
|
578 |
msgid "Cache Manager"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../lib/pz-linkcard-settings.php:
|
582 |
msgid "Succeeded in initialize the settings."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../lib/pz-linkcard-settings.php:
|
586 |
msgid "Failed to initialize the settings."
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../lib/pz-linkcard-settings.php:
|
590 |
msgid "Succeeded in saving the settings."
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../lib/pz-linkcard-settings.php:
|
594 |
msgid "The settings have not changed."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../lib/pz-linkcard-settings.php:
|
598 |
msgid "Version"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../lib/pz-linkcard-settings.php:
|
602 |
msgid "Error"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../lib/pz-linkcard-settings.php:
|
606 |
msgid "Basic"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../lib/pz-linkcard-settings.php:
|
610 |
msgid "Position"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../lib/pz-linkcard-settings.php:
|
614 |
msgid "Display"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../lib/pz-linkcard-settings.php:
|
618 |
msgid "Letter"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../lib/pz-linkcard-settings.php:
|
622 |
msgid "External Link"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../lib/pz-linkcard-settings.php:
|
626 |
msgid "Internal Link"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../lib/pz-linkcard-settings.php:
|
630 |
msgid "Same Page Link"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../lib/pz-linkcard-settings.php:
|
634 |
msgid "Link Check"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../lib/pz-linkcard-settings.php:
|
638 |
msgid "Editor"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../lib/pz-linkcard-settings.php:
|
642 |
msgid "Multi Site"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../lib/pz-linkcard-settings.php:
|
646 |
msgid "Admin"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../lib/pz-linkcard-settings.php:
|
650 |
msgid "Advanced"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../lib/pz-linkcard-settings.php:
|
654 |
msgid "etc."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../lib/pz-linkcard-settings.php:
|
658 |
msgid "Initialize"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../lib/pz-linkcard-settings.php:
|
662 |
msgid "Error Settings"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../lib/pz-linkcard-settings.php:
|
666 |
msgid "Error Reset"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../lib/pz-linkcard-settings.php:
|
670 |
msgid "Reset"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../lib/pz-linkcard-settings.php:
|
674 |
msgid "Cancel the error condition."
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../lib/pz-linkcard-settings.php:
|
678 |
msgid "Uncheck to cancel the error condition."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../lib/pz-linkcard-settings.php:
|
682 |
msgid "Post URL"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../lib/pz-linkcard-settings.php:
|
686 |
msgid "Occurrence Time"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../lib/pz-linkcard-settings.php:
|
690 |
msgid "Basic Settings"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../lib/pz-linkcard-settings.php:
|
694 |
msgid "Easy format"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../lib/pz-linkcard-settings.php:
|
698 |
-
#: ../lib/pz-linkcard-settings.php:
|
699 |
-
#: ../lib/pz-linkcard-settings.php:
|
700 |
-
#: ../lib/pz-linkcard-settings.php:
|
701 |
-
#: ../lib/pz-linkcard-settings.php:
|
702 |
-
#: ../lib/pz-linkcard-settings.php:
|
703 |
msgid "None"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: ../lib/pz-linkcard-settings.php:
|
707 |
msgid "Pz-LkC Default"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../lib/pz-linkcard-settings.php:
|
711 |
msgid "Normal"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: ../lib/pz-linkcard-settings.php:
|
715 |
msgid "Compact"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: ../lib/pz-linkcard-settings.php:
|
719 |
msgid "Simple"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: ../lib/pz-linkcard-settings.php:
|
723 |
msgid "Headline"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../lib/pz-linkcard-settings.php:
|
727 |
msgid "Cellophane tape \"center\""
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../lib/pz-linkcard-settings.php:
|
731 |
msgid "Cellophane tape \"Top corner\""
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../lib/pz-linkcard-settings.php:
|
735 |
msgid "Cellophane tape \"long\""
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../lib/pz-linkcard-settings.php:
|
739 |
msgid "Cellophane tape \"digonal\""
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: ../lib/pz-linkcard-settings.php:
|
743 |
msgid "Cellophane tape and curling"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: ../lib/pz-linkcard-settings.php:
|
747 |
msgid "Curling paper"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: ../lib/pz-linkcard-settings.php:
|
751 |
msgid "Stitch blue & red"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: ../lib/pz-linkcard-settings.php:
|
755 |
msgid "Stitch green & yellow"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../lib/pz-linkcard-settings.php:
|
759 |
msgid "Square"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../lib/pz-linkcard-settings.php:
|
763 |
msgid "Enclose"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../lib/pz-linkcard-settings.php:
|
767 |
msgid "Reflection"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../lib/pz-linkcard-settings.php:
|
771 |
msgid "Infomation orange"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: ../lib/pz-linkcard-settings.php:
|
775 |
msgid "Neutral bluegreen"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: ../lib/pz-linkcard-settings.php:
|
779 |
msgid "Enlightened green"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../lib/pz-linkcard-settings.php:
|
783 |
msgid "Resistance blue"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: ../lib/pz-linkcard-settings.php:
|
787 |
msgid "Windows XP"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../lib/pz-linkcard-settings.php:
|
791 |
msgid "Windows 95"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../lib/pz-linkcard-settings.php:
|
795 |
msgid "Slanting"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../lib/pz-linkcard-settings.php:
|
799 |
msgid "3D Rotate"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../lib/pz-linkcard-settings.php:
|
803 |
msgid "Pushpin"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../lib/pz-linkcard-settings.php:
|
807 |
-
#: ../lib/pz-linkcard-settings.php:
|
808 |
-
#: ../pz-linkcard.php:
|
809 |
msgid "*"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: ../lib/pz-linkcard-settings.php:
|
813 |
msgid "It applies over other formatting settings."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: ../lib/pz-linkcard-settings.php:
|
817 |
msgid "Saved Datetime"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: ../lib/pz-linkcard-settings.php:
|
821 |
msgid "Plugin Information"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: ../lib/pz-linkcard-settings.php:
|
825 |
msgid "How to"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../lib/pz-linkcard-settings.php:
|
829 |
msgid "Japanese Only"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: ../lib/pz-linkcard-settings.php:
|
|
|
|
|
|
|
|
|
833 |
msgid "Plugin Name"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../lib/pz-linkcard-settings.php:
|
837 |
msgid "Plugin Abbreviation"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../lib/pz-linkcard-settings.php:
|
841 |
msgid "Plugin Version"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: ../lib/pz-linkcard-settings.php:
|
845 |
msgid "Author's Site"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: ../lib/pz-linkcard-settings.php:
|
849 |
msgid "Plugin Path"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: ../lib/pz-linkcard-settings.php:
|
853 |
msgid "Author Name"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: ../lib/pz-linkcard-settings.php:
|
857 |
msgid "Author Twitter"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: ../lib/pz-linkcard-settings.php:
|
861 |
msgid "Popozure."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: ../lib/pz-linkcard-settings.php:
|
865 |
msgid "Poporon's PC Daily Diary"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: ../lib/pz-linkcard-settings.php:
|
869 |
msgid "When in Trouble"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../lib/pz-linkcard-settings.php:
|
873 |
msgid "Twitter Account"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: ../lib/pz-linkcard-settings.php:
|
877 |
msgid "Donation"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../lib/pz-linkcard-settings.php:
|
881 |
msgid "Wishlist"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: ../lib/pz-linkcard-settings.php:
|
885 |
msgid "Changelog"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../lib/pz-linkcard-settings.php:
|
889 |
msgid "Position Settings"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: ../lib/pz-linkcard-settings.php:
|
893 |
msgid "Link the Whole"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: ../lib/pz-linkcard-settings.php:
|
897 |
msgid "Enclose the entire card at anchor."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: ../lib/pz-linkcard-settings.php:
|
901 |
msgid "Margin"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: ../lib/pz-linkcard-settings.php:
|
905 |
msgid "Margin top"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: ../lib/pz-linkcard-settings.php:327 ../lib/pz-linkcard-settings.php:343
|
909 |
-
#: ../lib/pz-linkcard-settings.php:359 ../lib/pz-linkcard-settings.php:375
|
910 |
-
#: ../lib/pz-linkcard-settings.php:389 ../lib/pz-linkcard-settings.php:411
|
911 |
-
#: ../lib/pz-linkcard-settings.php:429 ../lib/pz-linkcard-settings.php:447
|
912 |
-
msgid "Not defined"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: ../lib/pz-linkcard-settings.php:328 ../lib/pz-linkcard-settings.php:344
|
916 |
-
#: ../lib/pz-linkcard-settings.php:360 ../lib/pz-linkcard-settings.php:376
|
917 |
-
#: ../lib/pz-linkcard-settings.php:390 ../lib/pz-linkcard-settings.php:412
|
918 |
-
#: ../lib/pz-linkcard-settings.php:430 ../lib/pz-linkcard-settings.php:448
|
919 |
-
msgid "0"
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
-
#: ../lib/pz-linkcard-settings.php:329 ../lib/pz-linkcard-settings.php:345
|
923 |
-
#: ../lib/pz-linkcard-settings.php:361 ../lib/pz-linkcard-settings.php:377
|
924 |
-
#: ../lib/pz-linkcard-settings.php:391 ../lib/pz-linkcard-settings.php:413
|
925 |
-
#: ../lib/pz-linkcard-settings.php:431 ../lib/pz-linkcard-settings.php:449
|
926 |
-
#: ../lib/pz-linkcard-settings.php:565
|
927 |
-
msgid "4px"
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
#: ../lib/pz-linkcard-settings.php:330 ../lib/pz-linkcard-settings.php:346
|
931 |
#: ../lib/pz-linkcard-settings.php:362 ../lib/pz-linkcard-settings.php:378
|
932 |
#: ../lib/pz-linkcard-settings.php:392 ../lib/pz-linkcard-settings.php:414
|
933 |
#: ../lib/pz-linkcard-settings.php:432 ../lib/pz-linkcard-settings.php:450
|
934 |
-
|
935 |
-
msgid "8px"
|
936 |
msgstr ""
|
937 |
|
938 |
#: ../lib/pz-linkcard-settings.php:331 ../lib/pz-linkcard-settings.php:347
|
939 |
#: ../lib/pz-linkcard-settings.php:363 ../lib/pz-linkcard-settings.php:379
|
940 |
#: ../lib/pz-linkcard-settings.php:393 ../lib/pz-linkcard-settings.php:415
|
941 |
#: ../lib/pz-linkcard-settings.php:433 ../lib/pz-linkcard-settings.php:451
|
942 |
-
|
943 |
-
msgid "16px"
|
944 |
msgstr ""
|
945 |
|
946 |
#: ../lib/pz-linkcard-settings.php:332 ../lib/pz-linkcard-settings.php:348
|
947 |
-
#: ../lib/pz-linkcard-settings.php:
|
948 |
-
#: ../lib/pz-linkcard-settings.php:
|
949 |
#: ../lib/pz-linkcard-settings.php:434 ../lib/pz-linkcard-settings.php:452
|
950 |
#: ../lib/pz-linkcard-settings.php:568
|
951 |
-
msgid "
|
952 |
msgstr ""
|
953 |
|
954 |
#: ../lib/pz-linkcard-settings.php:333 ../lib/pz-linkcard-settings.php:349
|
955 |
-
#: ../lib/pz-linkcard-settings.php:
|
956 |
-
#: ../lib/pz-linkcard-settings.php:
|
957 |
#: ../lib/pz-linkcard-settings.php:435 ../lib/pz-linkcard-settings.php:453
|
958 |
-
|
|
|
959 |
msgstr ""
|
960 |
|
961 |
#: ../lib/pz-linkcard-settings.php:334 ../lib/pz-linkcard-settings.php:350
|
962 |
-
#: ../lib/pz-linkcard-settings.php:
|
963 |
-
#: ../lib/pz-linkcard-settings.php:
|
964 |
#: ../lib/pz-linkcard-settings.php:436 ../lib/pz-linkcard-settings.php:454
|
965 |
-
#: ../lib/pz-linkcard-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
966 |
msgid "64px"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: ../lib/pz-linkcard-settings.php:
|
970 |
msgid "Margin left"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: ../lib/pz-linkcard-settings.php:
|
974 |
-
#: ../lib/pz-linkcard-settings.php:
|
975 |
msgid "24px"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../lib/pz-linkcard-settings.php:
|
979 |
msgid "Margin right"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../lib/pz-linkcard-settings.php:
|
983 |
-
#: ../lib/pz-linkcard-settings.php:
|
984 |
msgid "Width"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../lib/pz-linkcard-settings.php:
|
988 |
-
#: ../lib/pz-linkcard-settings.php:
|
989 |
msgid "Height"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: ../lib/pz-linkcard-settings.php:
|
993 |
msgid "Margin bottom"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: ../lib/pz-linkcard-settings.php:
|
997 |
msgid "Centering"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../lib/pz-linkcard-settings.php:
|
1001 |
msgid "Use Blockquote Tag"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: ../lib/pz-linkcard-settings.php:
|
1005 |
msgid "Without using DIV tag, and use BLOCKQUOTE tag."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: ../lib/pz-linkcard-settings.php:
|
1009 |
-
#: ../lib/pz-linkcard-settings.php:
|
1010 |
-
#: ../lib/pz-linkcard-settings.php:
|
1011 |
-
#: ../lib/pz-linkcard-settings.php:
|
1012 |
msgid "(Deprecated)"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../lib/pz-linkcard-settings.php:
|
1016 |
msgid "Display Settings"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../lib/pz-linkcard-settings.php:
|
1020 |
msgid "Layout"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../lib/pz-linkcard-settings.php:
|
1024 |
msgid "Site Information"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../lib/pz-linkcard-settings.php:
|
1028 |
msgid "Upper Side"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../lib/pz-linkcard-settings.php:
|
1032 |
msgid "Above the Title"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../lib/pz-linkcard-settings.php:
|
1036 |
msgid "Under Side"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../lib/pz-linkcard-settings.php:
|
1040 |
msgid "Use SiteName"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../lib/pz-linkcard-settings.php:
|
1044 |
msgid "For internal links, display the posting date"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../lib/pz-linkcard-settings.php:
|
1048 |
msgid "Thumbnail"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../lib/pz-linkcard-settings.php:
|
1052 |
msgid "Right Side"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../lib/pz-linkcard-settings.php:
|
1056 |
msgid "Left Side"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../lib/pz-linkcard-settings.php:
|
1060 |
msgid "Shadow"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../lib/pz-linkcard-settings.php:
|
1064 |
msgid "Make additional information heading display"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../lib/pz-linkcard-settings.php:
|
1068 |
msgid "Turn off the anchor text underlining"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../lib/pz-linkcard-settings.php:
|
1072 |
msgid "Separator line"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../lib/pz-linkcard-settings.php:
|
1076 |
msgid "Display URL"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../lib/pz-linkcard-settings.php:
|
1080 |
msgid "Under Title"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../lib/pz-linkcard-settings.php:
|
1084 |
msgid "Bihind Site-Info"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../lib/pz-linkcard-settings.php:
|
1088 |
msgid "Hollow content area"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: ../lib/pz-linkcard-settings.php:
|
1092 |
msgid "Display excerpt"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: ../lib/pz-linkcard-settings.php:
|
1096 |
msgid "Hollow"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: ../lib/pz-linkcard-settings.php:
|
1100 |
msgid "Round a square"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: ../lib/pz-linkcard-settings.php:
|
1104 |
msgid "When the mouse is on"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: ../lib/pz-linkcard-settings.php:
|
1108 |
msgid "Lighten"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: ../lib/pz-linkcard-settings.php:
|
1112 |
msgid "Hover (light)"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: ../lib/pz-linkcard-settings.php:
|
1116 |
msgid "Hover (dark)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: ../lib/pz-linkcard-settings.php:
|
1120 |
msgid "Radius"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: ../lib/pz-linkcard-settings.php:
|
1124 |
msgid "Border"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../lib/pz-linkcard-settings.php:
|
1128 |
msgid "Solid"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../lib/pz-linkcard-settings.php:
|
1132 |
msgid "Dotted"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: ../lib/pz-linkcard-settings.php:
|
1136 |
msgid "Dashed"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../lib/pz-linkcard-settings.php:
|
1140 |
msgid "Double"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../lib/pz-linkcard-settings.php:
|
1144 |
msgid "Groove"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../lib/pz-linkcard-settings.php:
|
1148 |
msgid "Ridge"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../lib/pz-linkcard-settings.php:
|
1152 |
msgid "Inset"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../lib/pz-linkcard-settings.php:
|
1156 |
msgid "Outset"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: ../lib/pz-linkcard-settings.php:
|
1160 |
msgid "Reset Image Style"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: ../lib/pz-linkcard-settings.php:
|
1164 |
-
msgid ""
|
1165 |
-
"When unnecessary frame is displayed on the image, you can improve it by case"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: ../lib/pz-linkcard-settings.php:
|
1169 |
msgid "More Button"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: ../lib/pz-linkcard-settings.php:
|
1173 |
msgid "Text link"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: ../lib/pz-linkcard-settings.php:
|
1177 |
msgid "Simple button"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: ../lib/pz-linkcard-settings.php:
|
1181 |
msgid "Blue"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: ../lib/pz-linkcard-settings.php:
|
1185 |
msgid "Dark"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: ../lib/pz-linkcard-settings.php:
|
1189 |
-
msgid ""
|
1190 |
-
"It is recommended that you leave the card height blank when using this "
|
1191 |
-
"setting."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../lib/pz-linkcard-settings.php:
|
1195 |
msgid "Display SNS Count"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../lib/pz-linkcard-settings.php:
|
1199 |
msgid "Bihind Title"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: ../lib/pz-linkcard-settings.php:
|
1203 |
msgid "Twitter"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../lib/pz-linkcard-settings.php:
|
1207 |
msgid "Facebook"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../lib/pz-linkcard-settings.php:
|
1211 |
msgid "Hatena"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: ../lib/pz-linkcard-settings.php:
|
1215 |
msgid "Pocket"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: ../lib/pz-linkcard-settings.php:
|
1219 |
msgid "Letter Settings"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: ../lib/pz-linkcard-settings.php:
|
1223 |
msgid "Added Information"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: ../lib/pz-linkcard-settings.php:
|
1227 |
msgid "Color"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: ../lib/pz-linkcard-settings.php:
|
1231 |
msgid "Outline"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: ../lib/pz-linkcard-settings.php:
|
1235 |
msgid "Size"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../lib/pz-linkcard-settings.php:
|
1239 |
msgid "Length"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: ../lib/pz-linkcard-settings.php:
|
1243 |
msgid "No wrap"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: ../lib/pz-linkcard-settings.php:
|
1247 |
msgid "Resize"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: ../lib/pz-linkcard-settings.php:
|
1251 |
msgid "Adjust thumbnail and letter size according to width."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: ../lib/pz-linkcard-settings.php:
|
1255 |
msgid "External Link Settings"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: ../lib/pz-linkcard-settings.php:
|
1259 |
msgid "Internal Link Settings"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: ../lib/pz-linkcard-settings.php:
|
1263 |
msgid "Same Page Link Settings"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: ../lib/pz-linkcard-settings.php:
|
1267 |
msgid "Border Color"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: ../lib/pz-linkcard-settings.php:
|
1271 |
msgid "Background Color"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: ../lib/pz-linkcard-settings.php:
|
1275 |
msgid "Background Image"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: ../lib/pz-linkcard-settings.php:
|
1279 |
-
#: ../lib/pz-linkcard-settings.php:
|
1280 |
-
#: ../lib/pz-linkcard-settings.php:
|
1281 |
-
#: ../lib/pz-linkcard-settings.php:
|
1282 |
msgid "It is common with setting Internal-link"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: ../lib/pz-linkcard-settings.php:
|
1286 |
msgid "Direct"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: ../lib/pz-linkcard-settings.php:
|
1290 |
msgid "Use WebAPI"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: ../lib/pz-linkcard-settings.php:
|
1294 |
msgid "Use WebAPI ,if can not direct"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: ../lib/pz-linkcard-settings.php:
|
1298 |
msgid "Thumbnail Size"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: ../lib/pz-linkcard-settings.php:
|
1302 |
msgid "Thumbnail (150px)"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: ../lib/pz-linkcard-settings.php:
|
1306 |
msgid "Medium (300px)"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: ../lib/pz-linkcard-settings.php:
|
1310 |
msgid "Large (1024px)"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: ../lib/pz-linkcard-settings.php:
|
1314 |
msgid "Full size"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: ../lib/pz-linkcard-settings.php:
|
1318 |
msgid "Site Icon"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: ../lib/pz-linkcard-settings.php:
|
1322 |
msgid "Text of More Button"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: ../lib/pz-linkcard-settings.php:
|
1326 |
msgid "Open New Window/Tab"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: ../lib/pz-linkcard-settings.php:
|
1330 |
msgid "All client"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: ../lib/pz-linkcard-settings.php:
|
1334 |
msgid "Other than mobile"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: ../lib/pz-linkcard-settings.php:
|
1338 |
msgid "Get Contents"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../lib/pz-linkcard-settings.php:
|
1342 |
msgid "Always extract from the latest articles"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: ../lib/pz-linkcard-settings.php:
|
1346 |
msgid "If \"excerpt\" is set, give priority to it"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: ../lib/pz-linkcard-settings.php:
|
1350 |
msgid "Always display the contents registered in card management"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: ../lib/pz-linkcard-settings.php:
|
1354 |
msgid "Set NoFollow"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../lib/pz-linkcard-settings.php:
|
1358 |
msgid "In the case of an external site, it puts the \"nofollow\"."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../lib/pz-linkcard-settings.php:
|
1362 |
msgid "Set NoOpener"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../lib/pz-linkcard-settings.php:
|
1366 |
msgid "In the case of an external site, it puts the \"noopener\"."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: ../lib/pz-linkcard-settings.php:
|
1370 |
msgid "Use HatenaBlogCard"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: ../lib/pz-linkcard-settings.php:
|
1374 |
msgid "External links will use Always HatenaBlogCard."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: ../lib/pz-linkcard-settings.php:
|
1378 |
msgid "Retry Get PID"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: ../lib/pz-linkcard-settings.php:
|
1382 |
msgid "When the `Post ID` can not be acquired, it is acquired again."
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: ../lib/pz-linkcard-settings.php:
|
1386 |
msgid "Link Check Settings"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: ../lib/pz-linkcard-settings.php:
|
1390 |
msgid "Relative URL"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: ../lib/pz-linkcard-settings.php:
|
1394 |
msgid "For relative-specified URLs, complement the site URL."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../lib/pz-linkcard-settings.php:
|
1398 |
msgid "Do Not Link at Error"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: ../lib/pz-linkcard-settings.php:
|
1402 |
msgid "When access status is \"403\", \"404\", \"410\", unlink."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../lib/pz-linkcard-settings.php:
|
1406 |
msgid "Disable SSL Verification"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: ../lib/pz-linkcard-settings.php:
|
1410 |
msgid "Try setting if the contents of the SSL site can not be acquired."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../lib/pz-linkcard-settings.php:
|
1414 |
msgid "Follow Location"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: ../lib/pz-linkcard-settings.php:
|
1418 |
msgid "Track when the link destination is redirected."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: ../lib/pz-linkcard-settings.php:
|
1422 |
msgid "Set Referer"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: ../lib/pz-linkcard-settings.php:
|
1426 |
msgid "Notify the article URL to the link destination."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: ../lib/pz-linkcard-settings.php:
|
1430 |
msgid "Use User-Agent"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: ../lib/pz-linkcard-settings.php:
|
1434 |
msgid "Notify using Pz-LinkCard to the link destination."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: ../lib/pz-linkcard-settings.php:
|
1438 |
msgid "Broken Link Checker"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: ../lib/pz-linkcard-settings.php:
|
1442 |
msgid "Alive confirmation of the link destination."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: ../lib/pz-linkcard-settings.php:
|
1446 |
msgid "Broken Link Count"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: ../lib/pz-linkcard-settings.php:
|
1450 |
msgid "The number of broken links is displayed next to the submenu."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: ../lib/pz-linkcard-settings.php:
|
1454 |
msgid "Editor Settings"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: ../lib/pz-linkcard-settings.php:
|
1458 |
msgid "Convert from Text Link"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: ../lib/pz-linkcard-settings.php:
|
1462 |
msgid "Convert lines with text link only to Linkcard."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: ../lib/pz-linkcard-settings.php:
|
1466 |
msgid "Convert from URL"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: ../lib/pz-linkcard-settings.php:
|
1470 |
msgid "Convert lines with URL only to Linkcard."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: ../lib/pz-linkcard-settings.php:
|
1474 |
msgid "External Link Only"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: ../lib/pz-linkcard-settings.php:
|
1478 |
msgid "Convert only external links."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: ../lib/pz-linkcard-settings.php:
|
1482 |
msgid "Do Shortcode"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: ../lib/pz-linkcard-settings.php:
|
1486 |
msgid "Force shortcode development."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: ../lib/pz-linkcard-settings.php:
|
1490 |
msgid "Add Insert Button"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: ../lib/pz-linkcard-settings.php:
|
1494 |
msgid "Add insert button to visual editor."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: ../lib/pz-linkcard-settings.php:
|
1498 |
msgid "Add Quick Tag"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: ../lib/pz-linkcard-settings.php:
|
1502 |
msgid "Add quick tag button to text editor."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: ../lib/pz-linkcard-settings.php:
|
1506 |
msgid "ShortCode 1"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: ../lib/pz-linkcard-settings.php:
|
1510 |
-
#: ../lib/pz-linkcard-settings.php:
|
1511 |
msgid "Case-sensitive"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: ../lib/pz-linkcard-settings.php:
|
1515 |
msgid "Use InLineText"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: ../lib/pz-linkcard-settings.php:
|
1519 |
msgid "No use"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: ../lib/pz-linkcard-settings.php:
|
1523 |
msgid "Use to excerpt"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: ../lib/pz-linkcard-settings.php:
|
1527 |
msgid "Use to title"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: ../lib/pz-linkcard-settings.php:
|
1531 |
msgid "This setting applies only to the Shortcode1"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: ../lib/pz-linkcard-settings.php:
|
1535 |
msgid "ShortCode 2"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: ../lib/pz-linkcard-settings.php:
|
1539 |
msgid "ShortCode 3"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: ../lib/pz-linkcard-settings.php:
|
1543 |
msgid "ShortCode 4"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: ../lib/pz-linkcard-settings.php:
|
1547 |
msgid "Parameters"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: ../lib/pz-linkcard-settings.php:
|
1551 |
-
#: ../lib/pz-linkcard-settings.php:
|
1552 |
msgid "ex1."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: ../lib/pz-linkcard-settings.php:
|
1556 |
msgid "Specify only URL parameters."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: ../lib/pz-linkcard-settings.php:
|
1560 |
-
#: ../lib/pz-linkcard-settings.php:
|
1561 |
msgid "ex2."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: ../lib/pz-linkcard-settings.php:
|
1565 |
msgid "Specify URL and title parameters."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: ../lib/pz-linkcard-settings.php:
|
1569 |
msgid "ex3."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: ../lib/pz-linkcard-settings.php:
|
1573 |
msgid "Specify URL, title and content parameters."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: ../lib/pz-linkcard-settings.php:
|
1577 |
-
msgid ""
|
1578 |
-
"For any shortcode you can change the title and excerpt with `title` "
|
1579 |
-
"parameter and `content` parameter"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: ../lib/pz-linkcard-settings.php:
|
1583 |
msgid "Multi Site Information"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: ../lib/pz-linkcard-settings.php:
|
1587 |
msgid "Cannot be changed"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: ../lib/pz-linkcard-settings.php:
|
1591 |
msgid "Disabled"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: ../lib/pz-linkcard-settings.php:
|
1595 |
msgid "Enabled"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: ../lib/pz-linkcard-settings.php:
|
1599 |
msgid "Type"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: ../lib/pz-linkcard-settings.php:
|
1603 |
msgid "Subdirectories"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: ../lib/pz-linkcard-settings.php:
|
1607 |
msgid "Subdomains"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: ../lib/pz-linkcard-settings.php:
|
1611 |
msgid "Current Blog ID"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: ../lib/pz-linkcard-settings.php:
|
1615 |
msgid "Number of Sites"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: ../lib/pz-linkcard-settings.php:
|
1619 |
msgid "Link to SubSite"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: ../lib/pz-linkcard-settings.php:
|
1623 |
msgid "Treat links to subsites as external links."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: ../lib/pz-linkcard-settings.php:
|
1627 |
msgid "Site List"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: ../lib/pz-linkcard-settings.php:
|
1631 |
msgid "Current"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: ../lib/pz-linkcard-settings.php:
|
1635 |
msgid "Blog ID"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: ../lib/pz-linkcard-settings.php:
|
1639 |
msgid "Senior Settings"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: ../lib/pz-linkcard-settings.php:
|
1643 |
msgid "Trailing Slash"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: ../lib/pz-linkcard-settings.php:
|
1647 |
msgid "As it"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: ../lib/pz-linkcard-settings.php:
|
1651 |
msgid "When only domain name, remove"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: ../lib/pz-linkcard-settings.php:
|
1655 |
msgid "Always remove"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: ../lib/pz-linkcard-settings.php:
|
1659 |
msgid "Class ID to be Added (for PC)"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: ../lib/pz-linkcard-settings.php:
|
1663 |
msgid "Class ID to be Added (for Mobile)"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: ../lib/pz-linkcard-settings.php:
|
1667 |
msgid "Compress"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: ../lib/pz-linkcard-settings.php:
|
1671 |
msgid "Compress CSS and JavaScript to improve access speed."
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: ../lib/pz-linkcard-settings.php:
|
1675 |
-
msgid "Google AMP
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: ../lib/pz-linkcard-settings.php:
|
1679 |
-
msgid "
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: ../lib/pz-linkcard-settings.php:
|
1683 |
msgid "Hide URL Error"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: ../lib/pz-linkcard-settings.php:
|
1687 |
msgid "Do not display an error on the admin page."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: ../lib/pz-linkcard-settings.php:
|
1691 |
msgid "Extension Settings"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: ../lib/pz-linkcard-settings.php:
|
1695 |
msgid "Display the file menu on the card management screen."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: ../lib/pz-linkcard-settings.php:
|
1699 |
msgid "Initialize Tab"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: ../lib/pz-linkcard-settings.php:
|
1703 |
msgid "Display the initialize tab on the settings screen."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: ../lib/pz-linkcard-settings.php:
|
1707 |
msgid "Survey Mode"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: ../lib/pz-linkcard-settings.php:
|
1711 |
msgid "Outputs some events and setting information to a log file."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: ../lib/pz-linkcard-settings.php:
|
1715 |
msgid "Administrator Mode"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: ../lib/pz-linkcard-settings.php:
|
1719 |
-
msgid ""
|
1720 |
-
"Display information that is not normally needed or open special settings."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: ../lib/pz-linkcard-settings.php:
|
1724 |
msgid "Develop Mode"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: ../lib/pz-linkcard-settings.php:
|
1728 |
msgid "Stylesheet Settings"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: ../lib/pz-linkcard-settings.php:
|
1732 |
msgid "Stylesheet URL"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: ../lib/pz-linkcard-settings.php:
|
1736 |
msgid "Schemes (http and https) are omitted."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: ../lib/pz-linkcard-settings.php:
|
1740 |
msgid "Stylesheet URL to Add"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: ../lib/pz-linkcard-settings.php:
|
1744 |
-
#: ../lib/pz-linkcard-settings.php:
|
1745 |
msgid "ex."
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: ../lib/pz-linkcard-settings.php:
|
1749 |
msgid "Stylesheet Text to Add"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: ../lib/pz-linkcard-settings.php:
|
1753 |
msgid "Stylesheet Version"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: ../lib/pz-linkcard-settings.php:
|
1757 |
msgid "Stylesheet File"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: ../lib/pz-linkcard-settings.php:
|
1761 |
msgid "Stylesheet Templete File"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: ../lib/pz-linkcard-settings.php:
|
1765 |
msgid "Image Settings"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: ../lib/pz-linkcard-settings.php:
|
1769 |
msgid "Image Cache URL"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: ../lib/pz-linkcard-settings.php:
|
1773 |
msgid "Used"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: ../lib/pz-linkcard-settings.php:
|
1777 |
msgid ": "
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: ../lib/pz-linkcard-settings.php:
|
1781 |
msgid "Image Cache Directory"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: ../lib/pz-linkcard-settings.php:
|
1785 |
msgid "Survey Settings"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: ../lib/pz-linkcard-settings.php:
|
1789 |
msgid "Log URL"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: ../lib/pz-linkcard-settings.php:
|
1793 |
msgid "Log Directory"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: ../lib/pz-linkcard-settings.php:
|
1797 |
msgid "Web-API Settings"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: ../lib/pz-linkcard-settings.php:
|
1801 |
msgid "Site Icon API"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: ../lib/pz-linkcard-settings.php:
|
1805 |
msgid "%DOMAIN% replace to domain name."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: ../lib/pz-linkcard-settings.php:
|
1809 |
msgid "%DOMAIN_URL% replace to domain URL."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: ../lib/pz-linkcard-settings.php:
|
1813 |
msgid "%URL% replace to URL."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: ../lib/pz-linkcard-settings.php:
|
1817 |
msgid "Thumbnail API"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: ../lib/pz-linkcard-settings.php:
|
1821 |
msgid "Initialize Settings"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: ../lib/pz-linkcard-settings.php:
|
1825 |
msgid "Reset the \"Settings\" to the initial value."
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: ../lib/pz-linkcard-settings.php:
|
1829 |
msgid "Initialize Operation"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: ../lib/pz-linkcard-settings.php:
|
1833 |
msgid "Perform initial setup."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: ../lib/pz-linkcard-settings.php:
|
1837 |
msgid "\"Settings\" will not be initialized."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: ../lib/pz-linkcard-settings.php:
|
1841 |
msgid "Initialization Exception"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: ../lib/pz-linkcard-settings.php:
|
1845 |
msgid "Do not initialize \"Survey Mode\" and \"Administrator Mode\"."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: ../lib/pz-linkcard-settings.php:
|
1849 |
msgid "Notice"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: ../lib/pz-linkcard-settings.php:
|
1853 |
msgid "Do not use normally as it can be set to incapacitate."
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: ../lib/pz-linkcard-style.php:
|
1857 |
msgid "Succeeded in saving the Stylesheet."
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: ../lib/pz-linkcard-style.php:
|
1861 |
msgid "Failed to save Stylesheet."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: ../lib/pz-linkcard-style.php:
|
1865 |
msgid "Failed to call the Stylesheet template."
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: ../pz-linkcard.php:
|
1869 |
msgid "-"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: ../pz-linkcard.php:
|
1873 |
msgid "Incorrect URL specification."
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: ../pz-linkcard.php:
|
1877 |
#, php-format
|
1878 |
msgid "%d tweet"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: ../pz-linkcard.php:
|
1882 |
#, php-format
|
1883 |
msgid "%d tweets"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: ../pz-linkcard.php:
|
1887 |
#, php-format
|
1888 |
msgid "%d share"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: ../pz-linkcard.php:
|
1892 |
#, php-format
|
1893 |
msgid "%d shares"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: ../pz-linkcard.php:
|
1897 |
#, php-format
|
1898 |
msgid "%d user"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: ../pz-linkcard.php:
|
1902 |
#, php-format
|
1903 |
msgid "%d users"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: ../pz-linkcard.php:
|
1907 |
#, php-format
|
1908 |
msgid "%d pocket"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: ../pz-linkcard.php:
|
1912 |
#, php-format
|
1913 |
msgid "%d pockets"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: ../pz-linkcard.php:
|
1917 |
msgid "Category"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: ../pz-linkcard.php:
|
1921 |
-
#: ../pz-linkcard.php:
|
1922 |
msgid "‘"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: ../pz-linkcard.php:
|
1926 |
-
#: ../pz-linkcard.php:
|
1927 |
msgid "’"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: ../pz-linkcard.php:
|
1931 |
msgid "Count"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: ../pz-linkcard.php:
|
1935 |
msgid "Not Found"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: ../pz-linkcard.php:
|
1939 |
msgid "Tag"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: ../pz-linkcard.php:
|
1943 |
msgid "Linkcard"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: ../pz-linkcard.php:
|
1947 |
msgid "Make Linkcard"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: ../pz-linkcard.php:
|
1951 |
msgid "Invalid URL parameter in "
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: ../pz-linkcard.php:
|
1955 |
-
msgid ""
|
1956 |
-
"You can cancel this message from <a href=\"./options-general.php?page=pz-"
|
1957 |
-
"linkcard-settings\">the setting screen</a>."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: ../pz-linkcard.php:
|
1961 |
msgid "Pz LkC Cache"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: ../pz-linkcard.php:
|
1965 |
msgid "Pz LinkCard"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: ../pz-linkcard.php:
|
1969 |
-
msgid "
|
1970 |
msgstr ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Pz-LinkCard\n"
|
7 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
8 |
+
"POT-Creation-Date: 2022-06-05 02:07+0900\n"
|
9 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
+
"Last-Translator: \n"
|
11 |
"Language-Team: poporon\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
16 |
+
"X-Generator: Poedit 3.0.1\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
|
|
|
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
|
22 |
#: ../lib/pz-linkcard-cacheman-edit.php:13
|
38 |
msgstr ""
|
39 |
|
40 |
#: ../lib/pz-linkcard-cacheman-edit.php:20
|
41 |
+
#: ../lib/pz-linkcard-cacheman-list.php:232
|
42 |
msgid "ID"
|
43 |
msgstr ""
|
44 |
|
45 |
#: ../lib/pz-linkcard-cacheman-edit.php:24
|
46 |
+
#: ../lib/pz-linkcard-cacheman-list.php:235 ../lib/pz-linkcard-settings.php:650
|
47 |
+
#: ../lib/pz-linkcard-settings.php:1025 ../pz-linkcard.php:430
|
|
|
48 |
msgid "URL"
|
49 |
msgstr ""
|
50 |
|
60 |
msgid "Scheme"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../lib/pz-linkcard-cacheman-edit.php:40 ../lib/pz-linkcard-settings.php:1024
|
|
|
64 |
msgid "Site Name"
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../lib/pz-linkcard-cacheman-edit.php:44
|
68 |
+
#: ../lib/pz-linkcard-cacheman-list.php:247
|
69 |
+
#: ../lib/pz-linkcard-settings.php:1026
|
70 |
msgid "Domain"
|
71 |
msgstr ""
|
72 |
|
75 |
msgstr ""
|
76 |
|
77 |
#: ../lib/pz-linkcard-cacheman-edit.php:56
|
78 |
+
#: ../lib/pz-linkcard-cacheman-list.php:238 ../lib/pz-linkcard-settings.php:649
|
|
|
79 |
msgid "Title"
|
80 |
msgstr ""
|
81 |
|
88 |
msgstr ""
|
89 |
|
90 |
#: ../lib/pz-linkcard-cacheman-edit.php:68
|
91 |
+
#: ../lib/pz-linkcard-cacheman-list.php:241 ../lib/pz-linkcard-settings.php:651
|
|
|
92 |
msgid "Excerpt"
|
93 |
msgstr ""
|
94 |
|
125 |
msgstr ""
|
126 |
|
127 |
#: ../lib/pz-linkcard-cacheman-edit.php:101
|
128 |
+
#: ../lib/pz-linkcard-cacheman-list.php:265
|
129 |
msgid "Post ID"
|
130 |
msgstr ""
|
131 |
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../lib/pz-linkcard-cacheman-edit.php:114
|
137 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
138 |
msgid "Tw"
|
139 |
msgstr ""
|
140 |
|
141 |
#: ../lib/pz-linkcard-cacheman-edit.php:115
|
142 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
143 |
msgid "fb"
|
144 |
msgstr ""
|
145 |
|
146 |
#: ../lib/pz-linkcard-cacheman-edit.php:116
|
147 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
148 |
msgid "B!"
|
149 |
msgstr ""
|
150 |
|
151 |
#: ../lib/pz-linkcard-cacheman-edit.php:117
|
152 |
+
#: ../lib/pz-linkcard-cacheman-list.php:250
|
153 |
msgid "Po"
|
154 |
msgstr ""
|
155 |
|
191 |
msgid "Update Date"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../lib/pz-linkcard-cacheman-list.php:146
|
195 |
#: ../lib/pz-linkcard-settings-admin.php:86
|
196 |
msgid "▼"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../lib/pz-linkcard-cacheman-list.php:147
|
200 |
msgid "▲"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../lib/pz-linkcard-cacheman-list.php:157
|
204 |
msgid "All"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../lib/pz-linkcard-cacheman-list.php:158
|
208 |
msgid "Internal"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../lib/pz-linkcard-cacheman-list.php:159
|
212 |
msgid "External"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../lib/pz-linkcard-cacheman-list.php:160
|
216 |
msgid "Modify"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../lib/pz-linkcard-cacheman-list.php:161
|
220 |
msgid "Unlink"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../lib/pz-linkcard-cacheman-list.php:166
|
224 |
+
msgid "Text search by title and excerpt"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: ../lib/pz-linkcard-cacheman-list.php:167
|
228 |
msgid "🔍️"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../lib/pz-linkcard-cacheman-list.php:169
|
232 |
msgid "Search"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../lib/pz-linkcard-cacheman-list.php:176
|
236 |
msgid "Select"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../lib/pz-linkcard-cacheman-list.php:177 ../lib/pz-linkcard-cacheman.php:77
|
240 |
msgid "Renew Cache"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../lib/pz-linkcard-cacheman-list.php:178 ../lib/pz-linkcard-cacheman.php:161
|
|
|
244 |
msgid "Renew Thumbnail Image"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../lib/pz-linkcard-cacheman-list.php:179 ../lib/pz-linkcard-cacheman.php:140
|
|
|
248 |
msgid "Renew SNS Count"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../lib/pz-linkcard-cacheman-list.php:180
|
252 |
msgid "Renew Post ID"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../lib/pz-linkcard-cacheman-list.php:181
|
256 |
msgid "Check Status"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../lib/pz-linkcard-cacheman-list.php:182
|
260 |
msgid "Delete from Cache"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../lib/pz-linkcard-cacheman-list.php:184
|
264 |
msgid "Submit"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../lib/pz-linkcard-cacheman-list.php:190
|
268 |
msgid "All Domain"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../lib/pz-linkcard-cacheman-list.php:201
|
272 |
msgid "Refine Search"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../lib/pz-linkcard-cacheman-list.php:205
|
276 |
+
#: ../lib/pz-linkcard-cacheman-list.php:405
|
277 |
#, php-format
|
278 |
msgid "%d item"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../lib/pz-linkcard-cacheman-list.php:205
|
282 |
+
#: ../lib/pz-linkcard-cacheman-list.php:405
|
283 |
#, php-format
|
284 |
msgid "%d items"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../lib/pz-linkcard-cacheman-list.php:244
|
288 |
msgid "Charset"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../lib/pz-linkcard-cacheman-list.php:253
|
292 |
msgid "Regist<br>date"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../lib/pz-linkcard-cacheman-list.php:256
|
296 |
msgid "Update<br>date"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../lib/pz-linkcard-cacheman-list.php:259
|
300 |
msgid "SNS<br>check<br>date"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../lib/pz-linkcard-cacheman-list.php:262
|
304 |
msgid "Alive<br>check<br>date"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../lib/pz-linkcard-cacheman-list.php:268
|
308 |
msgid "Result<br>code"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../lib/pz-linkcard-cacheman-list.php:268
|
312 |
msgid "(last )"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../lib/pz-linkcard-cacheman-list.php:299
|
316 |
msgid "The latest HTTP code is in error, but ignore it."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../lib/pz-linkcard-cacheman-list.php:299
|
320 |
msgid "⚠️"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../lib/pz-linkcard-cacheman-list.php:301
|
324 |
+
msgid "The latest HTTP code is in error. You can change it to ignore the error from the edit screen."
|
|
|
|
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../lib/pz-linkcard-cacheman-list.php:301
|
328 |
msgid "⛔️"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../lib/pz-linkcard-cacheman-list.php:371
|
332 |
msgid "Ignore"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../lib/pz-linkcard-cacheman-list.php:383
|
336 |
msgid "Edit"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../lib/pz-linkcard-cacheman-list.php:384
|
340 |
+
#: ../lib/pz-linkcard-cacheman-list.php:385
|
341 |
#: ../lib/pz-linkcard-settings-admin.php:52
|
342 |
+
#: ../lib/pz-linkcard-settings.php:1204 ../lib/pz-linkcard-settings.php:1211
|
343 |
msgid "Are you sure?"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: ../lib/pz-linkcard-cacheman-list.php:384
|
347 |
msgid "Renew"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: ../lib/pz-linkcard-cacheman-list.php:385
|
351 |
msgid "Delete"
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../lib/pz-linkcard-cacheman.php:3 ../lib/pz-linkcard-settings.php:3
|
355 |
+
#: ../lib/pz-linkcard-settings.php:1103
|
356 |
msgid "Currently working in a development environment."
|
357 |
msgstr ""
|
358 |
|
360 |
msgid "🗃️"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../lib/pz-linkcard-cacheman.php:4 ../pz-linkcard.php:2314
|
364 |
msgid "LinkCard Cache Manager"
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../lib/pz-linkcard-cacheman.php:4 ../lib/pz-linkcard-settings.php:4
|
368 |
+
#: ../lib/pz-linkcard-settings.php:113
|
369 |
msgid "Help"
|
370 |
msgstr ""
|
371 |
|
373 |
msgid "⚙️"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../lib/pz-linkcard-cacheman.php:5 ../pz-linkcard.php:2332
|
377 |
msgid "Settings"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../lib/pz-linkcard-cacheman.php:64 ../lib/pz-linkcard-cacheman.php:83
|
381 |
+
#: ../lib/pz-linkcard-cacheman.php:100 ../lib/pz-linkcard-cacheman.php:126
|
382 |
+
#: ../lib/pz-linkcard-cacheman.php:146 ../lib/pz-linkcard-cacheman.php:167
|
383 |
+
#: ../lib/pz-linkcard-cacheman.php:188
|
384 |
msgid "Not selected"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
388 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
389 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
390 |
+
#: ../lib/pz-linkcard-cacheman.php:217
|
391 |
msgid "..."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
395 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
396 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
397 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:11
|
398 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
399 |
#: ../lib/pz-linkcard-file-import.php:100
|
400 |
+
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:245
|
401 |
+
#: ../lib/pz-linkcard-settings.php:1120 ../lib/pz-linkcard-settings.php:1181
|
402 |
+
#: ../lib/pz-linkcard-settings.php:1190 ../pz-linkcard.php:1593
|
403 |
+
#: ../pz-linkcard.php:1610
|
404 |
msgid "("
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
408 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
409 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
410 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:100
|
411 |
msgid "Success:"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
415 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
416 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
417 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:100
|
418 |
#: ../lib/pz-linkcard-file-import.php:102
|
419 |
msgid "Skip:"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ../lib/pz-linkcard-cacheman.php:77 ../lib/pz-linkcard-cacheman.php:94
|
423 |
+
#: ../lib/pz-linkcard-cacheman.php:120 ../lib/pz-linkcard-cacheman.php:140
|
424 |
+
#: ../lib/pz-linkcard-cacheman.php:161 ../lib/pz-linkcard-cacheman.php:182
|
425 |
+
#: ../lib/pz-linkcard-cacheman.php:217 ../lib/pz-linkcard-file-import.php:11
|
426 |
#: ../lib/pz-linkcard-file-import.php:54 ../lib/pz-linkcard-file-import.php:61
|
427 |
#: ../lib/pz-linkcard-file-import.php:100
|
428 |
+
#: ../lib/pz-linkcard-file-import.php:102 ../lib/pz-linkcard-settings.php:245
|
429 |
+
#: ../lib/pz-linkcard-settings.php:1120 ../lib/pz-linkcard-settings.php:1181
|
430 |
+
#: ../lib/pz-linkcard-settings.php:1190 ../pz-linkcard.php:1593
|
431 |
+
#: ../pz-linkcard.php:1610
|
432 |
msgid ")"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../lib/pz-linkcard-cacheman.php:94
|
436 |
msgid "Delete Cache"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../lib/pz-linkcard-cacheman.php:120
|
440 |
msgid "Update Cache"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../lib/pz-linkcard-cacheman.php:182
|
444 |
msgid "Renew Post Id"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../lib/pz-linkcard-cacheman.php:217
|
448 |
msgid "Alive check"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../lib/pz-linkcard-cacheman.php:227
|
452 |
msgid "Upload Import File"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../lib/pz-linkcard-cacheman.php:228
|
456 |
msgid "Clear all cache"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: ../lib/pz-linkcard-cacheman.php:251
|
460 |
msgid "📄️"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../lib/pz-linkcard-cacheman.php:251 ../lib/pz-linkcard-settings.php:1086
|
464 |
msgid "File Menu"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../lib/pz-linkcard-cacheman.php:258
|
468 |
msgid "Import"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../lib/pz-linkcard-cacheman.php:266
|
472 |
msgid "Export"
|
473 |
msgstr ""
|
474 |
|
531 |
msgstr ""
|
532 |
|
533 |
#: ../lib/pz-linkcard-settings-admin.php:64
|
534 |
+
#: ../lib/pz-linkcard-settings.php:1007
|
535 |
msgid "Table Name"
|
536 |
msgstr ""
|
537 |
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../lib/pz-linkcard-settings-admin.php:84
|
552 |
+
#: ../lib/pz-linkcard-settings.php:1204 ../lib/pz-linkcard-settings.php:1211
|
553 |
msgid "Run"
|
554 |
msgstr ""
|
555 |
|
565 |
msgid "Schedule"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../lib/pz-linkcard-settings.php:4 ../pz-linkcard.php:2315
|
569 |
msgid "LinkCard Settings"
|
570 |
msgstr ""
|
571 |
|
573 |
msgid "Cache Manager"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../lib/pz-linkcard-settings.php:19
|
577 |
msgid "Succeeded in initialize the settings."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../lib/pz-linkcard-settings.php:21
|
581 |
msgid "Failed to initialize the settings."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../lib/pz-linkcard-settings.php:49
|
585 |
msgid "Succeeded in saving the settings."
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../lib/pz-linkcard-settings.php:52
|
589 |
msgid "The settings have not changed."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../lib/pz-linkcard-settings.php:80
|
593 |
msgid "Version"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../lib/pz-linkcard-settings.php:132
|
597 |
msgid "Error"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../lib/pz-linkcard-settings.php:133
|
601 |
msgid "Basic"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../lib/pz-linkcard-settings.php:134 ../lib/pz-linkcard-settings.php:501
|
605 |
msgid "Position"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../lib/pz-linkcard-settings.php:135
|
609 |
msgid "Display"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../lib/pz-linkcard-settings.php:136
|
613 |
msgid "Letter"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../lib/pz-linkcard-settings.php:137
|
617 |
msgid "External Link"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../lib/pz-linkcard-settings.php:138
|
621 |
msgid "Internal Link"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../lib/pz-linkcard-settings.php:139
|
625 |
msgid "Same Page Link"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../lib/pz-linkcard-settings.php:140
|
629 |
msgid "Link Check"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../lib/pz-linkcard-settings.php:141
|
633 |
msgid "Editor"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../lib/pz-linkcard-settings.php:142 ../lib/pz-linkcard-settings.php:977
|
637 |
msgid "Multi Site"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../lib/pz-linkcard-settings.php:143
|
641 |
msgid "Admin"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../lib/pz-linkcard-settings.php:144
|
645 |
msgid "Advanced"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../lib/pz-linkcard-settings.php:145
|
649 |
msgid "etc."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../lib/pz-linkcard-settings.php:146 ../lib/pz-linkcard-settings.php:1199
|
653 |
msgid "Initialize"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../lib/pz-linkcard-settings.php:150
|
657 |
msgid "Error Settings"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../lib/pz-linkcard-settings.php:153 ../lib/pz-linkcard-settings.php:160
|
661 |
msgid "Error Reset"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../lib/pz-linkcard-settings.php:155
|
665 |
msgid "Reset"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../lib/pz-linkcard-settings.php:156
|
669 |
msgid "Cancel the error condition."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../lib/pz-linkcard-settings.php:161
|
673 |
msgid "Uncheck to cancel the error condition."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../lib/pz-linkcard-settings.php:164 ../lib/pz-linkcard-settings.php:170
|
677 |
msgid "Post URL"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../lib/pz-linkcard-settings.php:176
|
681 |
msgid "Occurrence Time"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../lib/pz-linkcard-settings.php:186
|
685 |
msgid "Basic Settings"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../lib/pz-linkcard-settings.php:189
|
689 |
msgid "Easy format"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../lib/pz-linkcard-settings.php:192 ../lib/pz-linkcard-settings.php:484
|
693 |
+
#: ../lib/pz-linkcard-settings.php:503 ../lib/pz-linkcard-settings.php:536
|
694 |
+
#: ../lib/pz-linkcard-settings.php:567 ../lib/pz-linkcard-settings.php:581
|
695 |
+
#: ../lib/pz-linkcard-settings.php:597 ../lib/pz-linkcard-settings.php:618
|
696 |
+
#: ../lib/pz-linkcard-settings.php:631 ../lib/pz-linkcard-settings.php:741
|
697 |
+
#: ../lib/pz-linkcard-settings.php:775 ../lib/pz-linkcard-settings.php:806
|
698 |
msgid "None"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../lib/pz-linkcard-settings.php:193
|
702 |
msgid "Pz-LkC Default"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../lib/pz-linkcard-settings.php:195
|
706 |
msgid "Normal"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../lib/pz-linkcard-settings.php:196
|
710 |
msgid "Compact"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../lib/pz-linkcard-settings.php:197
|
714 |
msgid "Simple"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../lib/pz-linkcard-settings.php:198
|
718 |
msgid "Headline"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../lib/pz-linkcard-settings.php:200
|
722 |
msgid "Cellophane tape \"center\""
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../lib/pz-linkcard-settings.php:201
|
726 |
msgid "Cellophane tape \"Top corner\""
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../lib/pz-linkcard-settings.php:202
|
730 |
msgid "Cellophane tape \"long\""
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../lib/pz-linkcard-settings.php:203
|
734 |
msgid "Cellophane tape \"digonal\""
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../lib/pz-linkcard-settings.php:204
|
738 |
msgid "Cellophane tape and curling"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../lib/pz-linkcard-settings.php:205
|
742 |
msgid "Curling paper"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../lib/pz-linkcard-settings.php:207
|
746 |
msgid "Stitch blue & red"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../lib/pz-linkcard-settings.php:208
|
750 |
msgid "Stitch green & yellow"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../lib/pz-linkcard-settings.php:210
|
754 |
msgid "Square"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../lib/pz-linkcard-settings.php:212
|
758 |
msgid "Enclose"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../lib/pz-linkcard-settings.php:213
|
762 |
msgid "Reflection"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../lib/pz-linkcard-settings.php:215
|
766 |
msgid "Infomation orange"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../lib/pz-linkcard-settings.php:216
|
770 |
msgid "Neutral bluegreen"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../lib/pz-linkcard-settings.php:217
|
774 |
msgid "Enlightened green"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../lib/pz-linkcard-settings.php:218
|
778 |
msgid "Resistance blue"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../lib/pz-linkcard-settings.php:220
|
782 |
msgid "Windows XP"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../lib/pz-linkcard-settings.php:221
|
786 |
msgid "Windows 95"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../lib/pz-linkcard-settings.php:223
|
790 |
msgid "Slanting"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../lib/pz-linkcard-settings.php:225
|
794 |
msgid "3D Rotate"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../lib/pz-linkcard-settings.php:226
|
798 |
msgid "Pushpin"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../lib/pz-linkcard-settings.php:228 ../lib/pz-linkcard-settings.php:624
|
802 |
+
#: ../lib/pz-linkcard-settings.php:974 ../lib/pz-linkcard-settings.php:1017
|
803 |
+
#: ../pz-linkcard.php:2284
|
804 |
msgid "*"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: ../lib/pz-linkcard-settings.php:228
|
808 |
msgid "It applies over other formatting settings."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../lib/pz-linkcard-settings.php:232
|
812 |
msgid "Saved Datetime"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../lib/pz-linkcard-settings.php:242
|
816 |
msgid "Plugin Information"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../lib/pz-linkcard-settings.php:245
|
820 |
msgid "How to"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../lib/pz-linkcard-settings.php:245
|
824 |
msgid "Japanese Only"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../lib/pz-linkcard-settings.php:253
|
828 |
+
msgid "PHP Version"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: ../lib/pz-linkcard-settings.php:258
|
832 |
msgid "Plugin Name"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../lib/pz-linkcard-settings.php:262
|
836 |
msgid "Plugin Abbreviation"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: ../lib/pz-linkcard-settings.php:266
|
840 |
msgid "Plugin Version"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: ../lib/pz-linkcard-settings.php:270 ../lib/pz-linkcard-settings.php:287
|
844 |
msgid "Author's Site"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: ../lib/pz-linkcard-settings.php:274
|
848 |
msgid "Plugin Path"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: ../lib/pz-linkcard-settings.php:279
|
852 |
msgid "Author Name"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../lib/pz-linkcard-settings.php:283
|
856 |
msgid "Author Twitter"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../lib/pz-linkcard-settings.php:288
|
860 |
msgid "Popozure."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../lib/pz-linkcard-settings.php:288
|
864 |
msgid "Poporon's PC Daily Diary"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../lib/pz-linkcard-settings.php:291
|
868 |
msgid "When in Trouble"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../lib/pz-linkcard-settings.php:292
|
872 |
msgid "Twitter Account"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../lib/pz-linkcard-settings.php:295
|
876 |
msgid "Donation"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../lib/pz-linkcard-settings.php:296
|
880 |
msgid "Wishlist"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../lib/pz-linkcard-settings.php:300
|
884 |
msgid "Changelog"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: ../lib/pz-linkcard-settings.php:308
|
888 |
msgid "Position Settings"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: ../lib/pz-linkcard-settings.php:311
|
892 |
msgid "Link the Whole"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../lib/pz-linkcard-settings.php:315
|
896 |
msgid "Enclose the entire card at anchor."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: ../lib/pz-linkcard-settings.php:321
|
900 |
msgid "Margin"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: ../lib/pz-linkcard-settings.php:328 ../lib/pz-linkcard-settings.php:360
|
904 |
msgid "Margin top"
|
905 |
msgstr ""
|
906 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
907 |
#: ../lib/pz-linkcard-settings.php:330 ../lib/pz-linkcard-settings.php:346
|
908 |
#: ../lib/pz-linkcard-settings.php:362 ../lib/pz-linkcard-settings.php:378
|
909 |
#: ../lib/pz-linkcard-settings.php:392 ../lib/pz-linkcard-settings.php:414
|
910 |
#: ../lib/pz-linkcard-settings.php:432 ../lib/pz-linkcard-settings.php:450
|
911 |
+
msgid "Not defined"
|
|
|
912 |
msgstr ""
|
913 |
|
914 |
#: ../lib/pz-linkcard-settings.php:331 ../lib/pz-linkcard-settings.php:347
|
915 |
#: ../lib/pz-linkcard-settings.php:363 ../lib/pz-linkcard-settings.php:379
|
916 |
#: ../lib/pz-linkcard-settings.php:393 ../lib/pz-linkcard-settings.php:415
|
917 |
#: ../lib/pz-linkcard-settings.php:433 ../lib/pz-linkcard-settings.php:451
|
918 |
+
msgid "0"
|
|
|
919 |
msgstr ""
|
920 |
|
921 |
#: ../lib/pz-linkcard-settings.php:332 ../lib/pz-linkcard-settings.php:348
|
922 |
+
#: ../lib/pz-linkcard-settings.php:364 ../lib/pz-linkcard-settings.php:380
|
923 |
+
#: ../lib/pz-linkcard-settings.php:394 ../lib/pz-linkcard-settings.php:416
|
924 |
#: ../lib/pz-linkcard-settings.php:434 ../lib/pz-linkcard-settings.php:452
|
925 |
#: ../lib/pz-linkcard-settings.php:568
|
926 |
+
msgid "4px"
|
927 |
msgstr ""
|
928 |
|
929 |
#: ../lib/pz-linkcard-settings.php:333 ../lib/pz-linkcard-settings.php:349
|
930 |
+
#: ../lib/pz-linkcard-settings.php:365 ../lib/pz-linkcard-settings.php:381
|
931 |
+
#: ../lib/pz-linkcard-settings.php:395 ../lib/pz-linkcard-settings.php:417
|
932 |
#: ../lib/pz-linkcard-settings.php:435 ../lib/pz-linkcard-settings.php:453
|
933 |
+
#: ../lib/pz-linkcard-settings.php:569
|
934 |
+
msgid "8px"
|
935 |
msgstr ""
|
936 |
|
937 |
#: ../lib/pz-linkcard-settings.php:334 ../lib/pz-linkcard-settings.php:350
|
938 |
+
#: ../lib/pz-linkcard-settings.php:366 ../lib/pz-linkcard-settings.php:382
|
939 |
+
#: ../lib/pz-linkcard-settings.php:396 ../lib/pz-linkcard-settings.php:418
|
940 |
#: ../lib/pz-linkcard-settings.php:436 ../lib/pz-linkcard-settings.php:454
|
941 |
+
#: ../lib/pz-linkcard-settings.php:570
|
942 |
+
msgid "16px"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: ../lib/pz-linkcard-settings.php:335 ../lib/pz-linkcard-settings.php:351
|
946 |
+
#: ../lib/pz-linkcard-settings.php:368 ../lib/pz-linkcard-settings.php:384
|
947 |
+
#: ../lib/pz-linkcard-settings.php:398 ../lib/pz-linkcard-settings.php:420
|
948 |
+
#: ../lib/pz-linkcard-settings.php:437 ../lib/pz-linkcard-settings.php:455
|
949 |
+
#: ../lib/pz-linkcard-settings.php:571
|
950 |
+
msgid "32px"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: ../lib/pz-linkcard-settings.php:336 ../lib/pz-linkcard-settings.php:352
|
954 |
+
#: ../lib/pz-linkcard-settings.php:369 ../lib/pz-linkcard-settings.php:385
|
955 |
+
#: ../lib/pz-linkcard-settings.php:399 ../lib/pz-linkcard-settings.php:421
|
956 |
+
#: ../lib/pz-linkcard-settings.php:438 ../lib/pz-linkcard-settings.php:456
|
957 |
+
msgid "40px"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: ../lib/pz-linkcard-settings.php:337 ../lib/pz-linkcard-settings.php:353
|
961 |
+
#: ../lib/pz-linkcard-settings.php:370 ../lib/pz-linkcard-settings.php:386
|
962 |
+
#: ../lib/pz-linkcard-settings.php:400 ../lib/pz-linkcard-settings.php:422
|
963 |
+
#: ../lib/pz-linkcard-settings.php:439 ../lib/pz-linkcard-settings.php:457
|
964 |
+
#: ../lib/pz-linkcard-settings.php:572
|
965 |
msgid "64px"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../lib/pz-linkcard-settings.php:344 ../lib/pz-linkcard-settings.php:376
|
969 |
msgid "Margin left"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: ../lib/pz-linkcard-settings.php:367 ../lib/pz-linkcard-settings.php:383
|
973 |
+
#: ../lib/pz-linkcard-settings.php:397 ../lib/pz-linkcard-settings.php:419
|
974 |
msgid "24px"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../lib/pz-linkcard-settings.php:390 ../lib/pz-linkcard-settings.php:430
|
978 |
msgid "Margin right"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: ../lib/pz-linkcard-settings.php:406 ../lib/pz-linkcard-settings.php:511
|
982 |
+
#: ../lib/pz-linkcard-settings.php:607
|
983 |
msgid "Width"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: ../lib/pz-linkcard-settings.php:407 ../lib/pz-linkcard-settings.php:514
|
987 |
+
#: ../lib/pz-linkcard-settings.php:680
|
988 |
msgid "Height"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: ../lib/pz-linkcard-settings.php:412 ../lib/pz-linkcard-settings.php:448
|
992 |
msgid "Margin bottom"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: ../lib/pz-linkcard-settings.php:445
|
996 |
msgid "Centering"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../lib/pz-linkcard-settings.php:467
|
1000 |
msgid "Use Blockquote Tag"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: ../lib/pz-linkcard-settings.php:468
|
1004 |
msgid "Without using DIV tag, and use BLOCKQUOTE tag."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: ../lib/pz-linkcard-settings.php:468 ../lib/pz-linkcard-settings.php:832
|
1008 |
+
#: ../lib/pz-linkcard-settings.php:840 ../lib/pz-linkcard-settings.php:1073
|
1009 |
+
#: ../lib/pz-linkcard-settings.php:1079 ../lib/pz-linkcard-settings.php:1095
|
1010 |
+
#: ../lib/pz-linkcard-settings.php:1099
|
1011 |
msgid "(Deprecated)"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: ../lib/pz-linkcard-settings.php:474
|
1015 |
msgid "Display Settings"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: ../lib/pz-linkcard-settings.php:477
|
1019 |
msgid "Layout"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: ../lib/pz-linkcard-settings.php:482 ../lib/pz-linkcard-settings.php:653
|
1023 |
msgid "Site Information"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: ../lib/pz-linkcard-settings.php:485 ../lib/pz-linkcard-settings.php:506
|
1027 |
msgid "Upper Side"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: ../lib/pz-linkcard-settings.php:486
|
1031 |
msgid "Above the Title"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: ../lib/pz-linkcard-settings.php:487
|
1035 |
msgid "Under Side"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: ../lib/pz-linkcard-settings.php:489
|
1039 |
msgid "Use SiteName"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: ../lib/pz-linkcard-settings.php:493
|
1043 |
msgid "For internal links, display the posting date"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: ../lib/pz-linkcard-settings.php:497 ../lib/pz-linkcard-settings.php:733
|
1047 |
msgid "Thumbnail"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: ../lib/pz-linkcard-settings.php:504
|
1051 |
msgid "Right Side"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: ../lib/pz-linkcard-settings.php:505
|
1055 |
msgid "Left Side"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: ../lib/pz-linkcard-settings.php:517 ../lib/pz-linkcard-settings.php:560
|
1059 |
msgid "Shadow"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: ../lib/pz-linkcard-settings.php:523
|
1063 |
msgid "Make additional information heading display"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: ../lib/pz-linkcard-settings.php:526
|
1067 |
msgid "Turn off the anchor text underlining"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: ../lib/pz-linkcard-settings.php:529
|
1071 |
msgid "Separator line"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: ../lib/pz-linkcard-settings.php:534
|
1075 |
msgid "Display URL"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: ../lib/pz-linkcard-settings.php:537
|
1079 |
msgid "Under Title"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: ../lib/pz-linkcard-settings.php:538 ../lib/pz-linkcard-settings.php:633
|
1083 |
msgid "Bihind Site-Info"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../lib/pz-linkcard-settings.php:545
|
1087 |
msgid "Hollow content area"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../lib/pz-linkcard-settings.php:550
|
1091 |
msgid "Display excerpt"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: ../lib/pz-linkcard-settings.php:555
|
1095 |
msgid "Hollow"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: ../lib/pz-linkcard-settings.php:565
|
1099 |
msgid "Round a square"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: ../lib/pz-linkcard-settings.php:579
|
1103 |
msgid "When the mouse is on"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: ../lib/pz-linkcard-settings.php:582
|
1107 |
msgid "Lighten"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: ../lib/pz-linkcard-settings.php:583
|
1111 |
msgid "Hover (light)"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: ../lib/pz-linkcard-settings.php:584
|
1115 |
msgid "Hover (dark)"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: ../lib/pz-linkcard-settings.php:585
|
1119 |
msgid "Radius"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: ../lib/pz-linkcard-settings.php:594
|
1123 |
msgid "Border"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: ../lib/pz-linkcard-settings.php:598
|
1127 |
msgid "Solid"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../lib/pz-linkcard-settings.php:599
|
1131 |
msgid "Dotted"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: ../lib/pz-linkcard-settings.php:600
|
1135 |
msgid "Dashed"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../lib/pz-linkcard-settings.php:601
|
1139 |
msgid "Double"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../lib/pz-linkcard-settings.php:602
|
1143 |
msgid "Groove"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../lib/pz-linkcard-settings.php:603
|
1147 |
msgid "Ridge"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../lib/pz-linkcard-settings.php:604
|
1151 |
msgid "Inset"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../lib/pz-linkcard-settings.php:605
|
1155 |
msgid "Outset"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../lib/pz-linkcard-settings.php:611
|
1159 |
msgid "Reset Image Style"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: ../lib/pz-linkcard-settings.php:612
|
1163 |
+
msgid "When unnecessary frame is displayed on the image, you can improve it by case"
|
|
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../lib/pz-linkcard-settings.php:615 ../lib/pz-linkcard-settings.php:652
|
1167 |
msgid "More Button"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../lib/pz-linkcard-settings.php:619
|
1171 |
msgid "Text link"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../lib/pz-linkcard-settings.php:620
|
1175 |
msgid "Simple button"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../lib/pz-linkcard-settings.php:621
|
1179 |
msgid "Blue"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../lib/pz-linkcard-settings.php:622
|
1183 |
msgid "Dark"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../lib/pz-linkcard-settings.php:624
|
1187 |
+
msgid "It is recommended that you leave the card height blank when using this setting."
|
|
|
|
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../lib/pz-linkcard-settings.php:628
|
1191 |
msgid "Display SNS Count"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../lib/pz-linkcard-settings.php:632
|
1195 |
msgid "Bihind Title"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../lib/pz-linkcard-settings.php:635
|
1199 |
msgid "Twitter"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../lib/pz-linkcard-settings.php:636
|
1203 |
msgid "Facebook"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../lib/pz-linkcard-settings.php:637
|
1207 |
msgid "Hatena"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../lib/pz-linkcard-settings.php:638
|
1211 |
msgid "Pocket"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: ../lib/pz-linkcard-settings.php:645
|
1215 |
msgid "Letter Settings"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../lib/pz-linkcard-settings.php:654 ../lib/pz-linkcard-settings.php:784
|
1219 |
msgid "Added Information"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: ../lib/pz-linkcard-settings.php:663
|
1223 |
msgid "Color"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../lib/pz-linkcard-settings.php:670
|
1227 |
msgid "Outline"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../lib/pz-linkcard-settings.php:676
|
1231 |
msgid "Size"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../lib/pz-linkcard-settings.php:685
|
1235 |
msgid "Length"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../lib/pz-linkcard-settings.php:689
|
1239 |
msgid "No wrap"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../lib/pz-linkcard-settings.php:697
|
1243 |
msgid "Resize"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../lib/pz-linkcard-settings.php:698
|
1247 |
msgid "Adjust thumbnail and letter size according to width."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../lib/pz-linkcard-settings.php:705
|
1251 |
msgid "External Link Settings"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../lib/pz-linkcard-settings.php:706
|
1255 |
msgid "Internal Link Settings"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../lib/pz-linkcard-settings.php:707
|
1259 |
msgid "Same Page Link Settings"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../lib/pz-linkcard-settings.php:715
|
1263 |
msgid "Border Color"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../lib/pz-linkcard-settings.php:722
|
1267 |
msgid "Background Color"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: ../lib/pz-linkcard-settings.php:729
|
1271 |
msgid "Background Image"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../lib/pz-linkcard-settings.php:737 ../lib/pz-linkcard-settings.php:754
|
1275 |
+
#: ../lib/pz-linkcard-settings.php:771 ../lib/pz-linkcard-settings.php:791
|
1276 |
+
#: ../lib/pz-linkcard-settings.php:802 ../lib/pz-linkcard-settings.php:818
|
1277 |
+
#: ../lib/pz-linkcard-settings.php:848
|
1278 |
msgid "It is common with setting Internal-link"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: ../lib/pz-linkcard-settings.php:742 ../lib/pz-linkcard-settings.php:776
|
1282 |
msgid "Direct"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: ../lib/pz-linkcard-settings.php:743 ../lib/pz-linkcard-settings.php:777
|
1286 |
msgid "Use WebAPI"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: ../lib/pz-linkcard-settings.php:744 ../lib/pz-linkcard-settings.php:778
|
1290 |
msgid "Use WebAPI ,if can not direct"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: ../lib/pz-linkcard-settings.php:750
|
1294 |
msgid "Thumbnail Size"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../lib/pz-linkcard-settings.php:758
|
1298 |
msgid "Thumbnail (150px)"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: ../lib/pz-linkcard-settings.php:759
|
1302 |
msgid "Medium (300px)"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: ../lib/pz-linkcard-settings.php:760
|
1306 |
msgid "Large (1024px)"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: ../lib/pz-linkcard-settings.php:761
|
1310 |
msgid "Full size"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: ../lib/pz-linkcard-settings.php:767
|
1314 |
msgid "Site Icon"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: ../lib/pz-linkcard-settings.php:788
|
1318 |
msgid "Text of More Button"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: ../lib/pz-linkcard-settings.php:798
|
1322 |
msgid "Open New Window/Tab"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: ../lib/pz-linkcard-settings.php:807
|
1326 |
msgid "All client"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: ../lib/pz-linkcard-settings.php:808
|
1330 |
msgid "Other than mobile"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: ../lib/pz-linkcard-settings.php:814
|
1334 |
msgid "Get Contents"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: ../lib/pz-linkcard-settings.php:822
|
1338 |
msgid "Always extract from the latest articles"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: ../lib/pz-linkcard-settings.php:823
|
1342 |
msgid "If \"excerpt\" is set, give priority to it"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: ../lib/pz-linkcard-settings.php:824
|
1346 |
msgid "Always display the contents registered in card management"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: ../lib/pz-linkcard-settings.php:831
|
1350 |
msgid "Set NoFollow"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../lib/pz-linkcard-settings.php:832
|
1354 |
msgid "In the case of an external site, it puts the \"nofollow\"."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../lib/pz-linkcard-settings.php:835
|
1358 |
msgid "Set NoOpener"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: ../lib/pz-linkcard-settings.php:836
|
1362 |
msgid "In the case of an external site, it puts the \"noopener\"."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../lib/pz-linkcard-settings.php:839
|
1366 |
msgid "Use HatenaBlogCard"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: ../lib/pz-linkcard-settings.php:840
|
1370 |
msgid "External links will use Always HatenaBlogCard."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: ../lib/pz-linkcard-settings.php:844
|
1374 |
msgid "Retry Get PID"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../lib/pz-linkcard-settings.php:850
|
1378 |
msgid "When the `Post ID` can not be acquired, it is acquired again."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../lib/pz-linkcard-settings.php:861
|
1382 |
msgid "Link Check Settings"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../lib/pz-linkcard-settings.php:864
|
1386 |
msgid "Relative URL"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../lib/pz-linkcard-settings.php:865
|
1390 |
msgid "For relative-specified URLs, complement the site URL."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: ../lib/pz-linkcard-settings.php:868
|
1394 |
msgid "Do Not Link at Error"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../lib/pz-linkcard-settings.php:869
|
1398 |
msgid "When access status is \"403\", \"404\", \"410\", unlink."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: ../lib/pz-linkcard-settings.php:872
|
1402 |
msgid "Disable SSL Verification"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: ../lib/pz-linkcard-settings.php:873
|
1406 |
msgid "Try setting if the contents of the SSL site can not be acquired."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: ../lib/pz-linkcard-settings.php:876
|
1410 |
msgid "Follow Location"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: ../lib/pz-linkcard-settings.php:877
|
1414 |
msgid "Track when the link destination is redirected."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: ../lib/pz-linkcard-settings.php:880
|
1418 |
msgid "Set Referer"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: ../lib/pz-linkcard-settings.php:881
|
1422 |
msgid "Notify the article URL to the link destination."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: ../lib/pz-linkcard-settings.php:884
|
1426 |
msgid "Use User-Agent"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: ../lib/pz-linkcard-settings.php:886
|
1430 |
msgid "Notify using Pz-LinkCard to the link destination."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../lib/pz-linkcard-settings.php:891
|
1434 |
msgid "Broken Link Checker"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: ../lib/pz-linkcard-settings.php:892
|
1438 |
msgid "Alive confirmation of the link destination."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: ../lib/pz-linkcard-settings.php:895
|
1442 |
msgid "Broken Link Count"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: ../lib/pz-linkcard-settings.php:896
|
1446 |
msgid "The number of broken links is displayed next to the submenu."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: ../lib/pz-linkcard-settings.php:902
|
1450 |
msgid "Editor Settings"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: ../lib/pz-linkcard-settings.php:905
|
1454 |
msgid "Convert from Text Link"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: ../lib/pz-linkcard-settings.php:906
|
1458 |
msgid "Convert lines with text link only to Linkcard."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: ../lib/pz-linkcard-settings.php:909
|
1462 |
msgid "Convert from URL"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../lib/pz-linkcard-settings.php:910
|
1466 |
msgid "Convert lines with URL only to Linkcard."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../lib/pz-linkcard-settings.php:913
|
1470 |
msgid "External Link Only"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../lib/pz-linkcard-settings.php:914
|
1474 |
msgid "Convert only external links."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../lib/pz-linkcard-settings.php:918
|
1478 |
msgid "Do Shortcode"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../lib/pz-linkcard-settings.php:919
|
1482 |
msgid "Force shortcode development."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: ../lib/pz-linkcard-settings.php:923
|
1486 |
msgid "Add Insert Button"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: ../lib/pz-linkcard-settings.php:924
|
1490 |
msgid "Add insert button to visual editor."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: ../lib/pz-linkcard-settings.php:927
|
1494 |
msgid "Add Quick Tag"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: ../lib/pz-linkcard-settings.php:928
|
1498 |
msgid "Add quick tag button to text editor."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: ../lib/pz-linkcard-settings.php:932
|
1502 |
msgid "ShortCode 1"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: ../lib/pz-linkcard-settings.php:933 ../lib/pz-linkcard-settings.php:950
|
1506 |
+
#: ../lib/pz-linkcard-settings.php:954 ../lib/pz-linkcard-settings.php:958
|
1507 |
msgid "Case-sensitive"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: ../lib/pz-linkcard-settings.php:936
|
1511 |
msgid "Use InLineText"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: ../lib/pz-linkcard-settings.php:940
|
1515 |
msgid "No use"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: ../lib/pz-linkcard-settings.php:941
|
1519 |
msgid "Use to excerpt"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../lib/pz-linkcard-settings.php:942
|
1523 |
msgid "Use to title"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: ../lib/pz-linkcard-settings.php:945
|
1527 |
msgid "This setting applies only to the Shortcode1"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: ../lib/pz-linkcard-settings.php:949
|
1531 |
msgid "ShortCode 2"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: ../lib/pz-linkcard-settings.php:953
|
1535 |
msgid "ShortCode 3"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: ../lib/pz-linkcard-settings.php:957
|
1539 |
msgid "ShortCode 4"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: ../lib/pz-linkcard-settings.php:961
|
1543 |
msgid "Parameters"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: ../lib/pz-linkcard-settings.php:963 ../lib/pz-linkcard-settings.php:1182
|
1547 |
+
#: ../lib/pz-linkcard-settings.php:1191
|
1548 |
msgid "ex1."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: ../lib/pz-linkcard-settings.php:963
|
1552 |
msgid "Specify only URL parameters."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: ../lib/pz-linkcard-settings.php:964 ../lib/pz-linkcard-settings.php:1183
|
1556 |
+
#: ../lib/pz-linkcard-settings.php:1192
|
1557 |
msgid "ex2."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: ../lib/pz-linkcard-settings.php:964
|
1561 |
msgid "Specify URL and title parameters."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: ../lib/pz-linkcard-settings.php:965
|
1565 |
msgid "ex3."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: ../lib/pz-linkcard-settings.php:965
|
1569 |
msgid "Specify URL, title and content parameters."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: ../lib/pz-linkcard-settings.php:966
|
1573 |
+
msgid "For any shortcode you can change the title and excerpt with `title` parameter and `content` parameter"
|
|
|
|
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: ../lib/pz-linkcard-settings.php:973
|
1577 |
msgid "Multi Site Information"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: ../lib/pz-linkcard-settings.php:974 ../lib/pz-linkcard-settings.php:1017
|
1581 |
msgid "Cannot be changed"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: ../lib/pz-linkcard-settings.php:980
|
1585 |
msgid "Disabled"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: ../lib/pz-linkcard-settings.php:981
|
1589 |
msgid "Enabled"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: ../lib/pz-linkcard-settings.php:986
|
1593 |
msgid "Type"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: ../lib/pz-linkcard-settings.php:989
|
1597 |
msgid "Subdirectories"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: ../lib/pz-linkcard-settings.php:990
|
1601 |
msgid "Subdomains"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: ../lib/pz-linkcard-settings.php:995
|
1605 |
msgid "Current Blog ID"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: ../lib/pz-linkcard-settings.php:1001
|
1609 |
msgid "Number of Sites"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: ../lib/pz-linkcard-settings.php:1011
|
1613 |
msgid "Link to SubSite"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: ../lib/pz-linkcard-settings.php:1012
|
1617 |
msgid "Treat links to subsites as external links."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: ../lib/pz-linkcard-settings.php:1016
|
1621 |
msgid "Site List"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: ../lib/pz-linkcard-settings.php:1022
|
1625 |
msgid "Current"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: ../lib/pz-linkcard-settings.php:1023
|
1629 |
msgid "Blog ID"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../lib/pz-linkcard-settings.php:1044
|
1633 |
msgid "Senior Settings"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: ../lib/pz-linkcard-settings.php:1047
|
1637 |
msgid "Trailing Slash"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: ../lib/pz-linkcard-settings.php:1050
|
1641 |
msgid "As it"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: ../lib/pz-linkcard-settings.php:1051
|
1645 |
msgid "When only domain name, remove"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: ../lib/pz-linkcard-settings.php:1052
|
1649 |
msgid "Always remove"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: ../lib/pz-linkcard-settings.php:1057
|
1653 |
msgid "Class ID to be Added (for PC)"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: ../lib/pz-linkcard-settings.php:1061
|
1657 |
msgid "Class ID to be Added (for Mobile)"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: ../lib/pz-linkcard-settings.php:1066
|
1661 |
msgid "Compress"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: ../lib/pz-linkcard-settings.php:1067
|
1665 |
msgid "Compress CSS and JavaScript to improve access speed."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: ../lib/pz-linkcard-settings.php:1071
|
1669 |
+
msgid "Google AMP determination"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: ../lib/pz-linkcard-settings.php:1073
|
1673 |
+
msgid "Simplified display if the URL ends with \"/amp\", \"/amp/\", or \"/?amp=1\"."
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: ../lib/pz-linkcard-settings.php:1078
|
1677 |
msgid "Hide URL Error"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: ../lib/pz-linkcard-settings.php:1079
|
1681 |
msgid "Do not display an error on the admin page."
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: ../lib/pz-linkcard-settings.php:1083
|
1685 |
msgid "Extension Settings"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: ../lib/pz-linkcard-settings.php:1087
|
1689 |
msgid "Display the file menu on the card management screen."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: ../lib/pz-linkcard-settings.php:1090
|
1693 |
msgid "Initialize Tab"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: ../lib/pz-linkcard-settings.php:1091
|
1697 |
msgid "Display the initialize tab on the settings screen."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: ../lib/pz-linkcard-settings.php:1094
|
1701 |
msgid "Survey Mode"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: ../lib/pz-linkcard-settings.php:1095
|
1705 |
msgid "Outputs some events and setting information to a log file."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: ../lib/pz-linkcard-settings.php:1098
|
1709 |
msgid "Administrator Mode"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: ../lib/pz-linkcard-settings.php:1099
|
1713 |
+
msgid "Display information that is not normally needed or open special settings."
|
|
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: ../lib/pz-linkcard-settings.php:1102
|
1717 |
msgid "Develop Mode"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: ../lib/pz-linkcard-settings.php:1109
|
1721 |
msgid "Stylesheet Settings"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: ../lib/pz-linkcard-settings.php:1112
|
1725 |
msgid "Stylesheet URL"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: ../lib/pz-linkcard-settings.php:1115 ../lib/pz-linkcard-settings.php:1146
|
1729 |
msgid "Schemes (http and https) are omitted."
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: ../lib/pz-linkcard-settings.php:1119
|
1733 |
msgid "Stylesheet URL to Add"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: ../lib/pz-linkcard-settings.php:1120 ../lib/pz-linkcard-settings.php:1181
|
1737 |
+
#: ../lib/pz-linkcard-settings.php:1190
|
1738 |
msgid "ex."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: ../lib/pz-linkcard-settings.php:1123
|
1742 |
msgid "Stylesheet Text to Add"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: ../lib/pz-linkcard-settings.php:1127
|
1746 |
msgid "Stylesheet Version"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: ../lib/pz-linkcard-settings.php:1131
|
1750 |
msgid "Stylesheet File"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: ../lib/pz-linkcard-settings.php:1135
|
1754 |
msgid "Stylesheet Templete File"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: ../lib/pz-linkcard-settings.php:1140
|
1758 |
msgid "Image Settings"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: ../lib/pz-linkcard-settings.php:1143
|
1762 |
msgid "Image Cache URL"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: ../lib/pz-linkcard-settings.php:1147 ../lib/pz-linkcard-settings.php:1164
|
1766 |
msgid "Used"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: ../lib/pz-linkcard-settings.php:1147 ../lib/pz-linkcard-settings.php:1164
|
1770 |
msgid ": "
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: ../lib/pz-linkcard-settings.php:1151
|
1774 |
msgid "Image Cache Directory"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: ../lib/pz-linkcard-settings.php:1158
|
1778 |
msgid "Survey Settings"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: ../lib/pz-linkcard-settings.php:1161
|
1782 |
msgid "Log URL"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: ../lib/pz-linkcard-settings.php:1168
|
1786 |
msgid "Log Directory"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: ../lib/pz-linkcard-settings.php:1175
|
1790 |
msgid "Web-API Settings"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: ../lib/pz-linkcard-settings.php:1178
|
1794 |
msgid "Site Icon API"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: ../lib/pz-linkcard-settings.php:1181
|
1798 |
msgid "%DOMAIN% replace to domain name."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: ../lib/pz-linkcard-settings.php:1181
|
1802 |
msgid "%DOMAIN_URL% replace to domain URL."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: ../lib/pz-linkcard-settings.php:1181 ../lib/pz-linkcard-settings.php:1190
|
1806 |
msgid "%URL% replace to URL."
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: ../lib/pz-linkcard-settings.php:1187
|
1810 |
msgid "Thumbnail API"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: ../lib/pz-linkcard-settings.php:1202
|
1814 |
msgid "Initialize Settings"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: ../lib/pz-linkcard-settings.php:1205
|
1818 |
msgid "Reset the \"Settings\" to the initial value."
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: ../lib/pz-linkcard-settings.php:1209
|
1822 |
msgid "Initialize Operation"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: ../lib/pz-linkcard-settings.php:1212
|
1826 |
msgid "Perform initial setup."
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: ../lib/pz-linkcard-settings.php:1212
|
1830 |
msgid "\"Settings\" will not be initialized."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: ../lib/pz-linkcard-settings.php:1216
|
1834 |
msgid "Initialization Exception"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: ../lib/pz-linkcard-settings.php:1217
|
1838 |
msgid "Do not initialize \"Survey Mode\" and \"Administrator Mode\"."
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: ../lib/pz-linkcard-settings.php:1223
|
1842 |
msgid "Notice"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: ../lib/pz-linkcard-settings.php:1224
|
1846 |
msgid "Do not use normally as it can be set to incapacitate."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: ../lib/pz-linkcard-style.php:639
|
1850 |
msgid "Succeeded in saving the Stylesheet."
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: ../lib/pz-linkcard-style.php:641
|
1854 |
msgid "Failed to save Stylesheet."
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: ../lib/pz-linkcard-style.php:644
|
1858 |
msgid "Failed to call the Stylesheet template."
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: ../pz-linkcard.php:430
|
1862 |
msgid "-"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: ../pz-linkcard.php:430
|
1866 |
msgid "Incorrect URL specification."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: ../pz-linkcard.php:841
|
1870 |
#, php-format
|
1871 |
msgid "%d tweet"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: ../pz-linkcard.php:841
|
1875 |
#, php-format
|
1876 |
msgid "%d tweets"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: ../pz-linkcard.php:844
|
1880 |
#, php-format
|
1881 |
msgid "%d share"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: ../pz-linkcard.php:844
|
1885 |
#, php-format
|
1886 |
msgid "%d shares"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: ../pz-linkcard.php:847
|
1890 |
#, php-format
|
1891 |
msgid "%d user"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: ../pz-linkcard.php:847
|
1895 |
#, php-format
|
1896 |
msgid "%d users"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: ../pz-linkcard.php:850
|
1900 |
#, php-format
|
1901 |
msgid "%d pocket"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: ../pz-linkcard.php:850
|
1905 |
#, php-format
|
1906 |
msgid "%d pockets"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: ../pz-linkcard.php:1592 ../pz-linkcard.php:1596
|
1910 |
msgid "Category"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: ../pz-linkcard.php:1592 ../pz-linkcard.php:1596 ../pz-linkcard.php:1609
|
1914 |
+
#: ../pz-linkcard.php:1613
|
1915 |
msgid "‘"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: ../pz-linkcard.php:1592 ../pz-linkcard.php:1596 ../pz-linkcard.php:1609
|
1919 |
+
#: ../pz-linkcard.php:1613
|
1920 |
msgid "’"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: ../pz-linkcard.php:1593 ../pz-linkcard.php:1610
|
1924 |
msgid "Count"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: ../pz-linkcard.php:1597 ../pz-linkcard.php:1614
|
1928 |
msgid "Not Found"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: ../pz-linkcard.php:1609 ../pz-linkcard.php:1613
|
1932 |
msgid "Tag"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: ../pz-linkcard.php:2273
|
1936 |
msgid "Linkcard"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: ../pz-linkcard.php:2273
|
1940 |
msgid "Make Linkcard"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: ../pz-linkcard.php:2284
|
1944 |
msgid "Invalid URL parameter in "
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: ../pz-linkcard.php:2284
|
1948 |
+
msgid "You can cancel this message from <a href=\"./options-general.php?page=pz-linkcard-settings\">the setting screen</a>."
|
|
|
|
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: ../pz-linkcard.php:2305
|
1952 |
msgid "Pz LkC Cache"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: ../pz-linkcard.php:2306
|
1956 |
msgid "Pz LinkCard"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: ../pz-linkcard.php:2333
|
1960 |
+
msgid "Manager"
|
1961 |
msgstr ""
|
lib/pz-linkcard-cacheman-edit.php
CHANGED
@@ -43,7 +43,7 @@
|
|
43 |
<tr>
|
44 |
<th><?php _e('Domain', $this->text_domain ) ?></th>
|
45 |
<?php if (function_exists('idn_to_utf8' ) && substr($data['domain'], 0, 4 ) == 'xn--' ) { ?>
|
46 |
-
<td><input name="data[domain]" type="text" value="<?php echo $data['domain']; ?>" size="40" readonly="readonly" /> <input name="data[domain]" type="text" value="<?php echo idn_to_utf8($data['domain'] ); ?>" size="31" readonly="readonly" /></td>
|
47 |
<?php } else { ?>
|
48 |
<td><input name="data[domain]" type="text" value="<?php echo $data['domain']; ?>" size="80" readonly="readonly" /></td>
|
49 |
<?php } ?>
|
43 |
<tr>
|
44 |
<th><?php _e('Domain', $this->text_domain ) ?></th>
|
45 |
<?php if (function_exists('idn_to_utf8' ) && substr($data['domain'], 0, 4 ) == 'xn--' ) { ?>
|
46 |
+
<td><input name="data[domain]" type="text" value="<?php echo $data['domain']; ?>" size="40" readonly="readonly" /> <input name="data[domain]" type="text" value="<?php echo idn_to_utf8($data['domain'], 0, INTL_IDNA_VARIANT_UTS46 ); ?>" size="31" readonly="readonly" /></td>
|
47 |
<?php } else { ?>
|
48 |
<td><input name="data[domain]" type="text" value="<?php echo $data['domain']; ?>" size="80" readonly="readonly" /></td>
|
49 |
<?php } ?>
|
lib/pz-linkcard-cacheman-list.php
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
|
24 |
// ソート項目パラメータ
|
25 |
$column_rec = $wpdb->get_results("SELECT * FROM $this->db_name LIMIT 1", ARRAY_A ); // 1レコード目を取得
|
26 |
-
$param_orderby = strtolower($param_orderby );
|
27 |
if (isset($column_rec[0] ) && array_key_exists($param_orderby, $column_rec[0] ) ) { // 項目名に存在するかチェック
|
28 |
$orderby = $param_orderby; // 存在したら項目名にセットする
|
29 |
} else {
|
@@ -31,7 +31,7 @@
|
|
31 |
}
|
32 |
|
33 |
// ソート順パラメータ
|
34 |
-
$param_order = strtolower($param_order );
|
35 |
if ($param_order == 'asc' ) {
|
36 |
$order = 'asc'; // 昇順
|
37 |
} else {
|
@@ -39,8 +39,8 @@
|
|
39 |
}
|
40 |
|
41 |
// 抽出条件
|
42 |
-
$where
|
43 |
-
$extraction
|
44 |
switch ($extraction ) {
|
45 |
case 'all':
|
46 |
$where = "";
|
@@ -154,16 +154,16 @@
|
|
154 |
|
155 |
<div class="pz-lkc-man-count-list">
|
156 |
<ul class="subsubsub">
|
157 |
-
<li class="all"><a href="
|
158 |
-
<li class="all"><a href="
|
159 |
-
<li class="all"><a href="
|
160 |
-
<li class="all"><a href="
|
161 |
-
<li class="all"><a href="
|
162 |
</ul>
|
163 |
</div>
|
164 |
|
165 |
<div class="pz-lkc-man-search-box">
|
166 |
-
<p class="search-box">
|
167 |
<span class="pz-lkc-man-search-box-icon"><?php echo __('🔍️', $this->text_domain ); ?></span>
|
168 |
<input type="search" id="post-search-input" name="keyword" value="<?php echo $keyword; ?>">
|
169 |
<input type="submit" id="search-submit" class="button action" value="<?php _e('Search', $this->text_domain ); ?>">
|
@@ -190,9 +190,11 @@
|
|
190 |
<option value="" selected="selected"><?php _e('All Domain', $this->text_domain ); ?></option>
|
191 |
<?php
|
192 |
foreach ($domain_list as $rec ) {
|
193 |
-
|
194 |
-
|
195 |
-
|
|
|
|
|
196 |
}
|
197 |
?>
|
198 |
</select>
|
@@ -202,7 +204,7 @@
|
|
202 |
<div class="pz-lkc-man-pages tablenav-pages">
|
203 |
<span class="displaying-num"><?php printf(($count_now == 1 ? __('%d item', $this->text_domain ) : __('%d items', $this->text_domain ) ), $count_now ); ?></span>
|
204 |
<span class="pagination-links">
|
205 |
-
<?php $href = '
|
206 |
<?php echo strPageButton('first-page', $href, $page_now, $page_min); ?>
|
207 |
|
208 |
<?php echo strPageButton('prev-page', $href, $page_now, $page_min); ?>
|
@@ -227,43 +229,43 @@
|
|
227 |
<tr>
|
228 |
<td id="cb" class="pz-lkc-man-head-check manage-column column-cb check-column"><input id="cb-select-all-1" type="checkbox" /></td>
|
229 |
<th scope="col" class="pz-lkc-man-head-id">
|
230 |
-
<?php echo strHeaderTitleWithSort('id', __('ID', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
231 |
</th>
|
232 |
<th scope="col" class="pz-lkc-man-head-url">
|
233 |
-
<?php echo strHeaderTitleWithSort('url', __('URL', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
234 |
</th>
|
235 |
<th scope="col" class="pz-lkc-man-head-title">
|
236 |
-
<?php echo strHeaderTitleWithSort('title', __('Title', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
237 |
</th>
|
238 |
<th scope="col" class="pz-lkc-man-head-excerpt">
|
239 |
-
<?php echo strHeaderTitleWithSort('excerpt', __('Excerpt', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
240 |
</th>
|
241 |
<th scope="col" class="pz-lkc-man-head-charset pz-lkc-admin-only">
|
242 |
-
<?php echo strHeaderTitleWithSort('charset', __('Charset', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
243 |
</th>
|
244 |
<th scope="col" class="pz-lkc-man-head-domain">
|
245 |
-
<?php echo strHeaderTitleWithSort('domain', __('Domain', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
246 |
</th>
|
247 |
<th scope="col" class="pz-lkc-man-head-sns">
|
248 |
-
<?php echo strHeaderTitleWithSort('sns_twitter', __('Tw', $this->text_domain ), $asc_chr, $desc_chr ).'<br>'.strHeaderTitleWithSort('sns_facebook', __('fb', $this->text_domain ), $asc_chr, $desc_chr ).'<br>'.strHeaderTitleWithSort('sns_hatena', __('B!', $this->text_domain ), $asc_chr, $desc_chr ).'<br>'.strHeaderTitleWithSort('sns_pocket', __('Po', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
249 |
</th>
|
250 |
<th scope="col" class="pz-lkc-man-head-resist-time pz-lkc-admin-only">
|
251 |
-
<?php echo strHeaderTitleWithSort('regist_time', __('Regist<br>date', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
252 |
</th>
|
253 |
<th scope="col" class="pz-lkc-man-head-update-time">
|
254 |
-
<?php echo strHeaderTitleWithSort('update_time', __('Update<br>date', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
255 |
</th>
|
256 |
<th scope="col" class="pz-lkc-man-head-sns-time pz-lkc-admin-only">
|
257 |
-
<?php echo strHeaderTitleWithSort('sns_time', __('SNS<br>check<br>date', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
258 |
</th>
|
259 |
<th scope="col" class="pz-lkc-man-head-alive-time pz-lkc-admin-only">
|
260 |
-
<?php echo strHeaderTitleWithSort('alive_time', __('Alive<br>check<br>date', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
261 |
</th>
|
262 |
<th scope="col" class="pz-lkc-man-head-post-id">
|
263 |
-
<?php echo strHeaderTitleWithSort('use_post_id1', __('Post ID', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
264 |
</th>
|
265 |
<th scope="col" class="pz-lkc-man-head-result-update">
|
266 |
-
<?php echo strHeaderTitleWithSort('update_result', __('Result<br>code', $this->text_domain ), $asc_chr, $desc_chr ).'<br>'.strHeaderTitleWithSort('alive_result', __('(last )', $this->text_domain ), $asc_chr, $desc_chr ); ?>
|
267 |
</th>
|
268 |
</tr>
|
269 |
</thead>
|
@@ -300,9 +302,9 @@
|
|
300 |
}
|
301 |
}
|
302 |
if ($is_internal ) {
|
303 |
-
$html_url .= '<a href="'.
|
304 |
} else {
|
305 |
-
$html_url .= '<a href="'.
|
306 |
}
|
307 |
$html_url .= htmlspecialchars($this->pz_DecodeURL($url ) ).'</a>';
|
308 |
|
@@ -347,7 +349,7 @@
|
|
347 |
}
|
348 |
}
|
349 |
if ($thumbnail_url ) {
|
350 |
-
$html_thumbnail = '<a href="'
|
351 |
}
|
352 |
|
353 |
// 記事ID
|
@@ -356,7 +358,7 @@
|
|
356 |
$use_post_id = 'use_post_id'.$j;
|
357 |
$post_id = $data->$use_post_id;
|
358 |
if ($post_id > 0 ) {
|
359 |
-
$html_post_id .= '<a href="'.get_permalink($post_id ).'" target="_blank" title="'.get_the_title($post_id ).'">'.$post_id.'</a><br>';
|
360 |
}
|
361 |
}
|
362 |
|
@@ -378,14 +380,23 @@
|
|
378 |
<div class="pz-lkc-man-body-url"><?php echo $html_url; ?></div>
|
379 |
<div class="pz-lkc-man-body-title"><span title="<?php echo $title; ?>"><?php echo $html_title; ?></span></div>
|
380 |
<div id="inline_<?php echo $data_id; ?>" class="pz-lkc-man-body-menu row-actions">
|
381 |
-
<a href="<?php echo wp_nonce_url('
|
382 |
-
<a href="<?php echo wp_nonce_url('
|
383 |
-
<a href="<?php echo wp_nonce_url('
|
384 |
</div>
|
385 |
</td>
|
386 |
<td><div class="pz-lkc-man-body-excerpt" title="<?php echo $excerpt; ?>"><?php echo $html_excerpt; ?></div></td>
|
387 |
<td class="pz-lkc-man-body-charset pz-lkc-admin-only"><?php echo htmlspecialchars($data->charset ); ?></td>
|
388 |
-
<td
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
<td class="pz-lkc-man-body-sns"><?php echo $html_sns; ?></td>
|
390 |
<td class="pz-lkc-man-body-resist-time pz-lkc-admin-only"><?php $dt=$data->regist_time; ?><span title="<?php echo date($this->datetime_format, $dt); ?>"><?php echo date('Y', $dt ); ?><br><?php echo date('m/d', $dt ); ?><br><?php echo date('H:i', $dt ); ?></span></td></td>
|
391 |
<td class="pz-lkc-man-body-update-time"><?php $dt=$data->update_time; ?><span title="<?php echo date($this->datetime_format, $dt); ?>"><?php echo date('Y', $dt ); ?><br><?php echo date('m/d', $dt ); ?><br><?php echo date('H:i', $dt ); ?></span></td></td>
|
@@ -402,7 +413,7 @@
|
|
402 |
<div class="pz-lkc-man-pages tablenav-pages">
|
403 |
<span class="displaying-num"><?php printf(($count_now == 1 ? __('%d item', $this->text_domain ) : __('%d items', $this->text_domain ) ), $count_now ); ?></span>
|
404 |
<span class="pagination-links">
|
405 |
-
<?php $href = '
|
406 |
<?php echo strPageButton('first-page', $href, $page_now, $page_min); ?>
|
407 |
|
408 |
<?php echo strPageButton('prev-page', $href, $page_now, $page_min); ?>
|
@@ -464,15 +475,15 @@
|
|
464 |
}
|
465 |
|
466 |
// ヘッダー表示(ソート用のボタン付)
|
467 |
-
function strHeaderTitleWithSort($item, $text ,$asc_chr, $desc_chr ) {
|
468 |
$orderby = isset($_REQUEST['orderby'] ) ? $_REQUEST['orderby'] : null;
|
469 |
$order = isset($_REQUEST['order'] ) ? $_REQUEST['order'] : null;
|
470 |
$refine = isset($_REQUEST['refine'] ) ? $_REQUEST['refine'] : null;
|
471 |
$keyword = isset($_REQUEST['keyword'] ) ? $_REQUEST['keyword'] : null;
|
472 |
$extraction = isset($_REQUEST['extraction'] ) ? $_REQUEST['extraction'] : null;
|
473 |
-
|
474 |
-
$asc_chr
|
475 |
-
$desc_chr
|
476 |
|
477 |
if ($item == $orderby ) {
|
478 |
if ($order == 'desc' ) {
|
@@ -486,7 +497,7 @@
|
|
486 |
$mark = null;
|
487 |
$order = 'desc';
|
488 |
}
|
489 |
-
return '<a href="
|
490 |
}
|
491 |
|
492 |
// HTTP結果コード
|
23 |
|
24 |
// ソート項目パラメータ
|
25 |
$column_rec = $wpdb->get_results("SELECT * FROM $this->db_name LIMIT 1", ARRAY_A ); // 1レコード目を取得
|
26 |
+
$param_orderby = isset($param_orderby ) ? strtolower($param_orderby ) : null ;
|
27 |
if (isset($column_rec[0] ) && array_key_exists($param_orderby, $column_rec[0] ) ) { // 項目名に存在するかチェック
|
28 |
$orderby = $param_orderby; // 存在したら項目名にセットする
|
29 |
} else {
|
31 |
}
|
32 |
|
33 |
// ソート順パラメータ
|
34 |
+
$param_order = isset($param_order ) ? strtolower($param_order ) : null ;
|
35 |
if ($param_order == 'asc' ) {
|
36 |
$order = 'asc'; // 昇順
|
37 |
} else {
|
39 |
}
|
40 |
|
41 |
// 抽出条件
|
42 |
+
$where = null;
|
43 |
+
$extraction = isset($extraction ) ? strtolower($extraction ) : null ;
|
44 |
switch ($extraction ) {
|
45 |
case 'all':
|
46 |
$where = "";
|
154 |
|
155 |
<div class="pz-lkc-man-count-list">
|
156 |
<ul class="subsubsub">
|
157 |
+
<li class="all"><a href="<?php echo $this->cacheman_url; ?>&extraction=all&orderby=regist&order=desc" <?php if ($extraction == 'all' ) echo 'class="current"'; ?>><?php _e('All', $this->text_domain ); ?> <span class="count">(<?php echo $count_all; ?>)</span></a> |</li>
|
158 |
+
<li class="all"><a href="<?php echo $this->cacheman_url; ?>&extraction=internal&orderby=regist&order=desc" <?php if ($extraction == 'internal' ) echo 'class="current"'; ?>><?php _e('Internal', $this->text_domain ); ?> <span class="count">(<?php echo $count_internal; ?>)</span></a> |</li>
|
159 |
+
<li class="all"><a href="<?php echo $this->cacheman_url; ?>&extraction=external&orderby=regist&order=desc" <?php if ($extraction == 'external' ) echo 'class="current"'; ?>><?php _e('External', $this->text_domain ); ?> <span class="count">(<?php echo $count_external; ?>)</span></a> |</li>
|
160 |
+
<li class="all"><a href="<?php echo $this->cacheman_url; ?>&extraction=modify&orderby=regist&order=desc" <?php if ($extraction == 'modify' ) echo 'class="current"'; ?>><?php _e('Modify', $this->text_domain ); ?> <span class="count">(<?php echo $count_modify; ?>)</span></a> |</li>
|
161 |
+
<li class="all"><a href="<?php echo $this->cacheman_url; ?>&extraction=unlink&orderby=regist&order=desc" <?php if ($extraction == 'unlink' ) echo 'class="current"'; ?>><?php _e('Unlink', $this->text_domain ); ?> <span class="count">(<?php echo $count_unlink; ?>)</span></a></li>
|
162 |
</ul>
|
163 |
</div>
|
164 |
|
165 |
<div class="pz-lkc-man-search-box">
|
166 |
+
<p class="search-box" title="<?php _e('Text search by title and excerpt', $this->text_domain ); ?>">
|
167 |
<span class="pz-lkc-man-search-box-icon"><?php echo __('🔍️', $this->text_domain ); ?></span>
|
168 |
<input type="search" id="post-search-input" name="keyword" value="<?php echo $keyword; ?>">
|
169 |
<input type="submit" id="search-submit" class="button action" value="<?php _e('Search', $this->text_domain ); ?>">
|
190 |
<option value="" selected="selected"><?php _e('All Domain', $this->text_domain ); ?></option>
|
191 |
<?php
|
192 |
foreach ($domain_list as $rec ) {
|
193 |
+
if (isset($rec['domain'] ) == true && isset($rec['count'] ) == true) {
|
194 |
+
$disp_domain = (function_exists('idn_to_utf8' ) && mb_substr($rec['domain'], 0, 4) == 'xn--') ? idn_to_utf8($rec['domain'], 0, INTL_IDNA_VARIANT_UTS46 ) : $rec['domain'] ;
|
195 |
+
$selected = ($rec['domain'] === $refine) ? ' selected="selected"' : null ;
|
196 |
+
echo '<option value="'.htmlspecialchars($rec['domain'] ).'"'.$selected.'>'.htmlspecialchars($disp_domain ).' ('.$rec['count'].')</option>';
|
197 |
+
}
|
198 |
}
|
199 |
?>
|
200 |
</select>
|
204 |
<div class="pz-lkc-man-pages tablenav-pages">
|
205 |
<span class="displaying-num"><?php printf(($count_now == 1 ? __('%d item', $this->text_domain ) : __('%d items', $this->text_domain ) ), $count_now ); ?></span>
|
206 |
<span class="pagination-links">
|
207 |
+
<?php $href = $this->cacheman_url.'&extraction='.$extraction.'&orderby='.$orderby.'&order='.$order.'&refine='.$refine.'&keyword='.$keyword.'&paged='; ?>
|
208 |
<?php echo strPageButton('first-page', $href, $page_now, $page_min); ?>
|
209 |
|
210 |
<?php echo strPageButton('prev-page', $href, $page_now, $page_min); ?>
|
229 |
<tr>
|
230 |
<td id="cb" class="pz-lkc-man-head-check manage-column column-cb check-column"><input id="cb-select-all-1" type="checkbox" /></td>
|
231 |
<th scope="col" class="pz-lkc-man-head-id">
|
232 |
+
<?php echo strHeaderTitleWithSort('id', __('ID', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
233 |
</th>
|
234 |
<th scope="col" class="pz-lkc-man-head-url">
|
235 |
+
<?php echo strHeaderTitleWithSort('url', __('URL', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
236 |
</th>
|
237 |
<th scope="col" class="pz-lkc-man-head-title">
|
238 |
+
<?php echo strHeaderTitleWithSort('title', __('Title', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
239 |
</th>
|
240 |
<th scope="col" class="pz-lkc-man-head-excerpt">
|
241 |
+
<?php echo strHeaderTitleWithSort('excerpt', __('Excerpt', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
242 |
</th>
|
243 |
<th scope="col" class="pz-lkc-man-head-charset pz-lkc-admin-only">
|
244 |
+
<?php echo strHeaderTitleWithSort('charset', __('Charset', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
245 |
</th>
|
246 |
<th scope="col" class="pz-lkc-man-head-domain">
|
247 |
+
<?php echo strHeaderTitleWithSort('domain', __('Domain', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
248 |
</th>
|
249 |
<th scope="col" class="pz-lkc-man-head-sns">
|
250 |
+
<?php echo strHeaderTitleWithSort('sns_twitter', __('Tw', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ).'<br>'.strHeaderTitleWithSort('sns_facebook', __('fb', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ).'<br>'.strHeaderTitleWithSort('sns_hatena', __('B!', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ).'<br>'.strHeaderTitleWithSort('sns_pocket', __('Po', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
251 |
</th>
|
252 |
<th scope="col" class="pz-lkc-man-head-resist-time pz-lkc-admin-only">
|
253 |
+
<?php echo strHeaderTitleWithSort('regist_time', __('Regist<br>date', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
254 |
</th>
|
255 |
<th scope="col" class="pz-lkc-man-head-update-time">
|
256 |
+
<?php echo strHeaderTitleWithSort('update_time', __('Update<br>date', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
257 |
</th>
|
258 |
<th scope="col" class="pz-lkc-man-head-sns-time pz-lkc-admin-only">
|
259 |
+
<?php echo strHeaderTitleWithSort('sns_time', __('SNS<br>check<br>date', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
260 |
</th>
|
261 |
<th scope="col" class="pz-lkc-man-head-alive-time pz-lkc-admin-only">
|
262 |
+
<?php echo strHeaderTitleWithSort('alive_time', __('Alive<br>check<br>date', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
263 |
</th>
|
264 |
<th scope="col" class="pz-lkc-man-head-post-id">
|
265 |
+
<?php echo strHeaderTitleWithSort('use_post_id1', __('Post ID', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
266 |
</th>
|
267 |
<th scope="col" class="pz-lkc-man-head-result-update">
|
268 |
+
<?php echo strHeaderTitleWithSort('update_result', __('Result<br>code', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ).'<br>'.strHeaderTitleWithSort('alive_result', __('(last )', $this->text_domain ), $asc_chr, $desc_chr, $this->cacheman_url ); ?>
|
269 |
</th>
|
270 |
</tr>
|
271 |
</thead>
|
302 |
}
|
303 |
}
|
304 |
if ($is_internal ) {
|
305 |
+
$html_url .= '<a href="'.esc_url($url ).'" title="'.esc_url($url ).'" rel="internal" target="_self">';
|
306 |
} else {
|
307 |
+
$html_url .= '<a href="'.esc_url($url ).'" title="'.esc_url($url ).'" rel="external noopenner noreferrer" target="_blank">';
|
308 |
}
|
309 |
$html_url .= htmlspecialchars($this->pz_DecodeURL($url ) ).'</a>';
|
310 |
|
349 |
}
|
350 |
}
|
351 |
if ($thumbnail_url ) {
|
352 |
+
$html_thumbnail = '<a href="'.esc_url($thumbnail_url ).'" target="_blank" class="pz-lkc-man-thumbnail"><div><img src="'.esc_url($thumbnail_url ).'" alt="" class="pz-lkc-man-thumbnail-img"></div></a>';
|
353 |
}
|
354 |
|
355 |
// 記事ID
|
358 |
$use_post_id = 'use_post_id'.$j;
|
359 |
$post_id = $data->$use_post_id;
|
360 |
if ($post_id > 0 ) {
|
361 |
+
$html_post_id .= '<a href="'.esc_url(get_permalink($post_id ) ).'" target="_blank" title="'.get_the_title($post_id ).'">'.$post_id.'</a><br>';
|
362 |
}
|
363 |
}
|
364 |
|
380 |
<div class="pz-lkc-man-body-url"><?php echo $html_url; ?></div>
|
381 |
<div class="pz-lkc-man-body-title"><span title="<?php echo $title; ?>"><?php echo $html_title; ?></span></div>
|
382 |
<div id="inline_<?php echo $data_id; ?>" class="pz-lkc-man-body-menu row-actions">
|
383 |
+
<a href="<?php echo wp_nonce_url($this->cacheman_url.'&extraction='.$extraction.'&orderby='.$orderby.'&order='.$order.'&paged='.$page_now.'&refine='.$refine.'&action=edit&id[0]='.$data_id, 'pz_cacheman' ); ?>"><?php _e('Edit',$this->text_domain ); ?></a> |
|
384 |
+
<a href="<?php echo wp_nonce_url($this->cacheman_url.'&extraction='.$extraction.'&orderby='.$orderby.'&order='.$order.'&paged='.$page_now.'&refine='.$refine.'&action=renew&id[0]='.$data_id, 'pz_cacheman' ); ?>" onclick="return confirm(<?php echo "'".__('Are you sure?', $this->text_domain )."'"; ?> );"><?php _e('Renew',$this->text_domain ); ?></a> |
|
385 |
+
<a href="<?php echo wp_nonce_url($this->cacheman_url.'&extraction='.$extraction.'&orderby='.$orderby.'&order='.$order.'&paged='.$page_now.'&refine='.$refine.'&action=delete&id[0]='.$data_id, 'pz_cacheman' ); ?>" onclick="return confirm(<?php echo "'".__('Are you sure?', $this->text_domain )."'"; ?> );"><?php _e('Delete',$this->text_domain ); ?></a>
|
386 |
</div>
|
387 |
</td>
|
388 |
<td><div class="pz-lkc-man-body-excerpt" title="<?php echo $excerpt; ?>"><?php echo $html_excerpt; ?></div></td>
|
389 |
<td class="pz-lkc-man-body-charset pz-lkc-admin-only"><?php echo htmlspecialchars($data->charset ); ?></td>
|
390 |
+
<td>
|
391 |
+
<div class="pz-lkc-man-body-domain">
|
392 |
+
<?php
|
393 |
+
$disp_domain = (function_exists('idn_to_utf8' ) && mb_substr($domain, 0, 4) == 'xn--') ? idn_to_utf8($domain, 0, INTL_IDNA_VARIANT_UTS46 ) : $domain ;
|
394 |
+
$disp_sitename = esc_html($data->site_name );
|
395 |
+
?>
|
396 |
+
<span class="pz-lkc-man-body-domain" title="<?php echo $disp_domain; ?>"><?php echo $disp_domain; ?></span><br>
|
397 |
+
<span class="pz-lkc-man-body-sitename" title="<?php echo $disp_sitename; ?>"><?php echo $disp_sitename; ?></span>
|
398 |
+
</div>
|
399 |
+
</td>
|
400 |
<td class="pz-lkc-man-body-sns"><?php echo $html_sns; ?></td>
|
401 |
<td class="pz-lkc-man-body-resist-time pz-lkc-admin-only"><?php $dt=$data->regist_time; ?><span title="<?php echo date($this->datetime_format, $dt); ?>"><?php echo date('Y', $dt ); ?><br><?php echo date('m/d', $dt ); ?><br><?php echo date('H:i', $dt ); ?></span></td></td>
|
402 |
<td class="pz-lkc-man-body-update-time"><?php $dt=$data->update_time; ?><span title="<?php echo date($this->datetime_format, $dt); ?>"><?php echo date('Y', $dt ); ?><br><?php echo date('m/d', $dt ); ?><br><?php echo date('H:i', $dt ); ?></span></td></td>
|
413 |
<div class="pz-lkc-man-pages tablenav-pages">
|
414 |
<span class="displaying-num"><?php printf(($count_now == 1 ? __('%d item', $this->text_domain ) : __('%d items', $this->text_domain ) ), $count_now ); ?></span>
|
415 |
<span class="pagination-links">
|
416 |
+
<?php $href = $this->cacheman_url.'&extraction='.$extraction.'&orderby='.$orderby.'&order='.$order.'&refine='.$refine.'&keyword='.$keyword.'&paged='; ?>
|
417 |
<?php echo strPageButton('first-page', $href, $page_now, $page_min); ?>
|
418 |
|
419 |
<?php echo strPageButton('prev-page', $href, $page_now, $page_min); ?>
|
475 |
}
|
476 |
|
477 |
// ヘッダー表示(ソート用のボタン付)
|
478 |
+
function strHeaderTitleWithSort($item, $text ,$asc_chr, $desc_chr, $cacheman_url ) {
|
479 |
$orderby = isset($_REQUEST['orderby'] ) ? $_REQUEST['orderby'] : null;
|
480 |
$order = isset($_REQUEST['order'] ) ? $_REQUEST['order'] : null;
|
481 |
$refine = isset($_REQUEST['refine'] ) ? $_REQUEST['refine'] : null;
|
482 |
$keyword = isset($_REQUEST['keyword'] ) ? $_REQUEST['keyword'] : null;
|
483 |
$extraction = isset($_REQUEST['extraction'] ) ? $_REQUEST['extraction'] : null;
|
484 |
+
|
485 |
+
$asc_chr = '<span class="pz-lkc-man-head-orderby">🔽</span>';
|
486 |
+
$desc_chr = '<span class="pz-lkc-man-head-orderby">🔼</span>';
|
487 |
|
488 |
if ($item == $orderby ) {
|
489 |
if ($order == 'desc' ) {
|
497 |
$mark = null;
|
498 |
$order = 'desc';
|
499 |
}
|
500 |
+
return '<a href="'.$cacheman_url.'&extraction='.$extraction.'&orderby='.$item.'&order='.$order.'&refine='.$refine.'&keyword='.$keyword.'">'.$text.$mark.'</a>';
|
501 |
}
|
502 |
|
503 |
// HTTP結果コード
|
lib/pz-linkcard-cacheman.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
|
|
2 |
<div class="pz-lkc-dashboard wrap">
|
3 |
-
<?php /* 開発者モード */ if ($this->options['develop-mode'] ) { echo '<div class="pz-lkc-develop-message">'.__('Currently working in a development environment.', $this->text_domain ).'</div>'; } ?>
|
4 |
<h1 class="pz-lkc-header-manager"><span class="pz-lkc-header-manager-icon"><?php echo __('🗃️', $this->text_domain ); ?></span> <?php _e('LinkCard Cache Manager', $this->text_domain ); ?> <a href="<?php echo $this->options['author-url']; ?>/pz-linkcard-manager" rel="external noopener help" target="_blank"><img src="<?php echo $this->plugin_dir_url.'img/help.png'; ?>" width="16" height="16" title="<?php _e('Help', $this->text_domain ); ?>" alt="help"></a></h1>
|
5 |
-
<div class="pz-lkc-header-goto"><a href="
|
6 |
<div class="pz-lkc-clear-both"> </div>
|
7 |
<input type="text" class="pz-lkc-display pz-lkc-hide" name="pz-lkc-debug" value="<?php echo $this->options['debug-mode']; ?>" />
|
8 |
<input type="text" class="pz-lkc-display pz-lkc-hide" name="pz-lkc-admin" value="<?php echo $this->options['admin-mode']; ?>" />
|
@@ -169,23 +169,11 @@
|
|
169 |
}
|
170 |
foreach ($bulk_id as $data_id ) {
|
171 |
$data = $this->pz_GetCache(array('id' => $data_id ) );
|
|
|
172 |
if (isset($data ) && is_array($data ) ) {
|
173 |
-
// 記事IDの再取得
|
174 |
-
$use_post_id_t = $wpdb->get_results($wpdb->prepare("SELECT id FROM $wpdb->prefix"."posts WHERE post_type = 'post' AND post_content LIKE '%%%s%%' ORDER BY id ASC", $data['url'] ) );
|
175 |
-
if ($use_post_id_t ) {
|
176 |
-
$use_post_id_t = (array) $use_post_id_t[0];
|
177 |
-
$use_post_id_t = array_unique($use_post_id_t );
|
178 |
-
$use_post_id_t = array_values($use_post_id_t );
|
179 |
-
} else {
|
180 |
-
$use_post_id_t = array();
|
181 |
-
}
|
182 |
-
$data['use_post_id1'] = isset($use_post_id_t[0]) ? $use_post_id_t[0] : null;
|
183 |
-
$data['use_post_id2'] = isset($use_post_id_t[1]) ? $use_post_id_t[1] : null;
|
184 |
-
$data['use_post_id3'] = isset($use_post_id_t[2]) ? $use_post_id_t[2] : null;
|
185 |
-
$data['use_post_id4'] = isset($use_post_id_t[3]) ? $use_post_id_t[3] : null;
|
186 |
-
$data['use_post_id5'] = isset($use_post_id_t[4]) ? $use_post_id_t[4] : null;
|
187 |
-
$data['use_post_id6'] = isset($use_post_id_t[5]) ? $use_post_id_t[5] : null;
|
188 |
$result = $this->pz_SetCache($data );
|
|
|
|
|
189 |
$success_count++;
|
190 |
} else {
|
191 |
$skip_count++;
|
@@ -265,7 +253,7 @@
|
|
265 |
<td>
|
266 |
<form id="import" method="get">
|
267 |
<?php wp_nonce_field('pz_cacheman' ); ?>
|
268 |
-
<input type="hidden" name="page" value="pz-linkcard-
|
269 |
<input type="hidden" name="action" value="import-menu">
|
270 |
<button type="submit" name="import" class="button" value="import-file"><?php _e('Import', $this->text_domain ); ?></button>
|
271 |
</form>
|
@@ -273,7 +261,7 @@
|
|
273 |
<td>
|
274 |
<form id="export" method="get">
|
275 |
<?php wp_nonce_field('pz_cacheman' ); ?>
|
276 |
-
<input type="hidden" name="page" value="pz-linkcard-
|
277 |
<input type="hidden" name="action" value="export">
|
278 |
<button type="submit" name="export" class="button" value="export-file"><?php _e('Export', $this->text_domain ); ?></button>
|
279 |
</form>
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
2 |
+
<?php /* 開発者モード */ if ($this->options['develop-mode'] ) { echo '<div class="pz-lkc-develop-message">'.__('Currently working in a development environment.', $this->text_domain ).'</div>'; } ?>
|
3 |
<div class="pz-lkc-dashboard wrap">
|
|
|
4 |
<h1 class="pz-lkc-header-manager"><span class="pz-lkc-header-manager-icon"><?php echo __('🗃️', $this->text_domain ); ?></span> <?php _e('LinkCard Cache Manager', $this->text_domain ); ?> <a href="<?php echo $this->options['author-url']; ?>/pz-linkcard-manager" rel="external noopener help" target="_blank"><img src="<?php echo $this->plugin_dir_url.'img/help.png'; ?>" width="16" height="16" title="<?php _e('Help', $this->text_domain ); ?>" alt="help"></a></h1>
|
5 |
+
<div class="pz-lkc-header-goto"><a href="<?php echo $this->settings_url; ?>"><span class="pz-lkc-header-goto-icon"><?php echo __('⚙️', $this->text_domain ); ?></span><span class="pz-lkc-header-goto-text"><?php echo __('Settings', $this->text_domain ); ?></span></a></div>
|
6 |
<div class="pz-lkc-clear-both"> </div>
|
7 |
<input type="text" class="pz-lkc-display pz-lkc-hide" name="pz-lkc-debug" value="<?php echo $this->options['debug-mode']; ?>" />
|
8 |
<input type="text" class="pz-lkc-display pz-lkc-hide" name="pz-lkc-admin" value="<?php echo $this->options['admin-mode']; ?>" />
|
169 |
}
|
170 |
foreach ($bulk_id as $data_id ) {
|
171 |
$data = $this->pz_GetCache(array('id' => $data_id ) );
|
172 |
+
$result = null;
|
173 |
if (isset($data ) && is_array($data ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
$result = $this->pz_SetCache($data );
|
175 |
+
}
|
176 |
+
if ($result ) {
|
177 |
$success_count++;
|
178 |
} else {
|
179 |
$skip_count++;
|
253 |
<td>
|
254 |
<form id="import" method="get">
|
255 |
<?php wp_nonce_field('pz_cacheman' ); ?>
|
256 |
+
<input type="hidden" name="page" value="pz-linkcard-cacheman">
|
257 |
<input type="hidden" name="action" value="import-menu">
|
258 |
<button type="submit" name="import" class="button" value="import-file"><?php _e('Import', $this->text_domain ); ?></button>
|
259 |
</form>
|
261 |
<td>
|
262 |
<form id="export" method="get">
|
263 |
<?php wp_nonce_field('pz_cacheman' ); ?>
|
264 |
+
<input type="hidden" name="page" value="pz-linkcard-cacheman">
|
265 |
<input type="hidden" name="action" value="export">
|
266 |
<button type="submit" name="export" class="button" value="export-file"><?php _e('Export', $this->text_domain ); ?></button>
|
267 |
</form>
|
lib/pz-linkcard-file-export.php
CHANGED
@@ -46,8 +46,11 @@
|
|
46 |
fputs($handle, $column_output."\n");
|
47 |
|
48 |
// データ行出力
|
49 |
-
foreach($data_all as
|
50 |
-
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
// ファイルを閉じる
|
46 |
fputs($handle, $column_output."\n");
|
47 |
|
48 |
// データ行出力
|
49 |
+
foreach($data_all as &$data ) {
|
50 |
+
foreach($data as &$item ) {
|
51 |
+
$item = str_replace(array("\r", "\n", "\t" ), ' ', $item );
|
52 |
+
}
|
53 |
+
fputcsv($handle, $data, ',', '"' );
|
54 |
}
|
55 |
|
56 |
// ファイルを閉じる
|
lib/pz-linkcard-init.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
}
|
13 |
|
14 |
// オプション取得
|
15 |
-
$
|
16 |
|
17 |
// 開発環境用ログ
|
18 |
if ($this->options['develop-mode'] ) {
|
@@ -89,7 +89,7 @@
|
|
89 |
}
|
90 |
|
91 |
// オプションの更新
|
92 |
-
$overwrite = array('plugin-
|
93 |
foreach ($overwrite as $key ) {
|
94 |
$this->options[$key] = $this->defaults[$key];
|
95 |
}
|
@@ -168,7 +168,6 @@
|
|
168 |
foreach($result_datas as $data ) {
|
169 |
if ($data->url == $last_url && $data->id <> $last_id ) {
|
170 |
$result = $wpdb->delete($this->db_name, array('id' => $data->id ), array('%d' ) );
|
171 |
-
// echo '[DEBUG]重複URLを削除="'.print_r($result, true ).'"<br>';
|
172 |
}
|
173 |
$last_url = $data->url;
|
174 |
$last_id = $data->id;
|
@@ -177,59 +176,56 @@
|
|
177 |
|
178 |
// バグデータのメンテナンス(ハッシュURLの再生成)
|
179 |
$result_datas = (array) $wpdb->get_results("SELECT id,url,url_key FROM $this->db_name ORDER BY id" );
|
180 |
-
// echo '[DEBUG]Remake URL_Key: Select All Record="'.print_r($result, true ).'"<br>';
|
181 |
if (isset($result_datas ) && is_array($result_datas ) && count($result_datas ) > 0 ) {
|
182 |
foreach($result_datas as $data ) {
|
183 |
$new_url_key = hash('sha256', esc_url($data->url ), true );
|
184 |
if ($data->url_key <> $new_url_key ) {
|
185 |
$result = $wpdb->update($this->db_name, array('url_key' => $new_url_key ) , array('id' => $data->id ) );
|
186 |
-
// echo '[DEBUG]- Remake URL Result="'.print_r($result, true ).'"<br>';
|
187 |
}
|
188 |
}
|
189 |
}
|
190 |
|
191 |
// バグデータのメンテナンス(ドメイン名が空欄のもの)
|
192 |
$result_datas = (array) $wpdb->get_results("SELECT id,url,url_key,domain FROM $this->db_name WHERE domain = '' ORDER BY id" );
|
193 |
-
// echo '[DEBUG]Null Domain: Select All Record="'.print_r($result, true ).'"<br>';
|
194 |
if (isset($result_datas ) && is_array($result_datas ) && count($result_datas ) > 0 ) {
|
195 |
foreach($result_datas as $data ) {
|
196 |
$domain = '(Unknown)';
|
197 |
$result = $wpdb->update($this->db_name, array('domain' => $domain ) , array('id' => $data->id ) );
|
198 |
-
echo '[DEBUG]- Set Domain Result="'.print_r($result, true ).'"<br>';
|
199 |
}
|
200 |
}
|
201 |
|
202 |
// 古い項目から新しい項目へ転記(uptime → update_time)
|
203 |
$result = $wpdb->get_results("UPDATE $this->db_name SET update_time = uptime WHERE update_time IS NULL OR update_time = 0" );
|
204 |
-
// echo '[DEBUG]uptime -> update_time="'.print_r($result, true ).'"<br>';
|
205 |
|
206 |
// 古い項目から新しい項目へ転記(result_code → update_result)
|
207 |
$result = $wpdb->get_results("UPDATE $this->db_name SET update_result = result_code , result_code = 0 WHERE result_code > 0 AND ( update_result IS NULL OR update_result = 0 )" );
|
208 |
-
// echo '[DEBUG]result_code -> update_result="'.print_r($result, true ).'"<br>';
|
209 |
|
210 |
// 古い項目から新しい項目へ転記(post_id → use_post_id1)
|
211 |
$result = $wpdb->get_results("UPDATE $this->db_name SET use_post_id1 = post_id , post_id = 0 WHERE (use_post_id1 IS NULL OR use_post_id1 = 0 ) AND post_id > 0" );
|
212 |
-
// echo '[DEBUG]post_id -> use_post_id="'.print_r($result, true ).'"<br>';
|
213 |
|
214 |
// 過去バージョンからのコンバート(生存確認用のデータ作成)
|
215 |
$result = $wpdb->get_results("UPDATE $this->db_name SET update_result = 200 WHERE update_result IS NULL OR update_result = 0" );
|
216 |
-
// echo '[DEBUG]update_resultがNULL="'.print_r($result, true ).'"<br>';
|
217 |
$result = $wpdb->get_results("UPDATE $this->db_name SET alive_result = update_result , alive_time = update_time WHERE alive_result IS NULL OR alive_result = 0 OR alive_time = 0" );
|
218 |
-
// echo '[DEBUG]alive_resultがNULL="'.print_r($result, true ).'"<br>';
|
219 |
$result = $wpdb->get_results("UPDATE $this->db_name SET alive_nexttime = alive_time WHERE alive_nexttime IS NULL OR alive_nexttime = 0" );
|
220 |
-
// echo '[DEBUG]alive_nexttimeがNULL="'.print_r($result, true ).'"<br>';
|
221 |
|
222 |
// 過去バージョンからのコンバート(取得時テキストの作成)
|
223 |
$result = $wpdb->get_results("UPDATE $this->db_name SET regist_title = title , regist_excerpt = excerpt , regist_time = update_time , regist_result = update_result , regist_charset = charset WHERE (regist_title = NULL AND regist_excerpt = NULL ) AND (title <> NULL OR excerpt <> NULL )" );
|
224 |
-
// echo '[DEBUG]regist_titlle , regist_excerpt がNULL="'.print_r($result, true ).'"<br>';
|
225 |
|
226 |
// 過去バージョンからのコンバート(次回SNS取得日時)
|
227 |
$result = $wpdb->get_results("UPDATE $this->db_name SET sns_time = update_time , sns_nexttime = nexttime WHERE sns_nexttime = 0" );
|
228 |
-
// echo '[DEBUG]sns_nexttimeがNULL="'.print_r($result, true ).'"<br>';
|
229 |
|
230 |
// 未使用になった列を削除する
|
231 |
$drop_field = array('link_type' , 'location' , 'post_id' , 'post_date' , 'address' , 'means' , 'nexttime' , 'regist' , 'result_code' , 'uptime' );
|
232 |
foreach($drop_field as $name ) {
|
233 |
$result = $wpdb->query("ALTER TABLE $this->db_name DROP COLUMN ".$name );
|
234 |
-
// echo '[DEBUG]列削除['.$name.']="'.print_r($result, true ).'"<br>';
|
235 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
13 |
|
14 |
// オプション取得
|
15 |
+
$result = $this->pz_GetOption();
|
16 |
|
17 |
// 開発環境用ログ
|
18 |
if ($this->options['develop-mode'] ) {
|
89 |
}
|
90 |
|
91 |
// オプションの更新
|
92 |
+
$overwrite = array('plugin-name', 'plugin-abbreviation', 'plugin-version', 'plugin-path', 'author-url', 'author-name', 'author-twitter' );
|
93 |
foreach ($overwrite as $key ) {
|
94 |
$this->options[$key] = $this->defaults[$key];
|
95 |
}
|
168 |
foreach($result_datas as $data ) {
|
169 |
if ($data->url == $last_url && $data->id <> $last_id ) {
|
170 |
$result = $wpdb->delete($this->db_name, array('id' => $data->id ), array('%d' ) );
|
|
|
171 |
}
|
172 |
$last_url = $data->url;
|
173 |
$last_id = $data->id;
|
176 |
|
177 |
// バグデータのメンテナンス(ハッシュURLの再生成)
|
178 |
$result_datas = (array) $wpdb->get_results("SELECT id,url,url_key FROM $this->db_name ORDER BY id" );
|
|
|
179 |
if (isset($result_datas ) && is_array($result_datas ) && count($result_datas ) > 0 ) {
|
180 |
foreach($result_datas as $data ) {
|
181 |
$new_url_key = hash('sha256', esc_url($data->url ), true );
|
182 |
if ($data->url_key <> $new_url_key ) {
|
183 |
$result = $wpdb->update($this->db_name, array('url_key' => $new_url_key ) , array('id' => $data->id ) );
|
|
|
184 |
}
|
185 |
}
|
186 |
}
|
187 |
|
188 |
// バグデータのメンテナンス(ドメイン名が空欄のもの)
|
189 |
$result_datas = (array) $wpdb->get_results("SELECT id,url,url_key,domain FROM $this->db_name WHERE domain = '' ORDER BY id" );
|
|
|
190 |
if (isset($result_datas ) && is_array($result_datas ) && count($result_datas ) > 0 ) {
|
191 |
foreach($result_datas as $data ) {
|
192 |
$domain = '(Unknown)';
|
193 |
$result = $wpdb->update($this->db_name, array('domain' => $domain ) , array('id' => $data->id ) );
|
|
|
194 |
}
|
195 |
}
|
196 |
|
197 |
// 古い項目から新しい項目へ転記(uptime → update_time)
|
198 |
$result = $wpdb->get_results("UPDATE $this->db_name SET update_time = uptime WHERE update_time IS NULL OR update_time = 0" );
|
|
|
199 |
|
200 |
// 古い項目から新しい項目へ転記(result_code → update_result)
|
201 |
$result = $wpdb->get_results("UPDATE $this->db_name SET update_result = result_code , result_code = 0 WHERE result_code > 0 AND ( update_result IS NULL OR update_result = 0 )" );
|
|
|
202 |
|
203 |
// 古い項目から新しい項目へ転記(post_id → use_post_id1)
|
204 |
$result = $wpdb->get_results("UPDATE $this->db_name SET use_post_id1 = post_id , post_id = 0 WHERE (use_post_id1 IS NULL OR use_post_id1 = 0 ) AND post_id > 0" );
|
|
|
205 |
|
206 |
// 過去バージョンからのコンバート(生存確認用のデータ作成)
|
207 |
$result = $wpdb->get_results("UPDATE $this->db_name SET update_result = 200 WHERE update_result IS NULL OR update_result = 0" );
|
|
|
208 |
$result = $wpdb->get_results("UPDATE $this->db_name SET alive_result = update_result , alive_time = update_time WHERE alive_result IS NULL OR alive_result = 0 OR alive_time = 0" );
|
|
|
209 |
$result = $wpdb->get_results("UPDATE $this->db_name SET alive_nexttime = alive_time WHERE alive_nexttime IS NULL OR alive_nexttime = 0" );
|
|
|
210 |
|
211 |
// 過去バージョンからのコンバート(取得時テキストの作成)
|
212 |
$result = $wpdb->get_results("UPDATE $this->db_name SET regist_title = title , regist_excerpt = excerpt , regist_time = update_time , regist_result = update_result , regist_charset = charset WHERE (regist_title = NULL AND regist_excerpt = NULL ) AND (title <> NULL OR excerpt <> NULL )" );
|
|
|
213 |
|
214 |
// 過去バージョンからのコンバート(次回SNS取得日時)
|
215 |
$result = $wpdb->get_results("UPDATE $this->db_name SET sns_time = update_time , sns_nexttime = nexttime WHERE sns_nexttime = 0" );
|
|
|
216 |
|
217 |
// 未使用になった列を削除する
|
218 |
$drop_field = array('link_type' , 'location' , 'post_id' , 'post_date' , 'address' , 'means' , 'nexttime' , 'regist' , 'result_code' , 'uptime' );
|
219 |
foreach($drop_field as $name ) {
|
220 |
$result = $wpdb->query("ALTER TABLE $this->db_name DROP COLUMN ".$name );
|
|
|
221 |
}
|
222 |
+
|
223 |
+
// 文字コードの表記ぶれを修正
|
224 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'UTF-8' WHERE charset like 'UTF-8%'" );
|
225 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'EUC-JP' WHERE charset like 'EUC-JP%'" );
|
226 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'ISO-8859-1' WHERE charset like 'ISO-8859-1%'" );
|
227 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'JIS' WHERE charset like 'JIS%'" );
|
228 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'Shift_JIS' WHERE charset like 'SJIS%'" );
|
229 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'Shift_JIS' WHERE charset like 'Shift_JIS%'" );
|
230 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'US-ASCII' WHERE charset like 'US-ASCII%'" );
|
231 |
+
$result = $wpdb->get_results("UPDATE $this->db_name SET charset = 'Unknown' WHERE charset IS NULL" );
|
lib/pz-linkcard-settings-setup.php
CHANGED
@@ -1,59 +1,54 @@
|
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
2 |
<?php
|
3 |
// ログのディレクトリの用意
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
if (!
|
8 |
-
|
9 |
-
|
10 |
-
$url = null;
|
11 |
-
}
|
12 |
-
}
|
13 |
-
if ($dir ) {
|
14 |
-
$dir_url = preg_replace('/.*(\/\/.*)/', '$1', $dir_url ); // スキームを外す
|
15 |
-
$this->options['debug-dir'] = $dir;
|
16 |
-
$this->options['debug-url'] = $dir_url;
|
17 |
}
|
18 |
}
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
// スタイルシートのパスを用意
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
if (!
|
25 |
-
|
26 |
-
|
27 |
-
$url = null;
|
28 |
-
}
|
29 |
-
}
|
30 |
-
if ($dir ) {
|
31 |
-
$dir_url = preg_replace('/.*(\/\/.*)/', '$1', $dir_url ); // スキームを外す
|
32 |
-
$this->options['css-path'] = $dir .'style.css';
|
33 |
-
$this->options['css-url'] = $dir_url.'style.css';
|
34 |
}
|
35 |
}
|
|
|
|
|
|
|
|
|
|
|
36 |
$this->options['css-templete'] = $this->plugin_dir_path.'templete/pz-linkcard-templete.css'; // 元となるテンプレート
|
37 |
|
38 |
// サムネイルのキャッシュディレクトリの用意
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
if (!
|
43 |
-
|
44 |
-
|
45 |
-
$url = null;
|
46 |
-
}
|
47 |
-
}
|
48 |
-
if ($dir ) {
|
49 |
-
$dir_url = preg_replace('/.*(\/\/.*)/', '$1', $dir_url ); // スキームを外す
|
50 |
-
$this->options['thumbnail-dir'] = $dir;
|
51 |
-
$this->options['thumbnail-url'] = $dir_url;
|
52 |
}
|
53 |
}
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
// 開発環境のチェック
|
56 |
-
|
|
|
57 |
$this->options['develop-mode'] = true;
|
58 |
} else {
|
59 |
$this->options['develop-mode'] = false;
|
@@ -62,7 +57,7 @@
|
|
62 |
// ユーザーエージェントの設定
|
63 |
$crawler = 'Pz-LinkCard-Crawler/';
|
64 |
if (!$this->options['user-agent'] || mb_substr($this->options['user-agent'], 0, mb_strlen($crawler ) ) == $crawler ) {
|
65 |
-
$this->options['user-agent'] = $crawler.$this->
|
66 |
}
|
67 |
|
68 |
// 管理者モード解除
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
2 |
<?php
|
3 |
// ログのディレクトリの用意
|
4 |
+
$dir = $this->upload_dir_path.'debug/';
|
5 |
+
$dir_url = $this->upload_dir_url .'debug/';
|
6 |
+
if (!is_dir($dir ) ) {
|
7 |
+
if (!wp_mkdir_p($dir ) ) {
|
8 |
+
$dir = null;
|
9 |
+
$url = null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
}
|
11 |
}
|
12 |
+
if ($dir ) {
|
13 |
+
$dir_url = preg_replace('/.*(\/\/.*)/', '$1', $dir_url ); // スキームを外す
|
14 |
+
$this->options['debug-dir'] = $dir;
|
15 |
+
$this->options['debug-url'] = $dir_url;
|
16 |
+
}
|
17 |
|
18 |
// スタイルシートのパスを用意
|
19 |
+
$dir = $this->upload_dir_path;
|
20 |
+
$dir_url = $this->upload_dir_url ;
|
21 |
+
if (!is_dir($dir ) ) {
|
22 |
+
if (!wp_mkdir_p($dir ) ) {
|
23 |
+
$dir = null;
|
24 |
+
$url = null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
}
|
27 |
+
if ($dir ) {
|
28 |
+
$dir_url = preg_replace('/.*(\/\/.*)/', '$1', $dir_url ); // スキームを外す
|
29 |
+
$this->options['css-path'] = $dir .'style.css';
|
30 |
+
$this->options['css-url'] = $dir_url.'style.css';
|
31 |
+
}
|
32 |
$this->options['css-templete'] = $this->plugin_dir_path.'templete/pz-linkcard-templete.css'; // 元となるテンプレート
|
33 |
|
34 |
// サムネイルのキャッシュディレクトリの用意
|
35 |
+
$dir = $this->upload_dir_path.'cache/';
|
36 |
+
$dir_url = $this->upload_dir_url .'cache/';
|
37 |
+
if (!is_dir($dir ) ) {
|
38 |
+
if (!wp_mkdir_p($dir ) ) {
|
39 |
+
$dir = null;
|
40 |
+
$url = null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
}
|
43 |
+
if ($dir ) {
|
44 |
+
$dir_url = preg_replace('/.*(\/\/.*)/', '$1', $dir_url ); // スキームを外す
|
45 |
+
$this->options['thumbnail-dir'] = $dir;
|
46 |
+
$this->options['thumbnail-url'] = $dir_url;
|
47 |
+
}
|
48 |
|
49 |
// 開発環境のチェック
|
50 |
+
$develop_url = 'https://application.secret.jp/develop/';
|
51 |
+
if (isset($this->home_url ) && (mb_substr($this->home_url.'/', 0, mb_strlen($develop_url ) ) == $develop_url ) ) {
|
52 |
$this->options['develop-mode'] = true;
|
53 |
} else {
|
54 |
$this->options['develop-mode'] = false;
|
57 |
// ユーザーエージェントの設定
|
58 |
$crawler = 'Pz-LinkCard-Crawler/';
|
59 |
if (!$this->options['user-agent'] || mb_substr($this->options['user-agent'], 0, mb_strlen($crawler ) ) == $crawler ) {
|
60 |
+
$this->options['user-agent'] = $crawler.$this->defaults['plugin-version'];
|
61 |
}
|
62 |
|
63 |
// 管理者モード解除
|
lib/pz-linkcard-settings-validate.php
CHANGED
@@ -1,81 +1,55 @@
|
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
2 |
<?php
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
$url = $this->pz_EncodeURL($url );
|
31 |
-
$this->options[$key] = $url;
|
32 |
-
|
33 |
-
// カード幅
|
34 |
-
$width = $this->options['width'];
|
35 |
-
if ($width) {
|
36 |
-
if (substr($width, -1 ) == '%') {
|
37 |
-
$width = pz_TrimNum($width, 0);
|
38 |
-
if ($width < 1 || $width > 100) {
|
39 |
-
$this->options['width'] = $this->defaults['width'];
|
40 |
-
} else {
|
41 |
-
$this->options['width'] = $width.'%';
|
42 |
-
}
|
43 |
-
} else {
|
44 |
-
$this->options['width'] = pz_TrimNum($width, $this->defaults['width']).'px';
|
45 |
-
}
|
46 |
-
}
|
47 |
-
|
48 |
-
// 記事の高さ
|
49 |
-
if ($this->options['content-height']) {
|
50 |
-
$this->options['content-height'] = pz_TrimNum($this->options['content-height'], $this->defaults['content-height'] ).'px';
|
51 |
-
}
|
52 |
-
|
53 |
-
// 数値項目の不正文字をチェック(数字以外が入っていたら修正)
|
54 |
-
$this->options['trim-title'] = pz_TrimNum($this->options['trim-title'], $this->defaults['trim-title']);
|
55 |
-
$this->options['trim-url'] = pz_TrimNum($this->options['trim-url'], $this->defaults['trim-url']);
|
56 |
-
$this->options['trim-excerpt'] = pz_TrimNum($this->options['trim-excerpt'], $this->defaults['trim-excerpt']);
|
57 |
-
$this->options['trim-info'] = pz_TrimNum($this->options['trim-info'], $this->defaults['trim-info']);
|
58 |
-
$this->options['size-title'] = pz_TrimNum($this->options['size-title'], $this->defaults['size-title']).'px';
|
59 |
-
$this->options['size-url'] = pz_TrimNum($this->options['size-url'], $this->defaults['size-url']).'px';
|
60 |
-
$this->options['size-excerpt'] = pz_TrimNum($this->options['size-excerpt'], $this->defaults['size-excerpt']).'px';
|
61 |
-
$this->options['size-more'] = pz_TrimNum($this->options['size-more'], $this->defaults['size-more']).'px';
|
62 |
-
$this->options['size-info'] = pz_TrimNum($this->options['size-info'], $this->defaults['size-info']).'px';
|
63 |
-
$this->options['size-added'] = pz_TrimNum($this->options['size-added'], $this->defaults['size-added']).'px';
|
64 |
-
$this->options['height-title'] = pz_TrimNum($this->options['height-title'], $this->defaults['height-title']).'px';
|
65 |
-
$this->options['height-url'] = pz_TrimNum($this->options['height-url'], $this->defaults['height-url']).'px';
|
66 |
-
$this->options['height-excerpt'] = pz_TrimNum($this->options['height-excerpt'], $this->defaults['height-excerpt']).'px';
|
67 |
-
$this->options['height-more'] = pz_TrimNum($this->options['height-more'], $this->defaults['height-more']).'px';
|
68 |
-
$this->options['height-info'] = pz_TrimNum($this->options['height-info'], $this->defaults['height-info']).'px';
|
69 |
-
$this->options['height-added'] = pz_TrimNum($this->options['height-added'], $this->defaults['height-added']).'px';
|
70 |
-
$this->options['thumbnail-width'] = pz_TrimNum($this->options['thumbnail-width'], $this->defaults['thumbnail-width']).'px';
|
71 |
-
$this->options['thumbnail-height'] = pz_TrimNum($this->options['thumbnail-height'], $this->defaults['thumbnail-height']).'px';
|
72 |
-
$this->options['border-width'] = pz_TrimNum($this->options['border-width'], $this->defaults['border-width']).'px';
|
73 |
-
|
74 |
-
// カラーコードの不正文字をチェック
|
75 |
-
$check_item = array('color-title', 'color-url', 'color-excerpt', 'color-more', 'color-info', 'color-added', 'color-title', 'color-url', 'color-excerpt', 'color-more', 'color-info', 'color-added', 'ex-border-color', 'in-border-color', 'th-border-color', 'ex-bgcolor', 'in-bgcolor', 'th-bgcolor' );
|
76 |
-
foreach($check_item as $key ) {
|
77 |
-
if ($this->options[$key] == '') {
|
78 |
-
$this->options[$key] = $this->defaults[$key];
|
79 |
-
}
|
80 |
-
}
|
81 |
-
// echo '<div class="notice notice-warning is-dismissible"><p><strong>'.__('Color code does not conform to HTML color code.', $this->text_domain).'</strong></p></div>';
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
2 |
<?php
|
3 |
+
// エラー
|
4 |
+
$flg_error = false;
|
5 |
+
|
6 |
+
// Webフォームから入力されたクォート文字を除去する
|
7 |
+
$check_item = array('ex-image', 'in-image', 'th-image', 'ex-info', 'in-info', 'th-info' );
|
8 |
+
foreach($check_item as $key ) {
|
9 |
+
$this->options[$key] = stripslashes($this->options[$key] );
|
10 |
+
}
|
11 |
+
|
12 |
+
// サイトアイコン画像取得URL
|
13 |
+
$key = 'favicon-api';
|
14 |
+
$url = $this->options[$key] ? $this->options[$key] : $this->defaults[$key] ;
|
15 |
+
$url = $this->pz_EncodeURL($url );
|
16 |
+
$url = preg_replace( array('/%DOMAIN%/i', '/%DOMAIN_URL%/i', '/%URL%/i' ), array('%DOMAIN%', '%DOMAIN_URL%', '%URL%'), $url ); // パラメータ文字を大文字にする
|
17 |
+
$this->options[$key] = $url;
|
18 |
+
|
19 |
+
// サムネイル画像取得URL
|
20 |
+
$key = 'thumbnail-api';
|
21 |
+
$url = $this->options[$key] ? $this->options[$key] : $this->defaults[$key] ;
|
22 |
+
$url = $this->pz_EncodeURL($url );
|
23 |
+
$url = preg_replace( array('/%DOMAIN%/i', '/%DOMAIN_URL%/i', '/%URL%/i' ), array('%DOMAIN%', '%DOMAIN_URL%', '%URL%'), $url ); // パラメータ文字を大文字にする
|
24 |
+
$this->options[$key] = $url;
|
25 |
+
|
26 |
+
// 追加CSS用URL
|
27 |
+
$key = 'css-add-url';
|
28 |
+
$url = isset($this->options[$key] ) ? $this->options[$key] : null ;
|
29 |
+
$url = $this->pz_EncodeURL($url );
|
30 |
+
$this->options[$key] = $url;
|
31 |
+
|
32 |
+
// 数値
|
33 |
+
$this->options['trim-title'] = pz_TrimNum($this->options['trim-title'] );
|
34 |
+
$this->options['trim-url'] = pz_TrimNum($this->options['trim-url'] );
|
35 |
+
$this->options['trim-excerpt'] = pz_TrimNum($this->options['trim-excerpt'] );
|
36 |
+
$this->options['trim-info'] = pz_TrimNum($this->options['trim-info'] );
|
37 |
|
38 |
+
// 数値(px)
|
39 |
+
$this->options['width'] = pz_TrimNumPx($this->options['width'] ); // カード幅
|
40 |
+
$this->options['content-height'] = pz_TrimNumPx($this->options['content-height'] ); // 記事の高さ
|
41 |
+
$this->options['size-title'] = pz_TrimNumPx($this->options['size-title'] );
|
42 |
+
$this->options['size-url'] = pz_TrimNumPx($this->options['size-url'] );
|
43 |
+
$this->options['size-excerpt'] = pz_TrimNumPx($this->options['size-excerpt'] );
|
44 |
+
$this->options['size-more'] = pz_TrimNumPx($this->options['size-more'] );
|
45 |
+
$this->options['size-info'] = pz_TrimNumPx($this->options['size-info'] );
|
46 |
+
$this->options['size-added'] = pz_TrimNumPx($this->options['size-added'] );
|
47 |
+
$this->options['height-title'] = pz_TrimNumPx($this->options['height-title'] );
|
48 |
+
$this->options['height-url'] = pz_TrimNumPx($this->options['height-url'] );
|
49 |
+
$this->options['height-excerpt'] = pz_TrimNumPx($this->options['height-excerpt'] );
|
50 |
+
$this->options['height-more'] = pz_TrimNumPx($this->options['height-more'] );
|
51 |
+
$this->options['height-info'] = pz_TrimNumPx($this->options['height-info'] );
|
52 |
+
$this->options['height-added'] = pz_TrimNumPx($this->options['height-added'] );
|
53 |
+
$this->options['thumbnail-width'] = pz_TrimNumPx($this->options['thumbnail-width'] );
|
54 |
+
$this->options['thumbnail-height'] = pz_TrimNumPx($this->options['thumbnail-height'] );
|
55 |
+
$this->options['border-width'] = pz_TrimNumPx($this->options['border-width'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lib/pz-linkcard-settings.php
CHANGED
@@ -1,15 +1,14 @@
|
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
|
|
2 |
<div class="pz-lkc-dashboard wrap">
|
3 |
-
<?php /* 開発者モード */ if ($this->options['develop-mode'] ) { echo '<div class="pz-lkc-develop-message">'.__('Currently working in a development environment.', $this->text_domain ).'</div>'; } ?>
|
4 |
<h1 class="pz-lkc-header-settings"><span class="pz-lkc-header-settings-icon"><?php echo __('⚙️', $this->text_domain ); ?></span> <?php _e('LinkCard Settings', $this->text_domain ); ?> <a href="<?php echo $this->options['author-url']; ?>/pz-linkcard-manager" rel="external noopener help" target="_blank"><img src="<?php echo $this->plugin_dir_url.'img/help.png'; ?>" width="16" height="16" title="<?php _e('Help', $this->text_domain ); ?>" alt="help"></a></h1>
|
5 |
-
<div class="pz-lkc-header-goto"><a href="
|
6 |
<div class="pz-lkc-clear-both"> </div>
|
7 |
<?php
|
8 |
// 変数の設定
|
9 |
$action = isset($_POST['action']) ? $_POST['action'] : null ;
|
10 |
$properties = isset($_POST['properties']) ? $_POST['properties'] : null ;
|
11 |
$tab_now = isset($_POST['pz-lkc-tab-now'] ) ? $_POST['pz-lkc-tab-now'] : null ;
|
12 |
-
$before = $this->options;
|
13 |
|
14 |
if ($properties ) {
|
15 |
check_admin_referer('pz_options' );
|
@@ -20,7 +19,6 @@
|
|
20 |
echo '<div class="notice notice-success is-dismissible"><p><strong>'.__('Succeeded in initialize the settings.', $this->text_domain ).'</strong></p></div>';
|
21 |
} else {
|
22 |
echo '<div class="notice notice-error is-dismissible"><p><strong>'.__('Failed to initialize the settings.', $this->text_domain ).'</strong></p></div>';
|
23 |
-
// echo '<div class="notice notice-info is-dismissible"><p><strong>'.__('The settings have not changed.', $this->text_domain ).'</strong></p></div>';
|
24 |
}
|
25 |
$result = $this->pz_SetStyle(); // スタイルシート生成
|
26 |
break;
|
@@ -35,19 +33,16 @@
|
|
35 |
break;
|
36 |
default:
|
37 |
// 「変更を保存」もしくは「プラグインの再起動」をクリックしたとき
|
38 |
-
$this->
|
39 |
-
|
40 |
-
|
41 |
-
foreach ($this->defaults as $key => $value ) {
|
42 |
-
if (!array_key_exists($key, $this->options ) ) {
|
43 |
-
$this->options[$key] = null;
|
44 |
}
|
45 |
}
|
|
|
46 |
|
47 |
// 値の検証
|
48 |
$flg_error = false;
|
49 |
require_once ('pz-linkcard-settings-validate.php' );
|
50 |
-
|
51 |
if (!$flg_error ) {
|
52 |
$result = $this->pz_UpdateOption(); // オプションの更新
|
53 |
if ($result ) {
|
@@ -57,7 +52,7 @@
|
|
57 |
echo '<div class="notice notice-info is-dismissible"><p><strong>'.__('The settings have not changed.', $this->text_domain ).'</strong></p></div>';
|
58 |
}
|
59 |
}
|
60 |
-
$
|
61 |
}
|
62 |
}
|
63 |
|
@@ -122,6 +117,8 @@
|
|
122 |
?>
|
123 |
<div>
|
124 |
<form action="" method="post">
|
|
|
|
|
125 |
<?php wp_nonce_field('pz_options' ); ?>
|
126 |
<input type="text" class="pz-lkc-tab-now pz-lkc-hide" name="pz-lkc-tab-now" value="<?php echo $tab_now; ?>" />
|
127 |
<input type="text" class="pz-lkc-display pz-lkc-hide" name="pz-lkc-error" value="<?php echo $this->options['error-mode']; ?>" />
|
@@ -178,8 +175,8 @@
|
|
178 |
<tr>
|
179 |
<th scope="row"><?php _e('Occurrence Time', $this->text_domain ); ?></th>
|
180 |
<td>
|
181 |
-
<input
|
182 |
-
|
183 |
</td>
|
184 |
</tr>
|
185 |
</table>
|
@@ -251,6 +248,12 @@
|
|
251 |
<p><a href="<?php echo esc_attr($plugin_url ); ?>" rel="external noopener" target="_blank"><?php echo esc_attr($plugin_url ); ?></a></p>
|
252 |
</td>
|
253 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
<tr class="pz-lkc-admin-only">
|
255 |
<th scope="row"><?php _e('Plugin Name', $this->text_domain ); ?></th>
|
256 |
<td><input name="properties[plugin-name]" type="text" size="20" value="<?php echo esc_attr($this->options['plugin-name'] ); ?>" readonly="readonly" <?php if ($this->options['admin-mode'] ) { echo 'ondblclick="this.readOnly=false;" '; }?>/></td>
|
@@ -505,10 +508,10 @@
|
|
505 |
</td>
|
506 |
</tr>
|
507 |
<tr>
|
508 |
-
<td><?php _e('Width', $this->text_domain ); ?><input name="properties[thumbnail-width]" type="text" size="2" value="<?php echo
|
509 |
</tr>
|
510 |
<tr>
|
511 |
-
<td><?php _e('Height', $this->text_domain ); ?><input name="properties[thumbnail-height]" type="text" size="2" value="<?php echo
|
512 |
</tr>
|
513 |
<tr>
|
514 |
<td><label><input name="properties[thumbnail-shadow]" type="checkbox" value="1" <?php checked($this->options['thumbnail-shadow'] ); ?> /><?php _e('Shadow', $this->text_domain ); ?></label></td>
|
@@ -1065,8 +1068,10 @@
|
|
1065 |
</tr>
|
1066 |
|
1067 |
<tr>
|
1068 |
-
<th scope="row"><?php _e('Google AMP
|
1069 |
-
<td
|
|
|
|
|
1070 |
</tr>
|
1071 |
|
1072 |
<tr>
|
@@ -1091,7 +1096,7 @@
|
|
1091 |
</tr>
|
1092 |
<tr class="pz-lkc-debug-only">
|
1093 |
<th scope="row"><span class="pz-lkc-admin-text"><?php _e('Administrator Mode', $this->text_domain ); ?></span></th>
|
1094 |
-
<td><label class="pz-lkc-admin-text"><input name="properties[admin-mode]" type="checkbox" value="1" class="pz-lkc-tab-show" <?php checked($this->options['admin-mode'] );
|
1095 |
</tr>
|
1096 |
<tr class="pz-lkc-develop-only">
|
1097 |
<th scope="row"><span><?php _e('Develop Mode', $this->text_domain ); ?></span></th>
|
@@ -1230,52 +1235,74 @@
|
|
1230 |
</div>
|
1231 |
</div>
|
1232 |
<?php
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
return $val;
|
1242 |
}
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
}
|
1249 |
-
|
1250 |
-
|
1251 |
-
$
|
1252 |
-
$handle = opendir($dir );
|
1253 |
-
if (!$handle ) {
|
1254 |
-
return null;
|
1255 |
-
}
|
1256 |
-
while ($file = readdir($handle ) ) {
|
1257 |
-
$fullpath = $dir.'/'.$file;
|
1258 |
-
if (is_dir($fullpath ) ) {
|
1259 |
-
if ($file != '..' && $file != '.' ) {
|
1260 |
-
$size += pz_GetDirSize($fullpath );
|
1261 |
-
}
|
1262 |
-
} else {
|
1263 |
-
$size += filesize($fullpath );
|
1264 |
-
}
|
1265 |
-
}
|
1266 |
-
return $size;
|
1267 |
}
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
|
|
|
|
1273 |
}
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1278 |
} else {
|
1279 |
-
|
1280 |
}
|
1281 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php defined('ABSPATH' ) || wp_die; ?>
|
2 |
+
<?php /* 開発者モード */ if ($this->options['develop-mode'] ) { echo '<div class="pz-lkc-develop-message">'.__('Currently working in a development environment.', $this->text_domain ).'</div>'; } ?>
|
3 |
<div class="pz-lkc-dashboard wrap">
|
|
|
4 |
<h1 class="pz-lkc-header-settings"><span class="pz-lkc-header-settings-icon"><?php echo __('⚙️', $this->text_domain ); ?></span> <?php _e('LinkCard Settings', $this->text_domain ); ?> <a href="<?php echo $this->options['author-url']; ?>/pz-linkcard-manager" rel="external noopener help" target="_blank"><img src="<?php echo $this->plugin_dir_url.'img/help.png'; ?>" width="16" height="16" title="<?php _e('Help', $this->text_domain ); ?>" alt="help"></a></h1>
|
5 |
+
<div class="pz-lkc-header-goto"><a href="<?php echo $this->cacheman_url; ?>"><span class="pz-lkc-header-goto-icon"><?php echo __('🗃️', $this->text_domain ); ?></span><span class="pz-lkc-header-goto-text"><?php echo __('Cache Manager', $this->text_domain ); ?></span></a></div>
|
6 |
<div class="pz-lkc-clear-both"> </div>
|
7 |
<?php
|
8 |
// 変数の設定
|
9 |
$action = isset($_POST['action']) ? $_POST['action'] : null ;
|
10 |
$properties = isset($_POST['properties']) ? $_POST['properties'] : null ;
|
11 |
$tab_now = isset($_POST['pz-lkc-tab-now'] ) ? $_POST['pz-lkc-tab-now'] : null ;
|
|
|
12 |
|
13 |
if ($properties ) {
|
14 |
check_admin_referer('pz_options' );
|
19 |
echo '<div class="notice notice-success is-dismissible"><p><strong>'.__('Succeeded in initialize the settings.', $this->text_domain ).'</strong></p></div>';
|
20 |
} else {
|
21 |
echo '<div class="notice notice-error is-dismissible"><p><strong>'.__('Failed to initialize the settings.', $this->text_domain ).'</strong></p></div>';
|
|
|
22 |
}
|
23 |
$result = $this->pz_SetStyle(); // スタイルシート生成
|
24 |
break;
|
33 |
break;
|
34 |
default:
|
35 |
// 「変更を保存」もしくは「プラグインの再起動」をクリックしたとき
|
36 |
+
foreach($this->defaults as $key => $value ) { // 無いキーを生成
|
37 |
+
if (!array_key_exists($key, $properties ) ) {
|
38 |
+
$properties[$key] = null;
|
|
|
|
|
|
|
39 |
}
|
40 |
}
|
41 |
+
$this->options = $properties;
|
42 |
|
43 |
// 値の検証
|
44 |
$flg_error = false;
|
45 |
require_once ('pz-linkcard-settings-validate.php' );
|
|
|
46 |
if (!$flg_error ) {
|
47 |
$result = $this->pz_UpdateOption(); // オプションの更新
|
48 |
if ($result ) {
|
52 |
echo '<div class="notice notice-info is-dismissible"><p><strong>'.__('The settings have not changed.', $this->text_domain ).'</strong></p></div>';
|
53 |
}
|
54 |
}
|
55 |
+
$ressult = $this->pz_SetStyle(); // スタイルシート生成
|
56 |
}
|
57 |
}
|
58 |
|
117 |
?>
|
118 |
<div>
|
119 |
<form action="" method="post">
|
120 |
+
<div style="display: none;"><?php submit_button(); ?></div>
|
121 |
+
|
122 |
<?php wp_nonce_field('pz_options' ); ?>
|
123 |
<input type="text" class="pz-lkc-tab-now pz-lkc-hide" name="pz-lkc-tab-now" value="<?php echo $tab_now; ?>" />
|
124 |
<input type="text" class="pz-lkc-display pz-lkc-hide" name="pz-lkc-error" value="<?php echo $this->options['error-mode']; ?>" />
|
175 |
<tr>
|
176 |
<th scope="row"><?php _e('Occurrence Time', $this->text_domain ); ?></th>
|
177 |
<td>
|
178 |
+
<span class="pz-lkc-admin-only"><input name="properties[error-time]" type="text" value="<?php echo $this->options['error-time']; ?>" readonly="readonly" /></span>
|
179 |
+
<?php echo ($this->options['error-time'] ) ? date($this->datetime_format, $this->options['error-time'] ) : null ; ?>
|
180 |
</td>
|
181 |
</tr>
|
182 |
</table>
|
248 |
<p><a href="<?php echo esc_attr($plugin_url ); ?>" rel="external noopener" target="_blank"><?php echo esc_attr($plugin_url ); ?></a></p>
|
249 |
</td>
|
250 |
</tr>
|
251 |
+
|
252 |
+
<tr class="pz-lkc-admin-only">
|
253 |
+
<th scope="row"><?php _e('PHP Version', $this->text_domain ); ?></th>
|
254 |
+
<td><input type="text" size="20" value="<?php echo phpversion(); ?>" readonly="readonly" ?></td>
|
255 |
+
</tr>
|
256 |
+
|
257 |
<tr class="pz-lkc-admin-only">
|
258 |
<th scope="row"><?php _e('Plugin Name', $this->text_domain ); ?></th>
|
259 |
<td><input name="properties[plugin-name]" type="text" size="20" value="<?php echo esc_attr($this->options['plugin-name'] ); ?>" readonly="readonly" <?php if ($this->options['admin-mode'] ) { echo 'ondblclick="this.readOnly=false;" '; }?>/></td>
|
508 |
</td>
|
509 |
</tr>
|
510 |
<tr>
|
511 |
+
<td><?php _e('Width', $this->text_domain ); ?><input name="properties[thumbnail-width]" type="text" size="2" value="<?php echo $this->options['thumbnail-width']; ?>" /></td>
|
512 |
</tr>
|
513 |
<tr>
|
514 |
+
<td><?php _e('Height', $this->text_domain ); ?><input name="properties[thumbnail-height]" type="text" size="2" value="<?php echo $this->options['thumbnail-height']; ?>" /></td>
|
515 |
</tr>
|
516 |
<tr>
|
517 |
<td><label><input name="properties[thumbnail-shadow]" type="checkbox" value="1" <?php checked($this->options['thumbnail-shadow'] ); ?> /><?php _e('Shadow', $this->text_domain ); ?></label></td>
|
1068 |
</tr>
|
1069 |
|
1070 |
<tr>
|
1071 |
+
<th scope="row"><?php _e('Google AMP determination', $this->text_domain ); ?></th>
|
1072 |
+
<td>
|
1073 |
+
<p><label><input name="properties[flg-amp-url]" type="checkbox" value="1" <?php checked($this->options['flg-amp-url'] ); ?> /><?php echo __('Simplified display if the URL ends with "/amp", "/amp/", or "/?amp=1".', $this->text_domain ).__('(Deprecated)', $this->text_domain ); ?></label></p>
|
1074 |
+
</td>
|
1075 |
</tr>
|
1076 |
|
1077 |
<tr>
|
1096 |
</tr>
|
1097 |
<tr class="pz-lkc-debug-only">
|
1098 |
<th scope="row"><span class="pz-lkc-admin-text"><?php _e('Administrator Mode', $this->text_domain ); ?></span></th>
|
1099 |
+
<td><label class="pz-lkc-admin-text"><input name="properties[admin-mode]" type="checkbox" value="1" class="pz-lkc-tab-show" <?php checked($this->options['admin-mode'] ); wp_readonly(!$this->options['admin-mode'] ); if (!$this->options['admin-mode'] ) { echo 'ondblclick="this.readOnly=false;"'; } ?> /><?php _e('Display information that is not normally needed or open special settings.', $this->text_domain ); _e('(Deprecated)', $this->text_domain ); ?></label></td>
|
1100 |
</tr>
|
1101 |
<tr class="pz-lkc-develop-only">
|
1102 |
<th scope="row"><span><?php _e('Develop Mode', $this->text_domain ); ?></span></th>
|
1235 |
</div>
|
1236 |
</div>
|
1237 |
<?php
|
1238 |
+
|
1239 |
+
// 数値にする
|
1240 |
+
function pz_TrimNum($val ) {
|
1241 |
+
$val = mb_convert_kana($val, 'n' );
|
1242 |
+
$val = strtolower($val );
|
1243 |
+
$val = preg_replace('/[^0-9]/', '', $val );
|
1244 |
+
if ($val <> null) {
|
1245 |
+
$val = intval($val );
|
|
|
1246 |
}
|
1247 |
+
return $val;
|
1248 |
+
}
|
1249 |
+
|
1250 |
+
// 数値にする
|
1251 |
+
function pz_TrimNumPx($val ) {
|
1252 |
+
$unit = null;
|
1253 |
+
$val = mb_convert_kana($val, 'n' );
|
1254 |
+
$val = strtolower($val );
|
1255 |
+
if (substr($val, -1 ) == '%') {
|
1256 |
+
$unit = '%';
|
1257 |
+
} else {
|
1258 |
+
$unit = 'px';
|
1259 |
}
|
1260 |
+
$val = preg_replace('/[^0-9]/', '', $val );
|
1261 |
+
if ($val <> null) {
|
1262 |
+
$val = $val.$unit;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
}
|
1264 |
+
return $val;
|
1265 |
+
}
|
1266 |
+
|
1267 |
+
// HTMLカラーコード
|
1268 |
+
function pz_CheckColorCode($val ) {
|
1269 |
+
if (preg_match('/^#([0-9A-F]{6}|[0-9A-F]{3})$/i', $val ) ) {
|
1270 |
+
return true;
|
1271 |
}
|
1272 |
+
}
|
1273 |
+
|
1274 |
+
// ディレクトリ配下の使用サイズ
|
1275 |
+
function pz_GetDirSize($dir ) {
|
1276 |
+
$size = 0;
|
1277 |
+
$handle = opendir($dir );
|
1278 |
+
if (!$handle ) {
|
1279 |
+
return null;
|
1280 |
+
}
|
1281 |
+
while ($file = readdir($handle ) ) {
|
1282 |
+
$fullpath = $dir.'/'.$file;
|
1283 |
+
if (is_dir($fullpath ) ) {
|
1284 |
+
if ($file != '..' && $file != '.' ) {
|
1285 |
+
$size += pz_GetDirSize($fullpath );
|
1286 |
+
}
|
1287 |
} else {
|
1288 |
+
$size += filesize($fullpath );
|
1289 |
}
|
1290 |
}
|
1291 |
+
return $size;
|
1292 |
+
}
|
1293 |
+
|
1294 |
+
// 数値をKB、MB、TBの単位に変換
|
1295 |
+
function pz_GetSizeStringSi($val ) {
|
1296 |
+
$label = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB' );
|
1297 |
+
for($i = 0; $val >= 1024 && $i < (count($label ) -1 ); $val /= 1024, $i++ );
|
1298 |
+
return (round($val, 2 ).' '.$label[$i] );
|
1299 |
+
}
|
1300 |
+
|
1301 |
+
// 数値をKB、MB、TBの単位に変換
|
1302 |
+
function pz_GetStringBytes($val ) {
|
1303 |
+
if ($val == 1 ) {
|
1304 |
+
return number_format($val ).' byte';
|
1305 |
+
} else {
|
1306 |
+
return number_format($val ).' bytes';
|
1307 |
+
}
|
1308 |
+
}
|
lib/pz-linkcard-style.php
CHANGED
@@ -541,14 +541,15 @@
|
|
541 |
}
|
542 |
|
543 |
// 枠線の太さ
|
544 |
-
$
|
545 |
-
$
|
546 |
-
$
|
547 |
-
$
|
548 |
-
$
|
549 |
-
$
|
550 |
-
$file_text
|
551 |
-
$file_text
|
|
|
552 |
|
553 |
// 抜粋文の部分を凹ませる
|
554 |
if (isset($this->options['content-inset']) && $this->options['content-inset'] == '1') {
|
541 |
}
|
542 |
|
543 |
// 枠線の太さ
|
544 |
+
$border_width = strval(intval(preg_replace('/[^0-9]/', '', $this->options['border-width'] ) ) );
|
545 |
+
$border_style = isset($this->options['border-style'] ) ? $this->options['border-style'] : $this->defaults['border-style'];
|
546 |
+
$border = $border_width.'px '.$border_style.' ';
|
547 |
+
$ex_border = $border.(isset($this->options['ex-border-color']) ? $this->options['ex-border-color'] : $this->defaults['ex-border-color']).';';
|
548 |
+
$in_border = $border.(isset($this->options['in-border-color']) ? $this->options['in-border-color'] : $this->defaults['in-border-color']).';';
|
549 |
+
$th_border = $border.(isset($this->options['th-border-color']) ? $this->options['th-border-color'] : $this->defaults['th-border-color']).';';
|
550 |
+
$file_text = str_replace('/*EX-BORDER*/', 'border: '.$ex_border, $file_text );
|
551 |
+
$file_text = str_replace('/*IN-BORDER*/', 'border: '.$in_border, $file_text );
|
552 |
+
$file_text = str_replace('/*TH-BORDER*/', 'border: '.$th_border, $file_text );
|
553 |
|
554 |
// 抜粋文の部分を凹ませる
|
555 |
if (isset($this->options['content-inset']) && $this->options['content-inset'] == '1') {
|
pz-linkcard.php
CHANGED
@@ -3,25 +3,26 @@
|
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
-
Version: 2.4.
|
7 |
Author: Poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
Text Domain: pz-linkcard
|
10 |
Domain Path: /language
|
11 |
License: GPLv2 or later
|
12 |
*/
|
13 |
-
|
14 |
defined('ABSPATH' ) || wp_die;
|
15 |
|
16 |
-
class
|
17 |
-
|
18 |
-
|
|
|
|
|
19 |
'plugin-name' => 'Pz-LinkCard',
|
20 |
-
'plugin-
|
21 |
'plugin-path' => '/pz-linkcard',
|
22 |
'author-url' => 'https://popozure.info',
|
23 |
-
'author-name' => '
|
24 |
-
'author-twitter' => '
|
25 |
|
26 |
'error-mode' => null,
|
27 |
'error-url' => null,
|
@@ -191,52 +192,55 @@ class Pz_LinkCard {
|
|
191 |
|
192 |
'initialize-settings' => null,
|
193 |
'initialize-operation' => null,
|
194 |
-
'initialize-exception' => null
|
195 |
);
|
196 |
-
private $slug; // スラッグ
|
197 |
-
private $text_domain; // テキスト ドメイン(スラッグと同じ内容)
|
198 |
-
private $charset; // 文字セット
|
199 |
-
private $amp; // Google AMP
|
200 |
-
private $datetime_format; // 日時の書式
|
201 |
-
private $now; // 現在日時(ローカル時間)
|
202 |
-
private $home_url; // 自サイトのトップページURL
|
203 |
-
private $scheme; // 自サイトのスキーム
|
204 |
-
private $domain; // 自サイトのドメイン名
|
205 |
-
private $domain_url; // 自サイトのドメインURL
|
206 |
-
private $plugin_basename; // プラグイン ディレクトリの名前
|
207 |
-
private $plugin_dir_path; // プラグイン ディレクトリのパス
|
208 |
-
private $plugin_dir_url; // プラグイン ディレクトリのURL
|
209 |
-
private $plugin_link; // プラグインページのURL
|
210 |
-
private $upload_dir_path; // アップロード ディレクトリのパス
|
211 |
-
private $upload_dir_url; // アップロード ディレクトリのURL
|
212 |
-
private $db_name; // DBのテーブル名
|
213 |
-
private $suppression; // 出力抑制
|
214 |
-
private $options; // パラメータ
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
public function __construct() {
|
217 |
-
$
|
218 |
-
$this->
|
219 |
-
$this->
|
220 |
-
$this->
|
221 |
-
$this->
|
222 |
-
$this->
|
223 |
-
|
224 |
-
$this->db_name
|
225 |
-
$this->plugin_basename
|
226 |
-
$this->plugin_dir_path
|
227 |
-
$this->plugin_dir_url
|
228 |
-
$wp_upload_dir
|
229 |
-
$this->upload_dir_path
|
230 |
-
$this->upload_dir_url
|
231 |
-
$this->suppression
|
|
|
|
|
232 |
|
233 |
// オプション取得
|
234 |
-
$
|
235 |
|
236 |
-
// 自サイトのURLをセット
|
237 |
-
$this->home_url = esc_url(home_url() ); // 自サイトのトップページURL
|
238 |
-
|
239 |
// URL解析(自サイトチェック)(Optionsを読み込んでから)
|
|
|
240 |
$url_info = $this->Pz_GetURLInfo($this->home_url );
|
241 |
$this->scheme = $url_info['scheme']; // 自サイトのスキーム
|
242 |
$this->domain = $url_info['domain']; // 自サイトのドメイン名
|
@@ -354,7 +358,7 @@ class Pz_LinkCard {
|
|
354 |
}
|
355 |
|
356 |
// ショートコード処理
|
357 |
-
public function shortcode($atts, $content
|
358 |
// 実行時間
|
359 |
if ($this->options['debug-mode'] ) {
|
360 |
if (function_exists('hrtime' ) ) {
|
@@ -403,7 +407,7 @@ class Pz_LinkCard {
|
|
403 |
|
404 |
// 相対URLを絶対URLに変換(ショートコードのURLで相対パス表記の場合、内部リンクと見なす)
|
405 |
if ($this->options['flg-relative-url'] && !mb_strpos($url, '://' ) ) {
|
406 |
-
$url = $this->pz_RelToURL(
|
407 |
}
|
408 |
|
409 |
// URLのサニタイズ&エンティティ化
|
@@ -604,7 +608,7 @@ class Pz_LinkCard {
|
|
604 |
$rel .= ' nofollow'; // nofollow指定。趣味の問題?
|
605 |
}
|
606 |
if ($this->options['noopener'] ) {
|
607 |
-
$rel .= '
|
608 |
}
|
609 |
$rel = ' rel="'.$rel.'"';
|
610 |
|
@@ -742,13 +746,15 @@ class Pz_LinkCard {
|
|
742 |
}
|
743 |
|
744 |
// タイトル整形
|
745 |
-
if
|
746 |
-
$str
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
|
|
|
|
752 |
}
|
753 |
$title = $str;
|
754 |
}
|
@@ -757,17 +763,21 @@ class Pz_LinkCard {
|
|
757 |
if (!$this->options['display-excerpt'] ) {
|
758 |
$excerpt = null;
|
759 |
} else {
|
760 |
-
if
|
761 |
-
$str
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
|
|
|
|
|
|
|
|
769 |
}
|
770 |
-
$excerpt
|
771 |
}
|
772 |
}
|
773 |
|
@@ -786,7 +796,7 @@ class Pz_LinkCard {
|
|
786 |
} else {
|
787 |
// 国際ドメイン対応(日本語ドメイン対応)
|
788 |
if (function_exists('idn_to_utf8' ) && substr($domain, 0, 4 ) == 'xn--' ) {
|
789 |
-
$site_name = idn_to_utf8($domain );
|
790 |
} else {
|
791 |
$site_name = $domain;
|
792 |
}
|
@@ -904,7 +914,26 @@ class Pz_LinkCard {
|
|
904 |
$domain_info = '<div class="lkc-info">'.$html_a_op.$html_favicon.'<div class="lkc-domain"'.$site_title.'>'.$site_name.'</div>'.$added_info.$html_a_cl.$html_sns_info.$html_url2.$info_date.'</div>';
|
905 |
|
906 |
// Google AMPに対応
|
907 |
-
if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
// 簡易タグ作成
|
909 |
$tag = '<table border="1" cellspacing="0" cellpadding="4"><tbody></tr><tr><td>'.$excerpt.'<br>'.$html_a_op_all.$html_a_op.$title.$html_a_cl.$html_a_cl_all.' - '.$site_name.'</td></tr></tbody></table>';
|
910 |
} else {
|
@@ -950,9 +979,9 @@ class Pz_LinkCard {
|
|
950 |
if (!preg_match("/^[\x20-\x7E]+$/", $url ) ) {
|
951 |
// 国際ドメイン対応(日本語ドメイン対応)
|
952 |
$url_info = $this->pz_GetURLInfo($url );
|
953 |
-
if (function_exists('
|
954 |
$domain_before = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ? $url_info['domain'] : null);
|
955 |
-
$domain_after = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ?
|
956 |
$url = $domain_after.mb_substr($url, mb_strlen($domain_before ) ); // URLのスキーム+ドメイン部分だけ入れ替え
|
957 |
}
|
958 |
|
@@ -982,20 +1011,20 @@ class Pz_LinkCard {
|
|
982 |
$url_info = $this->pz_GetURLInfo($url );
|
983 |
if (function_exists('idn_to_utf8' ) && substr($url_info['domain'], 0, 4 ) == 'xn--' ) {
|
984 |
$domain_before = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ? $url_info['domain'] : null);
|
985 |
-
$domain_after = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ? idn_to_utf8($url_info['domain'] ) : null);
|
986 |
$url = $domain_after.mb_substr($url, mb_strlen($domain_before ) ); // URLのスキーム+ドメイン部分だけ入れ替え
|
987 |
}
|
988 |
|
989 |
// エンティティ文字のデコード
|
990 |
do {
|
991 |
-
$url
|
992 |
} while (mb_strpos($url, '%25' ) !== false ); // %25 = % が残っていたら、再度デコード
|
993 |
|
994 |
// 半角空白があったらエンティティ化(エンコード)
|
995 |
-
$url
|
996 |
|
997 |
// HTMLタグをエスケープ
|
998 |
-
$url
|
999 |
|
1000 |
// デコードしたURLを返却
|
1001 |
return $url;
|
@@ -1394,29 +1423,20 @@ class Pz_LinkCard {
|
|
1394 |
|
1395 |
// 使われている記事ID
|
1396 |
global $wpdb;
|
1397 |
-
$use_post_id_t =
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
}
|
1403 |
-
|
1404 |
-
// 他に「使われている記事ID」が無いか、WP_POSTSからURLを探す
|
1405 |
-
$result = $wpdb->get_results($wpdb->prepare("SELECT id FROM $wpdb->prefix"."posts WHERE post_type = 'post' AND post_content LIKE '%%%s%%' ORDER BY id ASC", $data['url'] ) );
|
1406 |
-
if ($result ) {
|
1407 |
-
foreach ($result[0] as $r ) {
|
1408 |
-
$use_post_id_t[] = $r;
|
1409 |
-
}
|
1410 |
-
}
|
1411 |
-
$use_post_id_t = array_unique($use_post_id_t );
|
1412 |
-
$use_post_id_t = array_values($use_post_id_t );
|
1413 |
-
for ($i = 1; $i < 7; $i++ ) {
|
1414 |
-
if (isset($post_id_t[$i - 1] ) && $post_id_t[$i - 1] > 0 ) {
|
1415 |
-
$data['use_post_id'.$i] = $post_id_t[$i - 1];
|
1416 |
-
} else {
|
1417 |
-
$data['use_post_id'.$i] = null;
|
1418 |
-
}
|
1419 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1420 |
|
1421 |
// 更新内容
|
1422 |
$data['mod_title'] = ($data['title'] <> $data['regist_title'] ? true : false ); // 更新:登録後からタイトル変更有無
|
@@ -1603,25 +1623,27 @@ class Pz_LinkCard {
|
|
1603 |
}
|
1604 |
|
1605 |
// タイトル整形
|
1606 |
-
if
|
1607 |
-
$str = $
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
$title
|
1613 |
}
|
1614 |
|
1615 |
// 抜粋文整形
|
1616 |
-
if
|
1617 |
-
$str = $
|
1618 |
-
$str =
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
|
|
|
|
1625 |
}
|
1626 |
|
1627 |
// データセット
|
@@ -1878,23 +1900,33 @@ class Pz_LinkCard {
|
|
1878 |
$favicon_url = $this->pz_EncodeURL($favicon_url, true );
|
1879 |
|
1880 |
// タイトル整形
|
1881 |
-
if
|
1882 |
-
$str = $
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
|
|
|
|
|
|
|
|
1888 |
}
|
1889 |
|
1890 |
// 抜粋文整形
|
1891 |
-
if
|
1892 |
-
$str = $
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1898 |
}
|
1899 |
}
|
1900 |
|
@@ -2098,66 +2130,86 @@ class Pz_LinkCard {
|
|
2098 |
|
2099 |
// 設定を取得する
|
2100 |
private function pz_GetOption() {
|
2101 |
-
|
2102 |
-
$options
|
2103 |
-
if (!$options ) {
|
2104 |
return false;
|
2105 |
}
|
|
|
|
|
|
|
2106 |
foreach($this->defaults as $key => $value ) {
|
2107 |
-
if (!array_key_exists($key, $options ) ) {
|
2108 |
-
$
|
|
|
2109 |
}
|
2110 |
}
|
2111 |
-
|
|
|
|
|
|
|
|
|
|
|
2112 |
}
|
2113 |
|
2114 |
// 設定を更新する
|
2115 |
private function pz_UpdateOption() {
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
include('lib/pz-linkcard-settings-setup.php' );
|
2120 |
|
2121 |
// 変更有無チェック
|
2122 |
-
$flg_update = false;
|
2123 |
if ($before <> $this->options ) {
|
2124 |
-
$
|
2125 |
$this->options['saved-date'] = $this->now; // 保存日時をセット
|
2126 |
}
|
2127 |
|
2128 |
// CSSバージョン(CSSキャッシュ対策)
|
2129 |
$this->options['css-count'] += 1;
|
2130 |
|
|
|
|
|
|
|
2131 |
// 設定の更新
|
2132 |
-
$result
|
|
|
|
|
|
|
2133 |
|
2134 |
// デバグ用ログ出力
|
2135 |
if ($this->options['debug-mode'] ) {
|
2136 |
$result_log = $this->pz_OutputLOG('Update_Option(Result='.$result.')' );
|
2137 |
$result_log = $this->pz_OutputLOG(print_r($this->options, true ) );
|
2138 |
}
|
2139 |
-
|
|
|
|
|
2140 |
}
|
2141 |
|
2142 |
// 設定を初期化する
|
2143 |
private function pz_InitializeOption() {
|
2144 |
-
|
2145 |
-
|
2146 |
-
$
|
2147 |
-
|
|
|
|
|
|
|
2148 |
array_push($takeover, 'initialize-exception', 'admin-mode', 'debug-mode' );
|
2149 |
}
|
2150 |
-
|
2151 |
-
|
2152 |
-
}
|
2153 |
foreach($takeover as $key ) {
|
2154 |
-
$
|
2155 |
}
|
2156 |
-
$this->options = $defaults;
|
2157 |
|
|
|
|
|
|
|
|
|
|
|
2158 |
// 設定を更新する
|
2159 |
$result = $this->pz_UpdateOption();
|
2160 |
-
|
2161 |
return $result;
|
2162 |
}
|
2163 |
|
@@ -2217,13 +2269,9 @@ class Pz_LinkCard {
|
|
2217 |
|
2218 |
// 管理画面のスタイルシート、スクリプト設定
|
2219 |
public function enqueue_admin($hook ) {
|
2220 |
-
// カラーピッカー用のスタイルシート、スクリプト
|
2221 |
-
// wp_enqueue_script ('wp-color-picker' );
|
2222 |
-
// wp_enqueue_style ('wp-color-picker' );
|
2223 |
-
// wp_enqueue_script ('pz-linkcard-colorpicker', plugins_url('js/color-picker.js', __FILE__ ), array('wp-color-picker' ), $this->options['plugin-version'], true );
|
2224 |
// 設定画面用のスタイルシート、スクリプト
|
2225 |
-
wp_enqueue_script ('pz-linkcard-admin',
|
2226 |
-
wp_enqueue_style ('pz-linkcard-admin',
|
2227 |
}
|
2228 |
|
2229 |
// 管理画面時の設定(フッター)
|
@@ -2272,7 +2320,7 @@ class Pz_LinkCard {
|
|
2272 |
$menu_manager .= ' <span class="update-plugins"><span class="update-count lkc-menu-count">'.$result->count.'</span></span>';
|
2273 |
}
|
2274 |
}
|
2275 |
-
add_management_page (__('LinkCard Cache Manager', $this->text_domain ), $menu_manager, 'manage_options', 'pz-linkcard-
|
2276 |
add_options_page (__('LinkCard Settings', $this->text_domain ), $menu_settings, 'manage_options', 'pz-linkcard-settings', array($this, 'page_settings' ) );
|
2277 |
}
|
2278 |
|
@@ -2288,8 +2336,13 @@ class Pz_LinkCard {
|
|
2288 |
|
2289 |
// 管理画面>プラグイン>一覧>クイックメニュー
|
2290 |
public function action_links($links ) {
|
2291 |
-
|
2292 |
-
|
|
|
|
|
|
|
|
|
|
|
2293 |
}
|
2294 |
|
2295 |
// 管理画面>プラグイン>有効化
|
@@ -2315,4 +2368,4 @@ class Pz_LinkCard {
|
|
2315 |
return $log;
|
2316 |
}
|
2317 |
}
|
2318 |
-
$
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
+
Version: 2.4.5
|
7 |
Author: Poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
Text Domain: pz-linkcard
|
10 |
Domain Path: /language
|
11 |
License: GPLv2 or later
|
12 |
*/
|
|
|
13 |
defined('ABSPATH' ) || wp_die;
|
14 |
|
15 |
+
class class_pz_linkcard {
|
16 |
+
// 設定値
|
17 |
+
protected $defaults =
|
18 |
+
array(
|
19 |
+
'plugin-version' => '2.4.5',
|
20 |
'plugin-name' => 'Pz-LinkCard',
|
21 |
+
'plugin-abbreviation' => 'Pz-LkC',
|
22 |
'plugin-path' => '/pz-linkcard',
|
23 |
'author-url' => 'https://popozure.info',
|
24 |
+
'author-name' => 'Popozure',
|
25 |
+
'author-twitter' => 'Popozure',
|
26 |
|
27 |
'error-mode' => null,
|
28 |
'error-url' => null,
|
192 |
|
193 |
'initialize-settings' => null,
|
194 |
'initialize-operation' => null,
|
195 |
+
'initialize-exception' => null,
|
196 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
+
private $slug; // スラッグ
|
199 |
+
private $text_domain; // テキスト ドメイン(スラッグと同じ内容)
|
200 |
+
private $charset; // 文字セット
|
201 |
+
private $amp; // Google AMP
|
202 |
+
private $datetime_format; // 日時の書式
|
203 |
+
private $now; // 現在日時(ローカル時間)
|
204 |
+
private $home_url; // 自サイトのURL
|
205 |
+
private $scheme; // 自サイトのスキーム
|
206 |
+
private $domain; // 自サイトのドメイン名
|
207 |
+
private $domain_url; // 自サイトのドメインURL
|
208 |
+
private $plugin_basename; // プラグイン ディレクトリの名前
|
209 |
+
private $plugin_dir_path; // プラグイン ディレクトリのパス
|
210 |
+
private $plugin_dir_url; // プラグイン ディレクトリのURL
|
211 |
+
private $plugin_link; // プラグインページのURL
|
212 |
+
private $upload_dir_path; // アップロード ディレクトリのパス
|
213 |
+
private $upload_dir_url; // アップロード ディレクトリのURL
|
214 |
+
private $db_name; // DBのテーブル名
|
215 |
+
private $suppression; // 出力抑制
|
216 |
+
private $options; // パラメータ
|
217 |
+
private $settings_url; // 設定画面のURL
|
218 |
+
private $cacheman_url; // 管理画面のURL
|
219 |
+
|
220 |
public function __construct() {
|
221 |
+
global $wpdb; // DBの宣言
|
222 |
+
$this->slug = basename(dirname(__FILE__ ) ); // スラッグ
|
223 |
+
$this->text_domain = $this->slug; // テキストドメイン(スラッグと同じ)
|
224 |
+
$this->charset = get_bloginfo('charset' ); // 文字セット
|
225 |
+
$this->amp = true; // 今がAMP表示かどうか判定
|
226 |
+
$this->datetime_format = get_option('date_format' ).' '.get_option('time_format' ); // 日時の書式
|
227 |
+
$this->now = current_time('timestamp', false ); // 現在日時(ローカル時間)
|
228 |
+
$this->db_name = $wpdb->prefix.'pz_linkcard'; // DBのテーブル名
|
229 |
+
$this->plugin_basename = plugin_basename(__FILE__ ); // プラグイン ディレクトリの名前
|
230 |
+
$this->plugin_dir_path = plugin_dir_path(__FILE__ ); // プラグイン ディレクトリのパス
|
231 |
+
$this->plugin_dir_url = plugin_dir_url (__FILE__ ); // プラグイン ディレクトリのURL
|
232 |
+
$wp_upload_dir = wp_upload_dir();
|
233 |
+
$this->upload_dir_path = $wp_upload_dir['basedir'].'/'.$this->slug.'/'; // アップロード ディレクトリのパス
|
234 |
+
$this->upload_dir_url = $wp_upload_dir['baseurl'].'/'.$this->slug.'/'; // アップロード ディレクトリのURL
|
235 |
+
$this->suppression = false; // 出力抑制(header出力前かどうか)
|
236 |
+
$this->settings_url = './options-general.php?page=pz-linkcard-settings'; // Pzカード設定のURL
|
237 |
+
$this->cacheman_url = './tools.php?page=pz-linkcard-cacheman'; // Pzカード管理のURL
|
238 |
|
239 |
// オプション取得
|
240 |
+
$result = $this->pz_GetOption();
|
241 |
|
|
|
|
|
|
|
242 |
// URL解析(自サイトチェック)(Optionsを読み込んでから)
|
243 |
+
$this->home_url = esc_url(home_url() );
|
244 |
$url_info = $this->Pz_GetURLInfo($this->home_url );
|
245 |
$this->scheme = $url_info['scheme']; // 自サイトのスキーム
|
246 |
$this->domain = $url_info['domain']; // 自サイトのドメイン名
|
358 |
}
|
359 |
|
360 |
// ショートコード処理
|
361 |
+
public function shortcode($atts, $content = null, $shortcode = null ) {
|
362 |
// 実行時間
|
363 |
if ($this->options['debug-mode'] ) {
|
364 |
if (function_exists('hrtime' ) ) {
|
407 |
|
408 |
// 相対URLを絶対URLに変換(ショートコードのURLで相対パス表記の場合、内部リンクと見なす)
|
409 |
if ($this->options['flg-relative-url'] && !mb_strpos($url, '://' ) ) {
|
410 |
+
$url = $this->pz_RelToURL(esc(home_url ), $url );
|
411 |
}
|
412 |
|
413 |
// URLのサニタイズ&エンティティ化
|
608 |
$rel .= ' nofollow'; // nofollow指定。趣味の問題?
|
609 |
}
|
610 |
if ($this->options['noopener'] ) {
|
611 |
+
$rel .= ' noopener';
|
612 |
}
|
613 |
$rel = ' rel="'.$rel.'"';
|
614 |
|
746 |
}
|
747 |
|
748 |
// タイトル整形
|
749 |
+
if ($str = $title ) { // 代入しながら判定
|
750 |
+
if ($str = esc_html($str ) ) { // HTMLエスケープ
|
751 |
+
if ($str = str_replace(array("\r", "\n"), '', $str ) ) { // 改行を除去
|
752 |
+
if ($this->options['trim-title'] ) {
|
753 |
+
$str = mb_strimwidth($str, 0, $this->options['trim-title'] , '...' );
|
754 |
+
} else {
|
755 |
+
$str = mb_strimwidth($str, 0, 500 , '...' );
|
756 |
+
}
|
757 |
+
}
|
758 |
}
|
759 |
$title = $str;
|
760 |
}
|
763 |
if (!$this->options['display-excerpt'] ) {
|
764 |
$excerpt = null;
|
765 |
} else {
|
766 |
+
if ($str = $excerpt ) { // 代入しながら判定
|
767 |
+
if ($str = esc_html($str ) ) { // HTMLエスケープ
|
768 |
+
if ($str = str_replace(array("\r", "\n"), '', $str ) ) { // 改行を除去
|
769 |
+
if ($str = preg_replace('/<!--more-->.+/is', '', $str ) ) { // moreタグ以降削除
|
770 |
+
if ($str = preg_replace('/\[[^]]*\]/', '', $str ) ) { // ショートコードすべて除去
|
771 |
+
if ($this->options['trim-excerpt'] ) {
|
772 |
+
$str = mb_strimwidth($str, 0, $this->options['trim-excerpt'] , '...' );
|
773 |
+
} else {
|
774 |
+
$str = mb_strimwidth($str, 0, 800 ); // 800文字制限
|
775 |
+
}
|
776 |
+
}
|
777 |
+
}
|
778 |
+
}
|
779 |
}
|
780 |
+
$excerpt = $str;
|
781 |
}
|
782 |
}
|
783 |
|
796 |
} else {
|
797 |
// 国際ドメイン対応(日本語ドメイン対応)
|
798 |
if (function_exists('idn_to_utf8' ) && substr($domain, 0, 4 ) == 'xn--' ) {
|
799 |
+
$site_name = idn_to_utf8($domain, 0, INTL_IDNA_VARIANT_UTS46 );
|
800 |
} else {
|
801 |
$site_name = $domain;
|
802 |
}
|
914 |
$domain_info = '<div class="lkc-info">'.$html_a_op.$html_favicon.'<div class="lkc-domain"'.$site_title.'>'.$site_name.'</div>'.$added_info.$html_a_cl.$html_sns_info.$html_url2.$info_date.'</div>';
|
915 |
|
916 |
// Google AMPに対応
|
917 |
+
if
|
918 |
+
(
|
919 |
+
($this->amp )
|
920 |
+
||
|
921 |
+
(function_exists('ampforwp_is_amp_endpoint' ) && ampforwp_is_amp_endpoint() )
|
922 |
+
||
|
923 |
+
(function_exists('is_amp_endpoint' ) && is_amp_endpoint() )
|
924 |
+
||
|
925 |
+
(function_exists('is_amp' ) && is_amp() )
|
926 |
+
||
|
927 |
+
(
|
928 |
+
$this->options['flg-amp-url']
|
929 |
+
&&
|
930 |
+
(
|
931 |
+
preg_match('/\/amp\/?$/i', $_SERVER["REQUEST_URI"] )
|
932 |
+
||
|
933 |
+
preg_match('/\?amp=1$/i', $_SERVER["REQUEST_URI"] )
|
934 |
+
)
|
935 |
+
)
|
936 |
+
) {
|
937 |
// 簡易タグ作成
|
938 |
$tag = '<table border="1" cellspacing="0" cellpadding="4"><tbody></tr><tr><td>'.$excerpt.'<br>'.$html_a_op_all.$html_a_op.$title.$html_a_cl.$html_a_cl_all.' - '.$site_name.'</td></tr></tbody></table>';
|
939 |
} else {
|
979 |
if (!preg_match("/^[\x20-\x7E]+$/", $url ) ) {
|
980 |
// 国際ドメイン対応(日本語ドメイン対応)
|
981 |
$url_info = $this->pz_GetURLInfo($url );
|
982 |
+
if (function_exists('idn_to_utf8' ) && !preg_match("/^[\x20-\x7E]+$/", $url_info['domain'] ) ) {
|
983 |
$domain_before = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ? $url_info['domain'] : null);
|
984 |
+
$domain_after = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ? idn_to_utf8($url_info['domain'], 0, INTL_IDNA_VARIANT_UTS46 ) : null);
|
985 |
$url = $domain_after.mb_substr($url, mb_strlen($domain_before ) ); // URLのスキーム+ドメイン部分だけ入れ替え
|
986 |
}
|
987 |
|
1011 |
$url_info = $this->pz_GetURLInfo($url );
|
1012 |
if (function_exists('idn_to_utf8' ) && substr($url_info['domain'], 0, 4 ) == 'xn--' ) {
|
1013 |
$domain_before = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ? $url_info['domain'] : null);
|
1014 |
+
$domain_after = (isset($url_info['scheme'] ) ? $url_info['scheme'] : null).'://'.(isset($url_info['domain'] ) ? idn_to_utf8($url_info['domain'], 0, INTL_IDNA_VARIANT_UTS46 ) : null);
|
1015 |
$url = $domain_after.mb_substr($url, mb_strlen($domain_before ) ); // URLのスキーム+ドメイン部分だけ入れ替え
|
1016 |
}
|
1017 |
|
1018 |
// エンティティ文字のデコード
|
1019 |
do {
|
1020 |
+
$url = rawurldecode($url );
|
1021 |
} while (mb_strpos($url, '%25' ) !== false ); // %25 = % が残っていたら、再度デコード
|
1022 |
|
1023 |
// 半角空白があったらエンティティ化(エンコード)
|
1024 |
+
$url = str_replace(' ', '%20', $url );
|
1025 |
|
1026 |
// HTMLタグをエスケープ
|
1027 |
+
$url = htmlspecialchars($url );
|
1028 |
|
1029 |
// デコードしたURLを返却
|
1030 |
return $url;
|
1423 |
|
1424 |
// 使われている記事ID
|
1425 |
global $wpdb;
|
1426 |
+
$use_post_id_t = $wpdb->get_results($wpdb->prepare("SELECT id FROM $wpdb->prefix"."posts WHERE post_type = 'post' AND post_content LIKE '%%%s%%' ORDER BY id ASC", $data['url'] ) );
|
1427 |
+
if ($use_post_id_t ) {
|
1428 |
+
$use_post_id_t = (array) $use_post_id_t[0];
|
1429 |
+
$use_post_id_t = array_unique($use_post_id_t );
|
1430 |
+
$use_post_id_t = array_values($use_post_id_t );
|
1431 |
+
} else {
|
1432 |
+
$use_post_id_t = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1433 |
}
|
1434 |
+
$data['use_post_id1'] = isset($use_post_id_t[0]) ? $use_post_id_t[0] : null;
|
1435 |
+
$data['use_post_id2'] = isset($use_post_id_t[1]) ? $use_post_id_t[1] : null;
|
1436 |
+
$data['use_post_id3'] = isset($use_post_id_t[2]) ? $use_post_id_t[2] : null;
|
1437 |
+
$data['use_post_id4'] = isset($use_post_id_t[3]) ? $use_post_id_t[3] : null;
|
1438 |
+
$data['use_post_id5'] = isset($use_post_id_t[4]) ? $use_post_id_t[4] : null;
|
1439 |
+
$data['use_post_id6'] = isset($use_post_id_t[5]) ? $use_post_id_t[5] : null;
|
1440 |
|
1441 |
// 更新内容
|
1442 |
$data['mod_title'] = ($data['title'] <> $data['regist_title'] ? true : false ); // 更新:登録後からタイトル変更有無
|
1623 |
}
|
1624 |
|
1625 |
// タイトル整形
|
1626 |
+
if ($str = $title ) {
|
1627 |
+
if ($str = esc_html($str ) ) { // HTMLエスケープ
|
1628 |
+
if ($str = str_replace(array("\r", "\n"), '', $str ) ) { // 改行を除去
|
1629 |
+
$str = mb_strimwidth($str, 0, 500 ); // 500文字制限
|
1630 |
+
}
|
1631 |
+
}
|
1632 |
+
$title = $str;
|
1633 |
}
|
1634 |
|
1635 |
// 抜粋文整形
|
1636 |
+
if ($str = $excerpt ) {
|
1637 |
+
if ($str = esc_html($str ) ) { // HTMLエスケープ
|
1638 |
+
if ($str = str_replace(array("\r", "\n"), '', $str ) ) { // 改行を除去
|
1639 |
+
if ($str = preg_replace('/<!--more-->.+/is', '', $str ) ) { // moreタグ以降削除
|
1640 |
+
if ($str = preg_replace('/\[[^]]*\]/', '', $str ) ) { // ショートコードすべて除去 strip_shortcodes()
|
1641 |
+
$str = mb_strimwidth($str, 0, 800 ); // 800文字制限
|
1642 |
+
}
|
1643 |
+
}
|
1644 |
+
}
|
1645 |
+
}
|
1646 |
+
$excerpt = $str;
|
1647 |
}
|
1648 |
|
1649 |
// データセット
|
1900 |
$favicon_url = $this->pz_EncodeURL($favicon_url, true );
|
1901 |
|
1902 |
// タイトル整形
|
1903 |
+
if ($str = $title ) { // 代入しながら判定
|
1904 |
+
if ($str = esc_html($str ) ) { // HTMLエスケープ
|
1905 |
+
if ($str = str_replace(array("\r", "\n"), '', $str ) ) { // 改行を除去
|
1906 |
+
if ($this->options['trim-title'] ) {
|
1907 |
+
$str = mb_strimwidth($str, 0, $this->options['trim-title'] , '...' );
|
1908 |
+
} else {
|
1909 |
+
$str = mb_strimwidth($str, 0, 500 , '...' );
|
1910 |
+
}
|
1911 |
+
}
|
1912 |
+
}
|
1913 |
+
$title = $str;
|
1914 |
}
|
1915 |
|
1916 |
// 抜粋文整形
|
1917 |
+
if ($str = $excerpt ) { // 代入しながら判定
|
1918 |
+
if ($str = esc_html($str ) ) { // HTMLエスケープ
|
1919 |
+
if ($str = str_replace(array("\r", "\n"), '', $str ) ) { // 改行を除去
|
1920 |
+
if ($str = preg_replace('/\[[^]]*\]/', '', $str ) ) { // ショートコードすべて除去
|
1921 |
+
if ($this->options['trim-excerpt'] ) {
|
1922 |
+
$str = mb_strimwidth($str, 0, $this->options['trim-excerpt'] , '...' );
|
1923 |
+
} else {
|
1924 |
+
$str = mb_strimwidth($str, 0, 800 ); // 800文字制限
|
1925 |
+
}
|
1926 |
+
}
|
1927 |
+
}
|
1928 |
+
}
|
1929 |
+
$excerpt = $str;
|
1930 |
}
|
1931 |
}
|
1932 |
|
2130 |
|
2131 |
// 設定を取得する
|
2132 |
private function pz_GetOption() {
|
2133 |
+
// オプション値を取得
|
2134 |
+
$this->options = get_option('Pz_LinkCard_options', $this->defaults );
|
2135 |
+
if (!$this->options ) {
|
2136 |
return false;
|
2137 |
}
|
2138 |
+
|
2139 |
+
// キーが無かったらデフォルト値をセットして保存する
|
2140 |
+
$set_key_count = 0;
|
2141 |
foreach($this->defaults as $key => $value ) {
|
2142 |
+
if (!array_key_exists($key, $this->options ) ) {
|
2143 |
+
$set_key_count += 1;
|
2144 |
+
$this->options[$key] = $value;
|
2145 |
}
|
2146 |
}
|
2147 |
+
if ($set_key_count > 0) {
|
2148 |
+
$result = $this->pz_UpdateOption();
|
2149 |
+
}
|
2150 |
+
|
2151 |
+
// 返却
|
2152 |
+
return true;
|
2153 |
}
|
2154 |
|
2155 |
// 設定を更新する
|
2156 |
private function pz_UpdateOption() {
|
2157 |
+
// 変更前
|
2158 |
+
$return_status = false;
|
2159 |
+
$before = get_option('Pz_LinkCard_options', $this->defaults );
|
|
|
2160 |
|
2161 |
// 変更有無チェック
|
|
|
2162 |
if ($before <> $this->options ) {
|
2163 |
+
$return_status = true; // 更新あり
|
2164 |
$this->options['saved-date'] = $this->now; // 保存日時をセット
|
2165 |
}
|
2166 |
|
2167 |
// CSSバージョン(CSSキャッシュ対策)
|
2168 |
$this->options['css-count'] += 1;
|
2169 |
|
2170 |
+
// 必要ディレクトリが無い場合、作り直す
|
2171 |
+
include('lib/pz-linkcard-settings-setup.php' );
|
2172 |
+
|
2173 |
// 設定の更新
|
2174 |
+
$result = update_option('Pz_LinkCard_options', $this->options );
|
2175 |
+
if ($result = false) {
|
2176 |
+
$return_status = false;
|
2177 |
+
}
|
2178 |
|
2179 |
// デバグ用ログ出力
|
2180 |
if ($this->options['debug-mode'] ) {
|
2181 |
$result_log = $this->pz_OutputLOG('Update_Option(Result='.$result.')' );
|
2182 |
$result_log = $this->pz_OutputLOG(print_r($this->options, true ) );
|
2183 |
}
|
2184 |
+
|
2185 |
+
// 返却
|
2186 |
+
return $return_status;
|
2187 |
}
|
2188 |
|
2189 |
// 設定を初期化する
|
2190 |
private function pz_InitializeOption() {
|
2191 |
+
// 初期化
|
2192 |
+
$before = $this->options;
|
2193 |
+
$this->options = $this->defaults;
|
2194 |
+
|
2195 |
+
// 引き継ぐ設定値
|
2196 |
+
$takeover = array('css-templete', 'css-path', 'thumbnail-dir', 'thumbnail-url', 'debug-dir', 'debug-url', 'user-agent', 'saved-date', 'develop-mode' );
|
2197 |
+
if ($before['initialize-exception'] ) { // 初期化例外が有効の時に引き継ぐ設定値
|
2198 |
array_push($takeover, 'initialize-exception', 'admin-mode', 'debug-mode' );
|
2199 |
}
|
2200 |
+
|
2201 |
+
// 設定を引き継ぐ
|
|
|
2202 |
foreach($takeover as $key ) {
|
2203 |
+
$this->options[$key] = $before[$key];
|
2204 |
}
|
|
|
2205 |
|
2206 |
+
// CSS更新用カウント
|
2207 |
+
if ($before['css-count'] <= 1 ) {
|
2208 |
+
$this->options['css-count'] = $before['css-count'];
|
2209 |
+
}
|
2210 |
+
|
2211 |
// 設定を更新する
|
2212 |
$result = $this->pz_UpdateOption();
|
|
|
2213 |
return $result;
|
2214 |
}
|
2215 |
|
2269 |
|
2270 |
// 管理画面のスタイルシート、スクリプト設定
|
2271 |
public function enqueue_admin($hook ) {
|
|
|
|
|
|
|
|
|
2272 |
// 設定画面用のスタイルシート、スクリプト
|
2273 |
+
wp_enqueue_script ('pz-linkcard-admin-js', plugins_url('js/admin-settings.js', __FILE__ ), array('jquery' ), $this->options['plugin-version'], true );
|
2274 |
+
wp_enqueue_style ('pz-linkcard-admin-css', plugin_dir_url(__FILE__ ).'css/admin.css', array(), $this->options['plugin-version'] );
|
2275 |
}
|
2276 |
|
2277 |
// 管理画面時の設定(フッター)
|
2320 |
$menu_manager .= ' <span class="update-plugins"><span class="update-count lkc-menu-count">'.$result->count.'</span></span>';
|
2321 |
}
|
2322 |
}
|
2323 |
+
add_management_page (__('LinkCard Cache Manager', $this->text_domain ), $menu_manager, 'manage_options', 'pz-linkcard-cacheman', array($this, 'page_cacheman' ) );
|
2324 |
add_options_page (__('LinkCard Settings', $this->text_domain ), $menu_settings, 'manage_options', 'pz-linkcard-settings', array($this, 'page_settings' ) );
|
2325 |
}
|
2326 |
|
2336 |
|
2337 |
// 管理画面>プラグイン>一覧>クイックメニュー
|
2338 |
public function action_links($links ) {
|
2339 |
+
return array_merge(
|
2340 |
+
array(
|
2341 |
+
'settings' => '<a href="'.$this->settings_url.'">'.__('Settings', $this->text_domain ).'</a>',
|
2342 |
+
'manager' => '<a href="'.$this->cacheman_url.'">'.__('Manager', $this->text_domain ).'</a>',
|
2343 |
+
),
|
2344 |
+
$links
|
2345 |
+
);
|
2346 |
}
|
2347 |
|
2348 |
// 管理画面>プラグイン>有効化
|
2368 |
return $log;
|
2369 |
}
|
2370 |
}
|
2371 |
+
$class_pz_linkcard = new class_pz_linkcard;
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== Pz-LinkCard ===
|
2 |
Contributors: Poporon
|
3 |
Tags: LinkCard, BlogCard, Internal Link, External Link
|
4 |
-
Requires at least:
|
5 |
-
Tested up to:
|
|
|
6 |
Stable tag: trunk
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
-
Requires PHP: 7.0
|
10 |
Donate link: https://www.amazon.co.jp/gp/registry/wishlist/2KIBQLC1VLA9X
|
11 |
|
12 |
This plugin is intended to display a link in a blog card format. The goodbye to the text-only link.
|
@@ -151,6 +151,35 @@ Ver.2.1.2から200px四方に変更、Ver.2.4.1から自由に指定できるよ
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
= 2.4.4.4 =
|
155 |
* WordPress 5.7.1 での動作確認。
|
156 |
Compatible with WordPress 5.7.1.
|
1 |
=== Pz-LinkCard ===
|
2 |
Contributors: Poporon
|
3 |
Tags: LinkCard, BlogCard, Internal Link, External Link
|
4 |
+
Requires at least: 5.7
|
5 |
+
Tested up to: 6.0
|
6 |
+
Requires PHP: 7.0
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
10 |
Donate link: https://www.amazon.co.jp/gp/registry/wishlist/2KIBQLC1VLA9X
|
11 |
|
12 |
This plugin is intended to display a link in a blog card format. The goodbye to the text-only link.
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= 2.4.5 =
|
155 |
+
* 最低動作環境を WordPress 5.7 に変更。
|
156 |
+
* WordPress 5.8.3 での動作確認。
|
157 |
+
Compatible with WordPress 5.8.3.
|
158 |
+
* WordPress 5.9 での動作確認。
|
159 |
+
Compatible with WordPress 5.9.
|
160 |
+
* WordPress 5.9.2 での動作確認。
|
161 |
+
Compatible with WordPress 5.9.2.
|
162 |
+
* WordPress 5.9.3 での動作確認。
|
163 |
+
Compatible with WordPress 5.9.3.
|
164 |
+
* WordPress 6.0 での動作確認。
|
165 |
+
Compatible with WordPress 6.0.
|
166 |
+
* PHP 7.3 での動作確認。
|
167 |
+
Compatible with PHP 7.3.
|
168 |
+
* PHP 7.4 での動作確認。
|
169 |
+
Compatible with PHP 7.4.
|
170 |
+
* PHP 8.0 に対応。PHPの仕様変更により出るようになったエラーを修正。
|
171 |
+
Compatible with PHP 8.0.
|
172 |
+
* PHP 8.1 での動作確認。(WordPress本体や他のプラグインでエラーが出る状態です)
|
173 |
+
Compatible with PHP 8.1.
|
174 |
+
* タイトルと抜粋文のエスケープ処理を修正。
|
175 |
+
Fixed: Fixed escaping of "Title" and "Excerpt".
|
176 |
+
* 内部リンクの投稿日・更新日が表示されるように修正。(Thanks A-Jin)
|
177 |
+
Fixed: Fixed internal links not displaying posted and updated dates.
|
178 |
+
* リンクカードのHTMLの"noopener"の表記ミスを修正。(Thanks @jh4vaj on Twitter)
|
179 |
+
Fixed: Corrected a spelling error in "noopener".
|
180 |
+
* カード情報のエクスポート時、改行が入らないように修正。
|
181 |
+
Fixed: Fixed that line feeds are not inserted when exporting card information.
|
182 |
+
|
183 |
= 2.4.4.4 =
|
184 |
* WordPress 5.7.1 での動作確認。
|
185 |
Compatible with WordPress 5.7.1.
|
templete/pz-linkcard-templete.css
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*MARGIN-BOTTOM*/
|
4 |
/*MARGIN-LEFT*/
|
5 |
/*MARGIN-RIGHT*/
|
6 |
-
}
|
7 |
.linkcard img {
|
8 |
/*RESET-IMG*/
|
9 |
}
|
3 |
/*MARGIN-BOTTOM*/
|
4 |
/*MARGIN-LEFT*/
|
5 |
/*MARGIN-RIGHT*/
|
6 |
+
}//testtest
|
7 |
.linkcard img {
|
8 |
/*RESET-IMG*/
|
9 |
}
|