Version Description
Download this release
Release Info
Developer | poporon |
Plugin | Pz-LinkCard |
Version | 2.2.6 |
Comparing to | |
See all releases |
Code changes from version 2.2.5 to 2.2.6
- css/admin.css +36 -0
- js/button.png +0 -0
- js/langs/ja.js +3 -0
- js/mce-pz-lkc.js +96 -0
- js/mce.js +101 -0
- languages/pz-linkcard-ja.mo +0 -0
- languages/pz-linkcard-ja.po +320 -308
- lib/pz-linkcard-js.php +0 -44
- lib/pz-linkcard-modal.php +13 -0
- lib/pz-linkcard-settings.php +15 -1
- pz-linkcard.php +29 -27
- readme.txt +8 -0
- templete/mce-pz-lkc-templete.js +0 -21
- templete/pz-linkcard-templete.css +9 -1
css/admin.css
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#pz-lkc-overlay {
|
2 |
+
z-index: 1001;
|
3 |
+
display: none;
|
4 |
+
position: fixed;
|
5 |
+
top: 0;
|
6 |
+
left: 0;
|
7 |
+
width: 100%;
|
8 |
+
height: 120%;
|
9 |
+
background-color: rgba(0,0,0,0.5);
|
10 |
+
}
|
11 |
+
|
12 |
+
#pz-lkc-modal {
|
13 |
+
z-index: 9991;
|
14 |
+
display: none;
|
15 |
+
position: fixed;
|
16 |
+
margin: 0 auto;
|
17 |
+
padding: 20px;
|
18 |
+
border: 2px solid #000;
|
19 |
+
border-radius: 4px;
|
20 |
+
background: #fff;
|
21 |
+
}
|
22 |
+
|
23 |
+
#pz-lkc-close {
|
24 |
+
position: relative;
|
25 |
+
float: right;
|
26 |
+
margin: -10px;
|
27 |
+
}
|
28 |
+
|
29 |
+
#pz-lkc-close:hover {
|
30 |
+
cursor: pointer;
|
31 |
+
}
|
32 |
+
|
33 |
+
#pz-lkc-content {
|
34 |
+
text-align: center;
|
35 |
+
padding: 10px;
|
36 |
+
}
|
js/button.png
ADDED
Binary file
|
js/langs/ja.js
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
tinymce.addI18n('ja', {
|
2 |
+
'Insert Linkcard' : 'リンクカードを挿入'
|
3 |
+
});
|
js/mce-pz-lkc.js
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function() {
|
2 |
+
// 画面のどこかをクリックしたらモーダルを閉じる
|
3 |
+
$("#pz-lkc-overlay,#pz-lkc-close").unbind().click(function(){
|
4 |
+
$("#pz-lkc-overlay").css("display", "none");
|
5 |
+
$("#pz-lkc-modal").css("display"," none");
|
6 |
+
$("#pz-lkc-serif").val("");
|
7 |
+
$("#pz-lkc-check").prop("checked", false);
|
8 |
+
});
|
9 |
+
|
10 |
+
// [ESC]キーが押されたらCLOSEをクリック
|
11 |
+
$(document).keydown(function(e) {
|
12 |
+
if (e.keyCode == 27) {
|
13 |
+
$("#pz-lkc-close").click();
|
14 |
+
}
|
15 |
+
});
|
16 |
+
|
17 |
+
$("#pz-lkc-url").bind('paste', function(e){
|
18 |
+
if ($("#pz-lkc-url").val() == "") {
|
19 |
+
var cb = undefined;
|
20 |
+
if (window.clipboardData && window.clipboardData.getData) {
|
21 |
+
cb = window.clipboardData.getData('Text');
|
22 |
+
} else if (e.originalEvent.clipboardData && e.originalEvent.clipboardData.getData) {
|
23 |
+
cb = e.originalEvent.clipboardData.getData('text/plain');
|
24 |
+
}
|
25 |
+
var ur = cb.match(/(https?:\/\/[^\"\':\]]*)/);
|
26 |
+
if (ur != null) {
|
27 |
+
ur = ur[1];
|
28 |
+
$("#pz-lkc-url").val(ur);
|
29 |
+
$("#pz-lkc-url").select();
|
30 |
+
}
|
31 |
+
return false;
|
32 |
+
}
|
33 |
+
});
|
34 |
+
|
35 |
+
// 挿入ボタン
|
36 |
+
$("#pz-lkc-insert").unbind().click(function(){
|
37 |
+
$("#pz-lkc-overlay").css("display","none");
|
38 |
+
$("#pz-lkc-modal").css("display","none");
|
39 |
+
if ($("#pz-lkc-url").val() != "") {
|
40 |
+
var sc = "<p>[" + $("#pz-lkc-code").val() + " url=\"" + $("#pz-lkc-url").val() + "\"]</p>";
|
41 |
+
tinymce.activeEditor.selection.setContent(sc);
|
42 |
+
}
|
43 |
+
tinymce.activeEditor.focus()
|
44 |
+
$("#pz-lkc-serif").val("");
|
45 |
+
$("#pz-lkc-check").prop("checked", false);
|
46 |
+
});
|
47 |
+
|
48 |
+
|
49 |
+
// ウィンドウのリサイズ
|
50 |
+
$(window).resize(centermodal);
|
51 |
+
function centermodal() {
|
52 |
+
var w = $(window).width();
|
53 |
+
var h = $(window).height();
|
54 |
+
var mw = $("#pz-lkc-modal").outerWidth();
|
55 |
+
var mh = $("#pz-lkc-modal").outerHeight();
|
56 |
+
$("#pz-lkc-modal").css( {"left": ((w - mw)/2) + "px","top": ((h - mh)/2) + "px"} );
|
57 |
+
}
|
58 |
+
|
59 |
+
tinymce.create('tinymce.plugins.pzlinkcard', {
|
60 |
+
init: function(ed, url){
|
61 |
+
ed.addButton('pz_linkcard',{
|
62 |
+
title: 'Insert Linkcard',
|
63 |
+
image: url + '/button.png',
|
64 |
+
cmd: 'insert_pz_linkcard'
|
65 |
+
});
|
66 |
+
ed.addCommand('insert_pz_linkcard', function() {
|
67 |
+
$("#pz-lkc-overlay").css("display", "block");
|
68 |
+
$("#pz-lkc-modal").css("display", "block");
|
69 |
+
$("#pz-lkc-url").val("");
|
70 |
+
var st = tinymce.activeEditor.selection.getContent();
|
71 |
+
var ur = st.match(/(https?:\/\/[^\"\':\]]*)/);
|
72 |
+
if (ur != null) {
|
73 |
+
ur = ur[1];
|
74 |
+
} else {
|
75 |
+
var cb = undefined;
|
76 |
+
if (window.clipboardData && window.clipboardData.getData) {
|
77 |
+
cb = window.clipboardData.getData('Text');
|
78 |
+
ur = cb.match(/(https?:\/\/[^\"\':\]]*)/);
|
79 |
+
if (ur != null) {
|
80 |
+
ur = ur[1];
|
81 |
+
}
|
82 |
+
}
|
83 |
+
}
|
84 |
+
$("#pz-lkc-url").val(ur);
|
85 |
+
centermodal();
|
86 |
+
$("#pz-lkc-url").focus();
|
87 |
+
$("#pz-lkc-url").select();
|
88 |
+
});
|
89 |
+
},
|
90 |
+
createControl: function(n, cm) {
|
91 |
+
return null;
|
92 |
+
}
|
93 |
+
});
|
94 |
+
tinymce.PluginManager.add('pz_linkcard',tinymce.plugins.pzlinkcard);
|
95 |
+
tinymce.PluginManager.requireLangPack('pz_linkcard');
|
96 |
+
})();
|
js/mce.js
ADDED
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function() {
|
2 |
+
// 画面のどこかをクリックしたらモーダルを閉じる
|
3 |
+
$("#pz-lkc-overlay,#pz-lkc-close").unbind().click(function(){
|
4 |
+
$("#pz-lkc-overlay").css("display", "none");
|
5 |
+
$("#pz-lkc-modal").css("display"," none");
|
6 |
+
$("#pz-lkc-serif").val("");
|
7 |
+
$("#pz-lkc-check").prop("checked", false);
|
8 |
+
});
|
9 |
+
|
10 |
+
// [ESC]キーが押されたらCLOSEをクリック
|
11 |
+
$(document).keydown(function(e) {
|
12 |
+
if (e.keyCode == 27) {
|
13 |
+
$("#pz-lkc-close").click();
|
14 |
+
}
|
15 |
+
});
|
16 |
+
|
17 |
+
$("#pz-lkc-url").bind('paste', function(e){
|
18 |
+
if ($("#pz-lkc-url").val() == "") {
|
19 |
+
var cb = undefined;
|
20 |
+
if (window.clipboardData && window.clipboardData.getData) {
|
21 |
+
cb = window.clipboardData.getData('Text');
|
22 |
+
} else if (e.originalEvent.clipboardData && e.originalEvent.clipboardData.getData) {
|
23 |
+
cb = e.originalEvent.clipboardData.getData('text/plain');
|
24 |
+
}
|
25 |
+
var ur = cut_url(cb);
|
26 |
+
if (ur != null) {
|
27 |
+
ur = ur[1];
|
28 |
+
$("#pz-lkc-url").val(ur);
|
29 |
+
$("#pz-lkc-url").select();
|
30 |
+
return false;
|
31 |
+
}
|
32 |
+
}
|
33 |
+
});
|
34 |
+
|
35 |
+
// 挿入ボタン
|
36 |
+
$("#pz-lkc-insert").unbind().click(function(){
|
37 |
+
$("#pz-lkc-overlay").css("display","none");
|
38 |
+
$("#pz-lkc-modal").css("display","none");
|
39 |
+
if ($("#pz-lkc-url").val() != "") {
|
40 |
+
var sc = "<p>[" + $("#pz-lkc-code").val() + " url=\"" + $("#pz-lkc-url").val() + "\"]</p>";
|
41 |
+
tinymce.activeEditor.selection.setContent(sc);
|
42 |
+
}
|
43 |
+
tinymce.activeEditor.focus()
|
44 |
+
$("#pz-lkc-serif").val("");
|
45 |
+
$("#pz-lkc-check").prop("checked", false);
|
46 |
+
});
|
47 |
+
|
48 |
+
// ウィンドウのリサイズ
|
49 |
+
$(window).resize(centermodal);
|
50 |
+
function centermodal() {
|
51 |
+
var w = $(window).width();
|
52 |
+
var h = $(window).height();
|
53 |
+
var mw = $("#pz-lkc-modal").outerWidth();
|
54 |
+
var mh = $("#pz-lkc-modal").outerHeight();
|
55 |
+
$("#pz-lkc-modal").css( {"left": ((w - mw)/2) + "px","top": ((h - mh)/2) + "px"} );
|
56 |
+
}
|
57 |
+
|
58 |
+
// 文字列からURLを切り出す
|
59 |
+
function cut_url(s) {
|
60 |
+
var ur = s.match(/((https?|ftp):\/\/[^<>{}|:;\\\*\^\"\'\[\]\s\t\n]*)/);
|
61 |
+
return ur;
|
62 |
+
}
|
63 |
+
|
64 |
+
tinymce.create('tinymce.plugins.pzlinkcard', {
|
65 |
+
init: function(ed, url){
|
66 |
+
ed.addButton('pz_linkcard',{
|
67 |
+
title: 'Insert Linkcard',
|
68 |
+
image: url + '/button.png',
|
69 |
+
cmd: 'insert_pz_linkcard'
|
70 |
+
});
|
71 |
+
ed.addCommand('insert_pz_linkcard', function() {
|
72 |
+
$("#pz-lkc-overlay").css("display", "block");
|
73 |
+
$("#pz-lkc-modal").css("display", "block");
|
74 |
+
$("#pz-lkc-url").val("");
|
75 |
+
var st = tinymce.activeEditor.selection.getContent();
|
76 |
+
var ur = cut_url(st);
|
77 |
+
if (ur != null) {
|
78 |
+
ur = ur[1];
|
79 |
+
} else {
|
80 |
+
var cb = undefined;
|
81 |
+
if (window.clipboardData && window.clipboardData.getData) {
|
82 |
+
cb = window.clipboardData.getData('Text');
|
83 |
+
ur = cut_url(cb);
|
84 |
+
if (ur != null) {
|
85 |
+
ur = ur[1];
|
86 |
+
}
|
87 |
+
}
|
88 |
+
}
|
89 |
+
$("#pz-lkc-url").val(ur);
|
90 |
+
centermodal();
|
91 |
+
$("#pz-lkc-url").focus();
|
92 |
+
$("#pz-lkc-url").select();
|
93 |
+
});
|
94 |
+
},
|
95 |
+
createControl: function(n, cm) {
|
96 |
+
return null;
|
97 |
+
}
|
98 |
+
});
|
99 |
+
tinymce.PluginManager.add('pz_linkcard',tinymce.plugins.pzlinkcard);
|
100 |
+
tinymce.PluginManager.requireLangPack('pz_linkcard');
|
101 |
+
})();
|
languages/pz-linkcard-ja.mo
CHANGED
Binary file
|
languages/pz-linkcard-ja.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Pz-LinkCard\n"
|
6 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
7 |
-
"POT-Creation-Date: 2019-
|
8 |
-
"PO-Revision-Date: 2019-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: poporon\n"
|
11 |
"Language: ja_JP\n"
|
@@ -19,51 +19,51 @@ msgstr ""
|
|
19 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
|
22 |
-
#: ../pz-linkcard.php:
|
23 |
msgid "Incorrect URL specification."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: ../pz-linkcard.php:
|
27 |
msgid "Category"
|
28 |
msgstr "カテゴリー"
|
29 |
|
30 |
-
#: ../pz-linkcard.php:
|
31 |
msgid "‘"
|
32 |
msgstr "「"
|
33 |
|
34 |
-
#: ../pz-linkcard.php:
|
35 |
msgid "’"
|
36 |
msgstr "」"
|
37 |
|
38 |
-
#: ../pz-linkcard.php:
|
39 |
msgid "("
|
40 |
msgstr "("
|
41 |
|
42 |
-
#: ../pz-linkcard.php:
|
43 |
msgid "Count"
|
44 |
msgstr "件数"
|
45 |
|
46 |
-
#: ../pz-linkcard.php:
|
47 |
msgid ")"
|
48 |
msgstr ")"
|
49 |
|
50 |
-
#: ../pz-linkcard.php:
|
51 |
msgid "Tag"
|
52 |
msgstr "タグ"
|
53 |
|
54 |
-
#: ../pz-linkcard.php:
|
55 |
msgid "Linkcard"
|
56 |
msgstr "リンクカード"
|
57 |
|
58 |
-
#: ../pz-linkcard.php:
|
59 |
msgid "Make Linkcard"
|
60 |
msgstr "リンクカードのショートコードを挿入する"
|
61 |
|
62 |
-
#: ../pz-linkcard.php:
|
63 |
msgid "Invalid URL parameter in "
|
64 |
msgstr "URLパラメーターの指定が無効です→"
|
65 |
|
66 |
-
#: ../pz-linkcard.php:
|
67 |
msgid ""
|
68 |
"* You can cancel this message from <a href=\"./options-general.php?page=pz-"
|
69 |
"linkcard-settings\">the setting screen</a>."
|
@@ -71,27 +71,27 @@ msgstr ""
|
|
71 |
"※このメッセージの表示は<a href=\"./options-general.php?page=pz-linkcard-"
|
72 |
"settings\">設定画面</a>から解除できます。"
|
73 |
|
74 |
-
#: ../pz-linkcard.php:
|
75 |
msgid "Pz LkC Cache"
|
76 |
msgstr "Pz カード管理"
|
77 |
|
78 |
-
#: ../pz-linkcard.php:
|
79 |
msgid "Pz LinkCard"
|
80 |
msgstr "Pz カード設定"
|
81 |
|
82 |
-
#: ../pz-linkcard.php:
|
83 |
msgid "LinkCard cache manager"
|
84 |
msgstr "リンクカード/DBキャッシュ管理"
|
85 |
|
86 |
-
#: ../pz-linkcard.php:
|
87 |
msgid "LinkCard Settings"
|
88 |
msgstr "リンクカード設定"
|
89 |
|
90 |
-
#: ../pz-linkcard.php:
|
91 |
msgid "Settings"
|
92 |
msgstr "設定"
|
93 |
|
94 |
-
#: ../pz-linkcard.php:
|
95 |
msgid "Manage"
|
96 |
msgstr "管理"
|
97 |
|
@@ -107,7 +107,7 @@ msgstr "URLキー"
|
|
107 |
|
108 |
#: ../lib/pz-linkcard-cacheman-edit.php:22
|
109 |
#: ../lib/pz-linkcard-cacheman-list.php:248 ../lib/pz-linkcard-edit.php:21
|
110 |
-
#: ../lib/pz-linkcard-settings.php:
|
111 |
msgid "URL"
|
112 |
msgstr "URL"
|
113 |
|
@@ -122,13 +122,13 @@ msgstr "ドメイン"
|
|
122 |
|
123 |
#: ../lib/pz-linkcard-cacheman-edit.php:34
|
124 |
#: ../lib/pz-linkcard-cacheman-list.php:249 ../lib/pz-linkcard-edit.php:37
|
125 |
-
#: ../lib/pz-linkcard-settings.php:
|
126 |
msgid "Title"
|
127 |
msgstr "タイトル"
|
128 |
|
129 |
#: ../lib/pz-linkcard-cacheman-edit.php:38
|
130 |
#: ../lib/pz-linkcard-cacheman-list.php:250 ../lib/pz-linkcard-edit.php:41
|
131 |
-
#: ../lib/pz-linkcard-settings.php:
|
132 |
msgid "Excerpt"
|
133 |
msgstr "抜粋文"
|
134 |
|
@@ -359,21 +359,13 @@ msgstr "外部/内部"
|
|
359 |
msgid "Next update"
|
360 |
msgstr "次回更新日時"
|
361 |
|
362 |
-
#: ../lib/pz-linkcard-
|
363 |
-
msgid "Insert Pz-LinkCard"
|
364 |
-
msgstr "リンクカード作成"
|
365 |
-
|
366 |
-
#: ../lib/pz-linkcard-js.php:26
|
367 |
msgid "Input URL"
|
368 |
msgstr "リンクカードを作成するURLを入力してください"
|
369 |
|
370 |
-
#: ../lib/pz-linkcard-
|
371 |
-
msgid "
|
372 |
-
msgstr "
|
373 |
-
|
374 |
-
#: ../lib/pz-linkcard-js.php:38
|
375 |
-
msgid "Editor button JS failed."
|
376 |
-
msgstr "ビジュアルエディタのボタンの生成に失敗しました。"
|
377 |
|
378 |
#: ../lib/pz-linkcard-settings.php:38
|
379 |
msgid "Short code is not set."
|
@@ -387,601 +379,612 @@ msgstr "設定を保存しました。"
|
|
387 |
msgid "Not changed."
|
388 |
msgstr "設定は変更されませんでした。"
|
389 |
|
390 |
-
#: ../lib/pz-linkcard-settings.php:
|
391 |
msgid "Error"
|
392 |
msgstr "エラー表示"
|
393 |
|
394 |
-
#: ../lib/pz-linkcard-settings.php:
|
395 |
msgid "Invalid URL"
|
396 |
msgstr "URL指定エラー"
|
397 |
|
398 |
-
#: ../lib/pz-linkcard-settings.php:
|
399 |
msgid "Uncheck to cancel the error condition."
|
400 |
msgstr "チェックを外すとエラー状態を解除します。"
|
401 |
|
402 |
-
#: ../lib/pz-linkcard-settings.php:
|
403 |
msgid "Error URL"
|
404 |
msgstr "URL指定エラー"
|
405 |
|
406 |
-
#: ../lib/pz-linkcard-settings.php:
|
407 |
msgid "Error Time"
|
408 |
msgstr "エラー発生時刻"
|
409 |
|
410 |
-
#: ../lib/pz-linkcard-settings.php:
|
411 |
msgid "Basic settings"
|
412 |
msgstr "基本の設定"
|
413 |
|
414 |
-
#: ../lib/pz-linkcard-settings.php:
|
415 |
msgid "Easy format"
|
416 |
msgstr "かんたん書式設定"
|
417 |
|
418 |
-
#: ../lib/pz-linkcard-settings.php:
|
419 |
-
#: ../lib/pz-linkcard-settings.php:
|
420 |
-
#: ../lib/pz-linkcard-settings.php:
|
421 |
-
#: ../lib/pz-linkcard-settings.php:
|
422 |
-
#: ../lib/pz-linkcard-settings.php:
|
423 |
-
#: ../lib/pz-linkcard-settings.php:
|
424 |
-
#: ../lib/pz-linkcard-settings.php:
|
425 |
msgid "None"
|
426 |
msgstr "なし"
|
427 |
|
428 |
-
#: ../lib/pz-linkcard-settings.php:
|
429 |
msgid "Pz-LkC Default"
|
430 |
msgstr "Pz リンクカード オリジナル"
|
431 |
|
432 |
-
#: ../lib/pz-linkcard-settings.php:
|
433 |
msgid "Simple"
|
434 |
msgstr "シンプル"
|
435 |
|
436 |
-
#: ../lib/pz-linkcard-settings.php:
|
437 |
msgid "Normal"
|
438 |
msgstr "ノーマル(はてなブログカード風)"
|
439 |
|
440 |
-
#: ../lib/pz-linkcard-settings.php:
|
441 |
msgid "Headline"
|
442 |
msgstr "見出し(付加情報のテキストが見出しとして表示されます)"
|
443 |
|
444 |
-
#: ../lib/pz-linkcard-settings.php:
|
445 |
msgid "Square"
|
446 |
msgstr "スクエア"
|
447 |
|
448 |
-
#: ../lib/pz-linkcard-settings.php:
|
449 |
msgid "Cellophane tape \"center\""
|
450 |
msgstr "セロハンテープ(中央)"
|
451 |
|
452 |
-
#: ../lib/pz-linkcard-settings.php:
|
453 |
msgid "Cellophane tape \"Top corner\""
|
454 |
msgstr "セロハンテープ(左上と右上)"
|
455 |
|
456 |
-
#: ../lib/pz-linkcard-settings.php:
|
457 |
msgid "Cellophane tape \"long\""
|
458 |
msgstr "セロハンテープ(長め)"
|
459 |
|
460 |
-
#: ../lib/pz-linkcard-settings.php:
|
461 |
msgid "Curling paper"
|
462 |
msgstr "紙がめくれた効果"
|
463 |
|
464 |
-
#: ../lib/pz-linkcard-settings.php:
|
465 |
msgid "Cellophane tape and curling"
|
466 |
msgstr "セロハンテープと紙めくれた効果"
|
467 |
|
468 |
-
#: ../lib/pz-linkcard-settings.php:
|
469 |
msgid "Stitch blue & red"
|
470 |
msgstr "縫い目(青と赤)"
|
471 |
|
472 |
-
#: ../lib/pz-linkcard-settings.php:
|
473 |
msgid "Stitch green & yellow"
|
474 |
msgstr "縫い目(緑と黄色)"
|
475 |
|
476 |
-
#: ../lib/pz-linkcard-settings.php:
|
477 |
msgid "Infomation orange"
|
478 |
msgstr "インフォメーション オレンジ"
|
479 |
|
480 |
-
#: ../lib/pz-linkcard-settings.php:
|
481 |
msgid "Neutral bluegreen"
|
482 |
msgstr "ニュートラル ブルーグリーン"
|
483 |
|
484 |
-
#: ../lib/pz-linkcard-settings.php:
|
485 |
msgid "Enlightened green"
|
486 |
msgstr "エンライテド グリーン"
|
487 |
|
488 |
-
#: ../lib/pz-linkcard-settings.php:
|
489 |
msgid "Resistance blue"
|
490 |
msgstr "レジスタンス ブルー"
|
491 |
|
492 |
-
#: ../lib/pz-linkcard-settings.php:
|
493 |
msgid "Slanting"
|
494 |
msgstr "斜め"
|
495 |
|
496 |
-
#: ../lib/pz-linkcard-settings.php:
|
497 |
msgid "3D Rotate"
|
498 |
msgstr "3D回転"
|
499 |
|
500 |
-
#: ../lib/pz-linkcard-settings.php:
|
501 |
msgid "Pushpin"
|
502 |
msgstr "押しピン"
|
503 |
|
504 |
-
#: ../lib/pz-linkcard-settings.php:
|
505 |
msgid "* It applies over other formatting settings."
|
506 |
msgstr "※ほかの項目よりも優先して適用されます。"
|
507 |
|
508 |
-
#: ../lib/pz-linkcard-settings.php:
|
509 |
msgid "How to (Japanese only)"
|
510 |
msgstr "使い方"
|
511 |
|
512 |
-
#: ../lib/pz-linkcard-settings.php:
|
513 |
msgid "Position settings"
|
514 |
msgstr "配置の設定"
|
515 |
|
516 |
-
#: ../lib/pz-linkcard-settings.php:
|
517 |
msgid "Use blockquote tag"
|
518 |
msgstr "BLOCKQUOTEタグを使用する"
|
519 |
|
520 |
-
#: ../lib/pz-linkcard-settings.php:
|
521 |
msgid "without using DIV tag, and use BLOCKQUOTE tag"
|
522 |
msgstr "<BLOCKQUOTE>で囲んで引用扱いにします"
|
523 |
|
524 |
-
#: ../lib/pz-linkcard-settings.php:
|
525 |
msgid "Link the whole"
|
526 |
msgstr "カード全体をリンク"
|
527 |
|
528 |
-
#: ../lib/pz-linkcard-settings.php:
|
529 |
msgid "Enclose the entire card at anchor"
|
530 |
msgstr ""
|
531 |
"カード全体をAタグで囲って、どこをクリックしてもリンク先を開くようにします。"
|
532 |
|
533 |
-
#: ../lib/pz-linkcard-settings.php:
|
534 |
msgid "Margin"
|
535 |
msgstr "余白"
|
536 |
|
537 |
-
#: ../lib/pz-linkcard-settings.php:
|
538 |
msgid "Margin top"
|
539 |
msgstr "上の余白"
|
540 |
|
541 |
-
#: ../lib/pz-linkcard-settings.php:
|
542 |
-
#: ../lib/pz-linkcard-settings.php:
|
543 |
-
#: ../lib/pz-linkcard-settings.php:
|
544 |
-
#: ../lib/pz-linkcard-settings.php:
|
545 |
msgid "Not defined"
|
546 |
msgstr "設定しない"
|
547 |
|
548 |
-
#: ../lib/pz-linkcard-settings.php:
|
549 |
-
#: ../lib/pz-linkcard-settings.php:
|
550 |
-
#: ../lib/pz-linkcard-settings.php:
|
551 |
-
#: ../lib/pz-linkcard-settings.php:
|
552 |
msgid "0"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../lib/pz-linkcard-settings.php:
|
556 |
-
#: ../lib/pz-linkcard-settings.php:
|
557 |
-
#: ../lib/pz-linkcard-settings.php:
|
558 |
-
#: ../lib/pz-linkcard-settings.php:
|
559 |
-
#: ../lib/pz-linkcard-settings.php:
|
560 |
msgid "4px"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../lib/pz-linkcard-settings.php:
|
564 |
-
#: ../lib/pz-linkcard-settings.php:
|
565 |
-
#: ../lib/pz-linkcard-settings.php:
|
566 |
-
#: ../lib/pz-linkcard-settings.php:
|
567 |
-
#: ../lib/pz-linkcard-settings.php:
|
568 |
msgid "8px"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: ../lib/pz-linkcard-settings.php:
|
572 |
-
#: ../lib/pz-linkcard-settings.php:
|
573 |
-
#: ../lib/pz-linkcard-settings.php:
|
574 |
-
#: ../lib/pz-linkcard-settings.php:
|
575 |
-
#: ../lib/pz-linkcard-settings.php:
|
576 |
msgid "16px"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: ../lib/pz-linkcard-settings.php:
|
580 |
-
#: ../lib/pz-linkcard-settings.php:
|
581 |
-
#: ../lib/pz-linkcard-settings.php:
|
582 |
-
#: ../lib/pz-linkcard-settings.php:
|
583 |
-
#: ../lib/pz-linkcard-settings.php:
|
584 |
msgid "32px"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../lib/pz-linkcard-settings.php:
|
588 |
-
#: ../lib/pz-linkcard-settings.php:
|
589 |
-
#: ../lib/pz-linkcard-settings.php:
|
590 |
-
#: ../lib/pz-linkcard-settings.php:
|
591 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
msgid "64px"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../lib/pz-linkcard-settings.php:225 ../lib/pz-linkcard-settings.php:
|
596 |
msgid "Margin left"
|
597 |
msgstr "左の余白"
|
598 |
|
599 |
-
#: ../lib/pz-linkcard-settings.php:
|
600 |
-
#: ../lib/pz-linkcard-settings.php:
|
601 |
msgid "24px"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../lib/pz-linkcard-settings.php:
|
605 |
msgid "Margin right"
|
606 |
msgstr "右の余白"
|
607 |
|
608 |
-
#: ../lib/pz-linkcard-settings.php:
|
609 |
-
#: ../lib/pz-linkcard-settings.php:
|
610 |
msgid "Width"
|
611 |
msgstr "幅"
|
612 |
|
613 |
-
#: ../lib/pz-linkcard-settings.php:
|
614 |
-
#: ../lib/pz-linkcard-settings.php:
|
615 |
-
#: ../lib/pz-linkcard-settings.php:
|
616 |
-
#: ../lib/pz-linkcard-settings.php:
|
617 |
msgid "Height"
|
618 |
msgstr "高さ"
|
619 |
|
620 |
-
#: ../lib/pz-linkcard-settings.php:
|
621 |
msgid "Margin bottom"
|
622 |
msgstr "下の余白"
|
623 |
|
624 |
-
#: ../lib/pz-linkcard-settings.php:
|
625 |
msgid "Centering"
|
626 |
msgstr "中央に寄せる"
|
627 |
|
628 |
-
#: ../lib/pz-linkcard-settings.php:
|
629 |
msgid "Display settings"
|
630 |
msgstr "表示の設定"
|
631 |
|
632 |
-
#: ../lib/pz-linkcard-settings.php:
|
633 |
msgid "Layout"
|
634 |
msgstr "外観設定"
|
635 |
|
636 |
-
#: ../lib/pz-linkcard-settings.php:
|
637 |
msgid "Site information"
|
638 |
msgstr "サイト情報"
|
639 |
|
640 |
-
#: ../lib/pz-linkcard-settings.php:
|
641 |
msgid "Top"
|
642 |
msgstr "上側"
|
643 |
|
644 |
-
#: ../lib/pz-linkcard-settings.php:
|
645 |
msgid "Above the title"
|
646 |
msgstr "タイトルの上側"
|
647 |
|
648 |
-
#: ../lib/pz-linkcard-settings.php:
|
649 |
msgid "Bottom"
|
650 |
msgstr "下側"
|
651 |
|
652 |
-
#: ../lib/pz-linkcard-settings.php:
|
653 |
msgid "Use SiteName"
|
654 |
msgstr "サイト名称を使用"
|
655 |
|
656 |
-
#: ../lib/pz-linkcard-settings.php:
|
|
|
|
|
|
|
|
|
657 |
msgid "Make additional information heading display"
|
658 |
msgstr "付加情報を見出し表示にする"
|
659 |
|
660 |
-
#: ../lib/pz-linkcard-settings.php:
|
661 |
msgid "Turn off the anchor text underlining"
|
662 |
msgstr "リンク文字のアンダーラインを除去する"
|
663 |
|
664 |
-
#: ../lib/pz-linkcard-settings.php:
|
665 |
msgid "Separator line"
|
666 |
msgstr "区切り線"
|
667 |
|
668 |
-
#: ../lib/pz-linkcard-settings.php:
|
669 |
msgid "Display URL"
|
670 |
msgstr "リンク先URLの表示"
|
671 |
|
672 |
-
#: ../lib/pz-linkcard-settings.php:
|
673 |
msgid "Under title"
|
674 |
msgstr "タイトルの下"
|
675 |
|
676 |
-
#: ../lib/pz-linkcard-settings.php:
|
677 |
msgid "Bihind site-info"
|
678 |
msgstr "サイト情報の後ろ"
|
679 |
|
680 |
-
#: ../lib/pz-linkcard-settings.php:
|
681 |
-
#: ../lib/pz-linkcard-settings.php:
|
682 |
msgid "Thumbnail"
|
683 |
msgstr "サムネイル"
|
684 |
|
685 |
-
#: ../lib/pz-linkcard-settings.php:
|
686 |
msgid "Right"
|
687 |
msgstr "右側"
|
688 |
|
689 |
-
#: ../lib/pz-linkcard-settings.php:
|
690 |
msgid "Left"
|
691 |
msgstr "左側"
|
692 |
|
693 |
-
#: ../lib/pz-linkcard-settings.php:
|
694 |
msgid "Upper"
|
695 |
msgstr "上側"
|
696 |
|
697 |
-
#: ../lib/pz-linkcard-settings.php:
|
698 |
msgid "Shadow"
|
699 |
msgstr "影を付ける"
|
700 |
|
701 |
-
#: ../lib/pz-linkcard-settings.php:
|
702 |
msgid "Hollow content area"
|
703 |
msgstr "記事の情報に枠を付ける"
|
704 |
|
705 |
-
#: ../lib/pz-linkcard-settings.php:
|
706 |
msgid "Display excerpt"
|
707 |
msgstr "抜粋文を表示する"
|
708 |
|
709 |
-
#: ../lib/pz-linkcard-settings.php:
|
710 |
msgid "Hollow"
|
711 |
msgstr "内側に影を付ける"
|
712 |
|
713 |
-
#: ../lib/pz-linkcard-settings.php:
|
714 |
msgid "Round a square"
|
715 |
msgstr "角を丸める"
|
716 |
|
717 |
-
#: ../lib/pz-linkcard-settings.php:
|
718 |
msgid "Thinning at mouseover"
|
719 |
msgstr "マウスでポイントしたときに表示を薄くする"
|
720 |
|
721 |
-
#: ../lib/pz-linkcard-settings.php:
|
722 |
msgid "Border"
|
723 |
msgstr "枠線の太さ"
|
724 |
|
725 |
-
#: ../lib/pz-linkcard-settings.php:
|
726 |
-
#: ../lib/pz-linkcard-settings.php:
|
727 |
-
#: ../lib/pz-linkcard-settings.php:
|
728 |
-
#: ../lib/pz-linkcard-settings.php:
|
729 |
msgid "Color"
|
730 |
msgstr "色"
|
731 |
|
732 |
-
#: ../lib/pz-linkcard-settings.php:
|
733 |
msgid "none"
|
734 |
msgstr "なし"
|
735 |
|
736 |
-
#: ../lib/pz-linkcard-settings.php:
|
737 |
msgid "solid"
|
738 |
msgstr "solid/実線"
|
739 |
|
740 |
-
#: ../lib/pz-linkcard-settings.php:
|
741 |
msgid "dotted"
|
742 |
msgstr "dotted/点線"
|
743 |
|
744 |
-
#: ../lib/pz-linkcard-settings.php:
|
745 |
msgid "dashed"
|
746 |
msgstr "dashed/破線"
|
747 |
|
748 |
-
#: ../lib/pz-linkcard-settings.php:
|
749 |
msgid "double"
|
750 |
msgstr "double/二重線"
|
751 |
|
752 |
-
#: ../lib/pz-linkcard-settings.php:
|
753 |
msgid "groove"
|
754 |
msgstr "groove/立体(へこみ)"
|
755 |
|
756 |
-
#: ../lib/pz-linkcard-settings.php:
|
757 |
msgid "ridge"
|
758 |
msgstr "ridge/立体(隆起)"
|
759 |
|
760 |
-
#: ../lib/pz-linkcard-settings.php:
|
761 |
msgid "inset"
|
762 |
msgstr "inset/立体(押したボタンのような効果)"
|
763 |
|
764 |
-
#: ../lib/pz-linkcard-settings.php:
|
765 |
msgid "outset"
|
766 |
msgstr "outset/立体(ボタンのような効果)"
|
767 |
|
768 |
-
#: ../lib/pz-linkcard-settings.php:
|
769 |
msgid "Reset img style"
|
770 |
msgstr "CSSリセット(img)"
|
771 |
|
772 |
-
#: ../lib/pz-linkcard-settings.php:
|
773 |
msgid ""
|
774 |
"When unnecessary frame is displayed on the image, you can improve it by case"
|
775 |
msgstr "画像がずれて表示されるときに改善される可能性が有ります(推奨)"
|
776 |
|
777 |
-
#: ../lib/pz-linkcard-settings.php:
|
778 |
msgid "More button"
|
779 |
msgstr "続きを読むボタン"
|
780 |
|
781 |
-
#: ../lib/pz-linkcard-settings.php:
|
782 |
msgid "Text link"
|
783 |
msgstr "テキストリンク"
|
784 |
|
785 |
-
#: ../lib/pz-linkcard-settings.php:
|
786 |
msgid "Simple button"
|
787 |
msgstr "シンプルなボタン"
|
788 |
|
789 |
-
#: ../lib/pz-linkcard-settings.php:
|
790 |
msgid "Blue"
|
791 |
msgstr "ブルー"
|
792 |
|
793 |
-
#: ../lib/pz-linkcard-settings.php:
|
794 |
msgid "Dark"
|
795 |
msgstr "ダーク"
|
796 |
|
797 |
-
#: ../lib/pz-linkcard-settings.php:
|
798 |
msgid "*"
|
799 |
msgstr "※"
|
800 |
|
801 |
-
#: ../lib/pz-linkcard-settings.php:
|
802 |
msgid ""
|
803 |
"It is recommended that you leave the card height blank when using this "
|
804 |
"setting."
|
805 |
msgstr "この設定を使用するときはカードの高さを空欄にすることをお勧めします。"
|
806 |
|
807 |
-
#: ../lib/pz-linkcard-settings.php:
|
808 |
msgid "Display SNS Count"
|
809 |
msgstr "シェア数を表示する"
|
810 |
|
811 |
-
#: ../lib/pz-linkcard-settings.php:
|
812 |
msgid "Bihind title"
|
813 |
msgstr "タイトルの後ろ"
|
814 |
|
815 |
-
#: ../lib/pz-linkcard-settings.php:
|
816 |
msgid "Twitter"
|
817 |
msgstr "ツイッター"
|
818 |
|
819 |
-
#: ../lib/pz-linkcard-settings.php:
|
820 |
msgid "Facebook"
|
821 |
msgstr "フェイスブック(シェア数)"
|
822 |
|
823 |
-
#: ../lib/pz-linkcard-settings.php:
|
824 |
msgid "Hatena"
|
825 |
msgstr "はてなブックマーク"
|
826 |
|
827 |
-
#: ../lib/pz-linkcard-settings.php:
|
828 |
msgid "Pocket"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../lib/pz-linkcard-settings.php:
|
832 |
msgid "Letter settings"
|
833 |
msgstr "文字の設定"
|
834 |
|
835 |
-
#: ../lib/pz-linkcard-settings.php:
|
836 |
-
#: ../lib/pz-linkcard-settings.php:
|
837 |
-
#: ../lib/pz-linkcard-settings.php:
|
838 |
msgid "Outline"
|
839 |
msgstr "縁取り"
|
840 |
|
841 |
-
#: ../lib/pz-linkcard-settings.php:
|
842 |
-
#: ../lib/pz-linkcard-settings.php:
|
843 |
-
#: ../lib/pz-linkcard-settings.php:
|
844 |
msgid "Size"
|
845 |
msgstr "大きさ"
|
846 |
|
847 |
-
#: ../lib/pz-linkcard-settings.php:
|
848 |
-
#: ../lib/pz-linkcard-settings.php:
|
849 |
msgid "Length"
|
850 |
msgstr "桁数"
|
851 |
|
852 |
-
#: ../lib/pz-linkcard-settings.php:
|
853 |
-
#: ../lib/pz-linkcard-settings.php:
|
854 |
msgid "Added information"
|
855 |
msgstr "付加情報"
|
856 |
|
857 |
-
#: ../lib/pz-linkcard-settings.php:
|
858 |
msgid "Resize"
|
859 |
msgstr "幅に合わせて縮小"
|
860 |
|
861 |
-
#: ../lib/pz-linkcard-settings.php:
|
862 |
msgid "Adjust thumbnail and letter size according to width"
|
863 |
msgstr "画面幅に合わせて文字とサムネイルの大きさを調整します。"
|
864 |
|
865 |
-
#: ../lib/pz-linkcard-settings.php:
|
866 |
msgid "External link settings"
|
867 |
msgstr "外部リンクの設定"
|
868 |
|
869 |
-
#: ../lib/pz-linkcard-settings.php:
|
870 |
-
#: ../lib/pz-linkcard-settings.php:
|
871 |
msgid "Background Color"
|
872 |
msgstr "背景色"
|
873 |
|
874 |
-
#: ../lib/pz-linkcard-settings.php:
|
875 |
msgid "Background image"
|
876 |
msgstr "背景画像"
|
877 |
|
878 |
-
#: ../lib/pz-linkcard-settings.php:
|
879 |
-
#: ../lib/pz-linkcard-settings.php:
|
880 |
msgid "Direct"
|
881 |
msgstr "直接取得する"
|
882 |
|
883 |
-
#: ../lib/pz-linkcard-settings.php:
|
884 |
-
#: ../lib/pz-linkcard-settings.php:
|
885 |
msgid "Use WebAPI"
|
886 |
msgstr "WebAPIを利用する"
|
887 |
|
888 |
-
#: ../lib/pz-linkcard-settings.php:
|
889 |
-
#: ../lib/pz-linkcard-settings.php:
|
890 |
msgid "Use WebAPI ,If can not direct"
|
891 |
msgstr "直接取得できない場合、WebAPIを利用する"
|
892 |
|
893 |
-
#: ../lib/pz-linkcard-settings.php:
|
894 |
-
#: ../lib/pz-linkcard-settings.php:
|
895 |
msgid "Favicon"
|
896 |
msgstr "サイトアイコン"
|
897 |
|
898 |
-
#: ../lib/pz-linkcard-settings.php:
|
899 |
msgid "Text of more button"
|
900 |
msgstr "続きを読むボタンの文字"
|
901 |
|
902 |
-
#: ../lib/pz-linkcard-settings.php:
|
903 |
-
#: ../lib/pz-linkcard-settings.php:
|
904 |
msgid "Open new window/tab"
|
905 |
msgstr "新しいウィンドウで開く"
|
906 |
|
907 |
-
#: ../lib/pz-linkcard-settings.php:
|
908 |
msgid "All client"
|
909 |
msgstr "すべての端末"
|
910 |
|
911 |
-
#: ../lib/pz-linkcard-settings.php:
|
912 |
msgid "Other than mobile"
|
913 |
msgstr "モバイル端末以外"
|
914 |
|
915 |
-
#: ../lib/pz-linkcard-settings.php:
|
916 |
msgid "Get contents"
|
917 |
msgstr "記事取得方法"
|
918 |
|
919 |
-
#: ../lib/pz-linkcard-settings.php:
|
920 |
msgid "Initially acquired only from the content"
|
921 |
msgstr "カード管理画面に記録されている内容から表示する"
|
922 |
|
923 |
-
#: ../lib/pz-linkcard-settings.php:
|
924 |
msgid "Set nofollow"
|
925 |
msgstr "nofollowを付与する"
|
926 |
|
927 |
-
#: ../lib/pz-linkcard-settings.php:
|
928 |
msgid "In the case of an external site, it puts the \"nofollow\""
|
929 |
msgstr "外部リンクのリンクを nofollow にする"
|
930 |
|
931 |
-
#: ../lib/pz-linkcard-settings.php:
|
932 |
msgid "Use HatenaBlogCard"
|
933 |
msgstr "はてなブログカードを利用する"
|
934 |
|
935 |
-
#: ../lib/pz-linkcard-settings.php:
|
936 |
msgid "External links will use Always HatenaBlogCard."
|
937 |
msgstr "外部リンクは「はてなブログカード」を利用する"
|
938 |
|
939 |
-
#: ../lib/pz-linkcard-settings.php:
|
940 |
msgid "(Not recommended)"
|
941 |
msgstr "(非推奨)"
|
942 |
|
943 |
-
#: ../lib/pz-linkcard-settings.php:
|
944 |
msgid "Internal link settings"
|
945 |
msgstr "内部リンクの設定"
|
946 |
|
947 |
-
#: ../lib/pz-linkcard-settings.php:
|
948 |
msgid "Background Image"
|
949 |
msgstr "背景画像"
|
950 |
|
951 |
-
#: ../lib/pz-linkcard-settings.php:
|
952 |
msgid "Always get the latest from the content"
|
953 |
msgstr "常に最新の記事内容から抜粋文を作成する"
|
954 |
|
955 |
-
#: ../lib/pz-linkcard-settings.php:
|
956 |
msgid "Always get the latest from the excerpt"
|
957 |
msgstr "抜粋文が設定されている投稿はそちらを優先する"
|
958 |
|
959 |
-
#: ../lib/pz-linkcard-settings.php:
|
960 |
msgid "Retry get PID"
|
961 |
msgstr "記事URLの再取得"
|
962 |
|
963 |
-
#: ../lib/pz-linkcard-settings.php:
|
964 |
msgid "When the `Post ID` can not be acquired, it is acquired again."
|
965 |
msgstr "記事IDが取得できなかった場合に、リダイレクト先のURLを取得する。"
|
966 |
|
967 |
-
#: ../lib/pz-linkcard-settings.php:
|
968 |
msgid "Same-page link settings"
|
969 |
msgstr "同ページへのリンクの設定"
|
970 |
|
971 |
-
#: ../lib/pz-linkcard-settings.php:
|
972 |
-
#: ../lib/pz-linkcard-settings.php:
|
973 |
msgid "It is common with setting Internal-link"
|
974 |
msgstr "内部リンク用の設定が使用されます"
|
975 |
|
976 |
-
#: ../lib/pz-linkcard-settings.php:
|
977 |
msgid "Web-API settings"
|
978 |
msgstr "画像取得APIの設定"
|
979 |
|
980 |
-
#: ../lib/pz-linkcard-settings.php:
|
981 |
msgid "Favicon API"
|
982 |
msgstr "ファビコンの取得API"
|
983 |
|
984 |
-
#: ../lib/pz-linkcard-settings.php:
|
985 |
msgid ""
|
986 |
"%DOMAIN% replace to domain name (ex. poporon.poponet.jp )<br>%DOMAIN_URL% "
|
987 |
"replace to domain URL (ex. http://poporon.poponet.jp )"
|
@@ -990,89 +993,89 @@ msgstr ""
|
|
990 |
"%DOMAIN_URL% と記述するとドメインのURL(例.http://poporon.poponet.jp)に置き"
|
991 |
"換わります。"
|
992 |
|
993 |
-
#: ../lib/pz-linkcard-settings.php:
|
994 |
msgid "%URL% replace to URL."
|
995 |
msgstr "%URL% と記述すると記事のURLに置き換わります。"
|
996 |
|
997 |
-
#: ../lib/pz-linkcard-settings.php:
|
998 |
msgid "ex1."
|
999 |
msgstr "例1."
|
1000 |
|
1001 |
-
#: ../lib/pz-linkcard-settings.php:
|
1002 |
msgid "ex2."
|
1003 |
msgstr "例2."
|
1004 |
|
1005 |
-
#: ../lib/pz-linkcard-settings.php:
|
1006 |
msgid "Thumbnail API"
|
1007 |
msgstr "サムネイル画像の取得API"
|
1008 |
|
1009 |
-
#: ../lib/pz-linkcard-settings.php:
|
1010 |
msgid "Check link settings"
|
1011 |
msgstr "リンク先チェックの設定"
|
1012 |
|
1013 |
-
#: ../lib/pz-linkcard-settings.php:
|
1014 |
msgid "Do not link at error"
|
1015 |
msgstr "エラーのときリンクしない"
|
1016 |
|
1017 |
-
#: ../lib/pz-linkcard-settings.php:
|
1018 |
msgid "When access status is \"403\", \"404\", \"410\", unlink"
|
1019 |
msgstr "ステータスが「403」「404」「410」のときにリンクを無効にします"
|
1020 |
|
1021 |
-
#: ../lib/pz-linkcard-settings.php:
|
1022 |
msgid "SSL verification disabled"
|
1023 |
msgstr "SSL検証を無効"
|
1024 |
|
1025 |
-
#: ../lib/pz-linkcard-settings.php:
|
1026 |
msgid "Try setting if the contents of the SSL site can not be acquired."
|
1027 |
msgstr ""
|
1028 |
"SSLサイトのタイトルや記事内容が取得できない場合に設定することで取得できる可能"
|
1029 |
"性があります。"
|
1030 |
|
1031 |
-
#: ../lib/pz-linkcard-settings.php:
|
1032 |
msgid "Follow location"
|
1033 |
msgstr "リダイレクト処理"
|
1034 |
|
1035 |
-
#: ../lib/pz-linkcard-settings.php:
|
1036 |
msgid "Track when the link destination is redirected."
|
1037 |
msgstr "リンク先がリダイレクトされている場合に追跡します。"
|
1038 |
|
1039 |
-
#: ../lib/pz-linkcard-settings.php:
|
1040 |
msgid "Set referer"
|
1041 |
msgstr "リファラーの通知"
|
1042 |
|
1043 |
-
#: ../lib/pz-linkcard-settings.php:
|
1044 |
msgid "Notify the article URL to the link destination."
|
1045 |
msgstr "リンク先に記事のURLを知らせます。"
|
1046 |
|
1047 |
-
#: ../lib/pz-linkcard-settings.php:
|
1048 |
msgid "Use User-Agent"
|
1049 |
msgstr "ユーザーエージェントの通知"
|
1050 |
|
1051 |
-
#: ../lib/pz-linkcard-settings.php:
|
1052 |
msgid "Notify using Pz-LinkCard to the link destination."
|
1053 |
msgstr "リンク先にPz-LinkCardを使用していることを知らせます。"
|
1054 |
|
1055 |
-
#: ../lib/pz-linkcard-settings.php:
|
1056 |
msgid "Broken link checker"
|
1057 |
msgstr "リンク切れチェック"
|
1058 |
|
1059 |
-
#: ../lib/pz-linkcard-settings.php:
|
1060 |
msgid "Alive confirmation of the link destination."
|
1061 |
msgstr "リンク先がアクセスできるか定期的に確認します。"
|
1062 |
|
1063 |
-
#: ../lib/pz-linkcard-settings.php:
|
1064 |
msgid "Broken link count"
|
1065 |
msgstr "リンク切れカウント"
|
1066 |
|
1067 |
-
#: ../lib/pz-linkcard-settings.php:
|
1068 |
msgid "The number of broken links is displayed next to the submenu."
|
1069 |
msgstr "サブメニューの横にリンク切れの件数を表示します。"
|
1070 |
|
1071 |
-
#: ../lib/pz-linkcard-settings.php:
|
1072 |
msgid "Multi-site compatible"
|
1073 |
msgstr "サブディレクトリを外部リンクにする"
|
1074 |
|
1075 |
-
#: ../lib/pz-linkcard-settings.php:
|
1076 |
msgid ""
|
1077 |
"In the case of the multi-site of the subdirectory type, the site under the "
|
1078 |
"subdirectory is judged as an external site."
|
@@ -1080,56 +1083,56 @@ msgstr ""
|
|
1080 |
"サブディレクトリ型のマルチサイトの場合で、メインサイトからサブサイトを外部サ"
|
1081 |
"イトとして判定する。"
|
1082 |
|
1083 |
-
#: ../lib/pz-linkcard-settings.php:
|
1084 |
msgid "Editor settings"
|
1085 |
msgstr "エディターの設定"
|
1086 |
|
1087 |
-
#: ../lib/pz-linkcard-settings.php:
|
1088 |
msgid "ShortCode 1"
|
1089 |
msgstr "ショートコード 1"
|
1090 |
|
1091 |
-
#: ../lib/pz-linkcard-settings.php:
|
1092 |
-
#: ../lib/pz-linkcard-settings.php:
|
1093 |
msgid "Case-sensitive"
|
1094 |
msgstr "大文字と小文字を区別します"
|
1095 |
|
1096 |
-
#: ../lib/pz-linkcard-settings.php:
|
1097 |
msgid "Use inlinetext"
|
1098 |
msgstr "ショートコードで囲んだ文字列"
|
1099 |
|
1100 |
-
#: ../lib/pz-linkcard-settings.php:
|
1101 |
msgid "No use"
|
1102 |
msgstr "使用しない"
|
1103 |
|
1104 |
-
#: ../lib/pz-linkcard-settings.php:
|
1105 |
msgid "Use to excerpt"
|
1106 |
msgstr "抜粋文として使用"
|
1107 |
|
1108 |
-
#: ../lib/pz-linkcard-settings.php:
|
1109 |
msgid "Use to title"
|
1110 |
msgstr "タイトルとして使用"
|
1111 |
|
1112 |
-
#: ../lib/pz-linkcard-settings.php:
|
1113 |
msgid "This setting applies only to the Shortcode1"
|
1114 |
msgstr "ショートコード1にのみ適用されます"
|
1115 |
|
1116 |
-
#: ../lib/pz-linkcard-settings.php:
|
1117 |
msgid "ShortCode 2"
|
1118 |
msgstr "ショートコード 2"
|
1119 |
|
1120 |
-
#: ../lib/pz-linkcard-settings.php:
|
1121 |
msgid "ShortCode 3"
|
1122 |
msgstr "ショートコード 3"
|
1123 |
|
1124 |
-
#: ../lib/pz-linkcard-settings.php:
|
1125 |
msgid "ShortCode 4"
|
1126 |
msgstr "ショートコード 4"
|
1127 |
|
1128 |
-
#: ../lib/pz-linkcard-settings.php:
|
1129 |
msgid "Parameters"
|
1130 |
msgstr "パラメータ"
|
1131 |
|
1132 |
-
#: ../lib/pz-linkcard-settings.php:
|
1133 |
msgid ""
|
1134 |
"For any shortcode you can change the title and excerpt with `title` "
|
1135 |
"parameter and `content` parameter"
|
@@ -1137,206 +1140,215 @@ msgstr ""
|
|
1137 |
"どのショートコードでも title パラメータと content パラメータでタイトルと抜粋"
|
1138 |
"文を指定できます。"
|
1139 |
|
1140 |
-
#: ../lib/pz-linkcard-settings.php:
|
1141 |
msgid "Convert text link"
|
1142 |
msgstr "テキストリンク行の変換"
|
1143 |
|
1144 |
-
#: ../lib/pz-linkcard-settings.php:
|
1145 |
msgid "Convert lines with text link only to Linkcard."
|
1146 |
msgstr "テキストリンクだけの行をリンクカードに変換する。"
|
1147 |
|
1148 |
-
#: ../lib/pz-linkcard-settings.php:
|
1149 |
msgid "Convert URL"
|
1150 |
msgstr "URL行の変換"
|
1151 |
|
1152 |
-
#: ../lib/pz-linkcard-settings.php:
|
1153 |
msgid "Convert lines with URL only to Linkcard."
|
1154 |
msgstr "URLだけの行をリンクカードに変換する。"
|
1155 |
|
1156 |
-
#: ../lib/pz-linkcard-settings.php:
|
1157 |
msgid "Only external link"
|
1158 |
msgstr "外部リンクのみ変換"
|
1159 |
|
1160 |
-
#: ../lib/pz-linkcard-settings.php:
|
1161 |
msgid "Conversion only external link"
|
1162 |
msgstr "外部リンクのときのみ変換します"
|
1163 |
|
1164 |
-
#: ../lib/pz-linkcard-settings.php:
|
1165 |
msgid "Add insert button"
|
1166 |
msgstr "リンクカードボタンを追加"
|
1167 |
|
1168 |
-
#: ../lib/pz-linkcard-settings.php:
|
1169 |
msgid "Add insert button to visual editor."
|
1170 |
msgstr "ビジュアルエディタにリンクカードを挿入するボタンを追加する。"
|
1171 |
|
1172 |
-
#: ../lib/pz-linkcard-settings.php:
|
1173 |
msgid "Add quick tag"
|
1174 |
msgstr "クイックタグを追加"
|
1175 |
|
1176 |
-
#: ../lib/pz-linkcard-settings.php:
|
1177 |
msgid "Add quick tag button to text editor."
|
1178 |
msgstr "テキストエディタにリンクカードを挿入するボタンを追加する。"
|
1179 |
|
1180 |
-
#: ../lib/pz-linkcard-settings.php:
|
1181 |
msgid "Advanced settings"
|
1182 |
msgstr "詳しい人向けの設定"
|
1183 |
|
1184 |
-
#: ../lib/pz-linkcard-settings.php:
|
1185 |
msgid "Trailing slash"
|
1186 |
msgstr "末尾のスラッシュ"
|
1187 |
|
1188 |
-
#: ../lib/pz-linkcard-settings.php:
|
1189 |
msgid "As it"
|
1190 |
msgstr "そのまま"
|
1191 |
|
1192 |
-
#: ../lib/pz-linkcard-settings.php:
|
1193 |
msgid "When only domain name, remove"
|
1194 |
msgstr "ドメイン名のみのときだけ削除"
|
1195 |
|
1196 |
-
#: ../lib/pz-linkcard-settings.php:
|
1197 |
msgid "Always remove"
|
1198 |
msgstr "常に削除"
|
1199 |
|
1200 |
-
#: ../lib/pz-linkcard-settings.php:
|
1201 |
msgid "CSS to be added"
|
1202 |
msgstr "追加するスタイルシート"
|
1203 |
|
1204 |
-
#: ../lib/pz-linkcard-settings.php:
|
1205 |
msgid "specified CSS"
|
1206 |
msgstr "指定したCSSを使用"
|
1207 |
|
1208 |
-
#: ../lib/pz-linkcard-settings.php:
|
1209 |
msgid "Use specified CSS file"
|
1210 |
msgstr "指定したCSSファイルを使用する"
|
1211 |
|
1212 |
-
#: ../lib/pz-linkcard-settings.php:
|
1213 |
msgid "CSS file"
|
1214 |
msgstr "CSSファイル名"
|
1215 |
|
1216 |
-
#: ../lib/pz-linkcard-settings.php:
|
1217 |
msgid "(ex. https://exsample.com/style.css )"
|
1218 |
msgstr "例.https://exsample.com/style.css"
|
1219 |
|
1220 |
-
#: ../lib/pz-linkcard-settings.php:
|
1221 |
msgid "CSS URL"
|
1222 |
msgstr "CSSファイルのURL"
|
1223 |
|
1224 |
-
#: ../lib/pz-linkcard-settings.php:
|
1225 |
msgid "Class ID to be added(for PC)"
|
1226 |
msgstr "PCのときに追加するクラス名"
|
1227 |
|
1228 |
-
#: ../lib/pz-linkcard-settings.php:
|
1229 |
msgid "Class ID to be added(for Mobile)"
|
1230 |
msgstr "モバイルのときに追加するクラス名"
|
1231 |
|
1232 |
-
#: ../lib/pz-linkcard-settings.php:
|
1233 |
msgid "Do shortcode"
|
1234 |
msgstr "ショートコード 実行"
|
1235 |
|
1236 |
-
#: ../lib/pz-linkcard-settings.php:
|
1237 |
msgid "Force shortcode development."
|
1238 |
msgstr "リンク・URLから変換したときにショートコードを強制的に実行する。"
|
1239 |
|
1240 |
-
#: ../lib/pz-linkcard-settings.php:
|
1241 |
msgid "Google AMP URL"
|
1242 |
msgstr "URLによるAMP判断"
|
1243 |
|
1244 |
-
#: ../lib/pz-linkcard-settings.php:
|
1245 |
msgid "If the URL is AMP, display simple."
|
1246 |
msgstr ""
|
1247 |
"アクセスされたURLの末尾が「/amp」「/amp/」「/?amp=1」の場合、簡易表示に切り替"
|
1248 |
"える。"
|
1249 |
|
1250 |
-
#: ../lib/pz-linkcard-settings.php:
|
1251 |
msgid "IDNA Convert"
|
1252 |
msgstr "IDNAドメインの表示"
|
1253 |
|
1254 |
-
#: ../lib/pz-linkcard-settings.php:
|
1255 |
msgid "Convert domain name from IDNA ASCII to Unicode."
|
1256 |
msgstr ""
|
1257 |
"IDNAのASCII方式でエンコードされたドメイン名をUnicodeに変換して表示します(日"
|
1258 |
"本語ドメインなど)"
|
1259 |
|
1260 |
-
#: ../lib/pz-linkcard-settings.php:
|
1261 |
msgid "Relative URL"
|
1262 |
msgstr "相対指定URL"
|
1263 |
|
1264 |
-
#: ../lib/pz-linkcard-settings.php:
|
1265 |
msgid "For relative-specified URLs, complement the site URL."
|
1266 |
msgstr "相対指定のURLの場合、サイトURLを補完します。"
|
1267 |
|
1268 |
-
#: ../lib/pz-linkcard-settings.php:
|
1269 |
msgid "Display link to author page"
|
1270 |
msgstr "プラグイン名を表示する"
|
1271 |
|
1272 |
-
#: ../lib/pz-linkcard-settings.php:
|
1273 |
msgid "Plugin URL"
|
1274 |
msgstr "プラグインページURL"
|
1275 |
|
1276 |
-
#: ../lib/pz-linkcard-settings.php:
|
1277 |
msgid "Plugin name"
|
1278 |
msgstr "プラグイン名"
|
1279 |
|
1280 |
-
#: ../lib/pz-linkcard-settings.php:
|
1281 |
msgid "Plugin version"
|
1282 |
msgstr "プラグインバージョン"
|
1283 |
|
1284 |
-
#: ../lib/pz-linkcard-settings.php:
|
1285 |
msgid "Saved datetime"
|
1286 |
msgstr "保存した日時"
|
1287 |
|
1288 |
-
#: ../lib/pz-linkcard-settings.php:
|
1289 |
msgid "Display elapsed time"
|
1290 |
msgstr "実行時間の表示"
|
1291 |
|
1292 |
-
#: ../lib/pz-linkcard-settings.php:
|
1293 |
msgid "Output the elapsed time to HTML comment."
|
1294 |
msgstr "作成にかかった時間をコメントとしてHTMLへ出力する"
|
1295 |
|
1296 |
-
#: ../lib/pz-linkcard-settings.php:
|
1297 |
msgid "Initialize"
|
1298 |
msgstr "初期化"
|
1299 |
|
1300 |
-
#: ../lib/pz-linkcard-settings.php:
|
1301 |
msgid "Return to the initial setting"
|
1302 |
msgstr "設定を初期状態へ戻す"
|
1303 |
|
1304 |
-
#: ../lib/pz-linkcard-settings.php:
|
1305 |
msgid "etc"
|
1306 |
msgstr "その他"
|
1307 |
|
1308 |
-
#: ../lib/pz-linkcard-settings.php:
|
1309 |
msgid "Author's site"
|
1310 |
msgstr "作者のサイト"
|
1311 |
|
1312 |
-
#: ../lib/pz-linkcard-settings.php:
|
1313 |
msgid "Popozure."
|
1314 |
msgstr "ぽぽづれ。"
|
1315 |
|
1316 |
-
#: ../lib/pz-linkcard-settings.php:
|
1317 |
msgid "Poporon's PC daily diary"
|
1318 |
msgstr "ぽぽろんのパソコンつれづれ(ズレズレ?)日記"
|
1319 |
|
1320 |
-
#: ../lib/pz-linkcard-settings.php:
|
1321 |
msgid "When in trouble"
|
1322 |
msgstr "困ったときは"
|
1323 |
|
1324 |
-
#: ../lib/pz-linkcard-settings.php:
|
1325 |
msgid "Twitter account"
|
1326 |
msgstr "ツイッター アカウント"
|
1327 |
|
1328 |
-
#: ../lib/pz-linkcard-settings.php:
|
1329 |
msgid "Donation"
|
1330 |
msgstr "寄付"
|
1331 |
|
1332 |
-
#: ../lib/pz-linkcard-style.php:
|
1333 |
msgid "Style sheet saved."
|
1334 |
msgstr "設定を元にスタイルシートを自動生成しました。"
|
1335 |
|
1336 |
-
#: ../lib/pz-linkcard-style.php:
|
1337 |
msgid "Style sheet failed."
|
1338 |
msgstr "スタイルシートの自動生成に失敗しました。"
|
1339 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1340 |
#~ msgid "Radius"
|
1341 |
#~ msgstr "角を丸める"
|
1342 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Pz-LinkCard\n"
|
6 |
"Report-Msgid-Bugs-To: http://wppolyglots.wordpress.com\n"
|
7 |
+
"POT-Creation-Date: 2019-08-17 11:36+0900\n"
|
8 |
+
"PO-Revision-Date: 2019-08-17 11:37+0900\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: poporon\n"
|
11 |
"Language: ja_JP\n"
|
19 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
|
22 |
+
#: ../pz-linkcard.php:349
|
23 |
msgid "Incorrect URL specification."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: ../pz-linkcard.php:1246
|
27 |
msgid "Category"
|
28 |
msgstr "カテゴリー"
|
29 |
|
30 |
+
#: ../pz-linkcard.php:1246 ../pz-linkcard.php:1259
|
31 |
msgid "‘"
|
32 |
msgstr "「"
|
33 |
|
34 |
+
#: ../pz-linkcard.php:1246 ../pz-linkcard.php:1259
|
35 |
msgid "’"
|
36 |
msgstr "」"
|
37 |
|
38 |
+
#: ../pz-linkcard.php:1247 ../pz-linkcard.php:1260
|
39 |
msgid "("
|
40 |
msgstr "("
|
41 |
|
42 |
+
#: ../pz-linkcard.php:1247 ../pz-linkcard.php:1260
|
43 |
msgid "Count"
|
44 |
msgstr "件数"
|
45 |
|
46 |
+
#: ../pz-linkcard.php:1247 ../pz-linkcard.php:1260
|
47 |
msgid ")"
|
48 |
msgstr ")"
|
49 |
|
50 |
+
#: ../pz-linkcard.php:1259
|
51 |
msgid "Tag"
|
52 |
msgstr "タグ"
|
53 |
|
54 |
+
#: ../pz-linkcard.php:1655
|
55 |
msgid "Linkcard"
|
56 |
msgstr "リンクカード"
|
57 |
|
58 |
+
#: ../pz-linkcard.php:1655
|
59 |
msgid "Make Linkcard"
|
60 |
msgstr "リンクカードのショートコードを挿入する"
|
61 |
|
62 |
+
#: ../pz-linkcard.php:1664
|
63 |
msgid "Invalid URL parameter in "
|
64 |
msgstr "URLパラメーターの指定が無効です→"
|
65 |
|
66 |
+
#: ../pz-linkcard.php:1664
|
67 |
msgid ""
|
68 |
"* You can cancel this message from <a href=\"./options-general.php?page=pz-"
|
69 |
"linkcard-settings\">the setting screen</a>."
|
71 |
"※このメッセージの表示は<a href=\"./options-general.php?page=pz-linkcard-"
|
72 |
"settings\">設定画面</a>から解除できます。"
|
73 |
|
74 |
+
#: ../pz-linkcard.php:1706
|
75 |
msgid "Pz LkC Cache"
|
76 |
msgstr "Pz カード管理"
|
77 |
|
78 |
+
#: ../pz-linkcard.php:1707
|
79 |
msgid "Pz LinkCard"
|
80 |
msgstr "Pz カード設定"
|
81 |
|
82 |
+
#: ../pz-linkcard.php:1715 ../lib/pz-linkcard-cacheman.php:6
|
83 |
msgid "LinkCard cache manager"
|
84 |
msgstr "リンクカード/DBキャッシュ管理"
|
85 |
|
86 |
+
#: ../pz-linkcard.php:1716 ../lib/pz-linkcard-settings.php:4
|
87 |
msgid "LinkCard Settings"
|
88 |
msgstr "リンクカード設定"
|
89 |
|
90 |
+
#: ../pz-linkcard.php:1804
|
91 |
msgid "Settings"
|
92 |
msgstr "設定"
|
93 |
|
94 |
+
#: ../pz-linkcard.php:1804
|
95 |
msgid "Manage"
|
96 |
msgstr "管理"
|
97 |
|
107 |
|
108 |
#: ../lib/pz-linkcard-cacheman-edit.php:22
|
109 |
#: ../lib/pz-linkcard-cacheman-list.php:248 ../lib/pz-linkcard-edit.php:21
|
110 |
+
#: ../lib/pz-linkcard-settings.php:641
|
111 |
msgid "URL"
|
112 |
msgstr "URL"
|
113 |
|
122 |
|
123 |
#: ../lib/pz-linkcard-cacheman-edit.php:34
|
124 |
#: ../lib/pz-linkcard-cacheman-list.php:249 ../lib/pz-linkcard-edit.php:37
|
125 |
+
#: ../lib/pz-linkcard-settings.php:612
|
126 |
msgid "Title"
|
127 |
msgstr "タイトル"
|
128 |
|
129 |
#: ../lib/pz-linkcard-cacheman-edit.php:38
|
130 |
#: ../lib/pz-linkcard-cacheman-list.php:250 ../lib/pz-linkcard-edit.php:41
|
131 |
+
#: ../lib/pz-linkcard-settings.php:669
|
132 |
msgid "Excerpt"
|
133 |
msgstr "抜粋文"
|
134 |
|
359 |
msgid "Next update"
|
360 |
msgstr "次回更新日時"
|
361 |
|
362 |
+
#: ../lib/pz-linkcard-modal.php:6
|
|
|
|
|
|
|
|
|
363 |
msgid "Input URL"
|
364 |
msgstr "リンクカードを作成するURLを入力してください"
|
365 |
|
366 |
+
#: ../lib/pz-linkcard-modal.php:9
|
367 |
+
msgid "Insert"
|
368 |
+
msgstr "挿入"
|
|
|
|
|
|
|
|
|
369 |
|
370 |
#: ../lib/pz-linkcard-settings.php:38
|
371 |
msgid "Short code is not set."
|
379 |
msgid "Not changed."
|
380 |
msgstr "設定は変更されませんでした。"
|
381 |
|
382 |
+
#: ../lib/pz-linkcard-settings.php:126
|
383 |
msgid "Error"
|
384 |
msgstr "エラー表示"
|
385 |
|
386 |
+
#: ../lib/pz-linkcard-settings.php:129
|
387 |
msgid "Invalid URL"
|
388 |
msgstr "URL指定エラー"
|
389 |
|
390 |
+
#: ../lib/pz-linkcard-settings.php:130
|
391 |
msgid "Uncheck to cancel the error condition."
|
392 |
msgstr "チェックを外すとエラー状態を解除します。"
|
393 |
|
394 |
+
#: ../lib/pz-linkcard-settings.php:133
|
395 |
msgid "Error URL"
|
396 |
msgstr "URL指定エラー"
|
397 |
|
398 |
+
#: ../lib/pz-linkcard-settings.php:137
|
399 |
msgid "Error Time"
|
400 |
msgstr "エラー発生時刻"
|
401 |
|
402 |
+
#: ../lib/pz-linkcard-settings.php:144
|
403 |
msgid "Basic settings"
|
404 |
msgstr "基本の設定"
|
405 |
|
406 |
+
#: ../lib/pz-linkcard-settings.php:147
|
407 |
msgid "Easy format"
|
408 |
msgstr "かんたん書式設定"
|
409 |
|
410 |
+
#: ../lib/pz-linkcard-settings.php:150 ../lib/pz-linkcard-settings.php:362
|
411 |
+
#: ../lib/pz-linkcard-settings.php:403 ../lib/pz-linkcard-settings.php:412
|
412 |
+
#: ../lib/pz-linkcard-settings.php:451 ../lib/pz-linkcard-settings.php:526
|
413 |
+
#: ../lib/pz-linkcard-settings.php:540 ../lib/pz-linkcard-settings.php:750
|
414 |
+
#: ../lib/pz-linkcard-settings.php:762 ../lib/pz-linkcard-settings.php:781
|
415 |
+
#: ../lib/pz-linkcard-settings.php:818 ../lib/pz-linkcard-settings.php:829
|
416 |
+
#: ../lib/pz-linkcard-settings.php:848
|
417 |
msgid "None"
|
418 |
msgstr "なし"
|
419 |
|
420 |
+
#: ../lib/pz-linkcard-settings.php:151
|
421 |
msgid "Pz-LkC Default"
|
422 |
msgstr "Pz リンクカード オリジナル"
|
423 |
|
424 |
+
#: ../lib/pz-linkcard-settings.php:152
|
425 |
msgid "Simple"
|
426 |
msgstr "シンプル"
|
427 |
|
428 |
+
#: ../lib/pz-linkcard-settings.php:153
|
429 |
msgid "Normal"
|
430 |
msgstr "ノーマル(はてなブログカード風)"
|
431 |
|
432 |
+
#: ../lib/pz-linkcard-settings.php:154
|
433 |
msgid "Headline"
|
434 |
msgstr "見出し(付加情報のテキストが見出しとして表示されます)"
|
435 |
|
436 |
+
#: ../lib/pz-linkcard-settings.php:155
|
437 |
msgid "Square"
|
438 |
msgstr "スクエア"
|
439 |
|
440 |
+
#: ../lib/pz-linkcard-settings.php:156
|
441 |
msgid "Cellophane tape \"center\""
|
442 |
msgstr "セロハンテープ(中央)"
|
443 |
|
444 |
+
#: ../lib/pz-linkcard-settings.php:157
|
445 |
msgid "Cellophane tape \"Top corner\""
|
446 |
msgstr "セロハンテープ(左上と右上)"
|
447 |
|
448 |
+
#: ../lib/pz-linkcard-settings.php:158
|
449 |
msgid "Cellophane tape \"long\""
|
450 |
msgstr "セロハンテープ(長め)"
|
451 |
|
452 |
+
#: ../lib/pz-linkcard-settings.php:159
|
453 |
msgid "Curling paper"
|
454 |
msgstr "紙がめくれた効果"
|
455 |
|
456 |
+
#: ../lib/pz-linkcard-settings.php:160
|
457 |
msgid "Cellophane tape and curling"
|
458 |
msgstr "セロハンテープと紙めくれた効果"
|
459 |
|
460 |
+
#: ../lib/pz-linkcard-settings.php:161
|
461 |
msgid "Stitch blue & red"
|
462 |
msgstr "縫い目(青と赤)"
|
463 |
|
464 |
+
#: ../lib/pz-linkcard-settings.php:162
|
465 |
msgid "Stitch green & yellow"
|
466 |
msgstr "縫い目(緑と黄色)"
|
467 |
|
468 |
+
#: ../lib/pz-linkcard-settings.php:163
|
469 |
msgid "Infomation orange"
|
470 |
msgstr "インフォメーション オレンジ"
|
471 |
|
472 |
+
#: ../lib/pz-linkcard-settings.php:164
|
473 |
msgid "Neutral bluegreen"
|
474 |
msgstr "ニュートラル ブルーグリーン"
|
475 |
|
476 |
+
#: ../lib/pz-linkcard-settings.php:165
|
477 |
msgid "Enlightened green"
|
478 |
msgstr "エンライテド グリーン"
|
479 |
|
480 |
+
#: ../lib/pz-linkcard-settings.php:166
|
481 |
msgid "Resistance blue"
|
482 |
msgstr "レジスタンス ブルー"
|
483 |
|
484 |
+
#: ../lib/pz-linkcard-settings.php:167
|
485 |
msgid "Slanting"
|
486 |
msgstr "斜め"
|
487 |
|
488 |
+
#: ../lib/pz-linkcard-settings.php:168
|
489 |
msgid "3D Rotate"
|
490 |
msgstr "3D回転"
|
491 |
|
492 |
+
#: ../lib/pz-linkcard-settings.php:169
|
493 |
msgid "Pushpin"
|
494 |
msgstr "押しピン"
|
495 |
|
496 |
+
#: ../lib/pz-linkcard-settings.php:171
|
497 |
msgid "* It applies over other formatting settings."
|
498 |
msgstr "※ほかの項目よりも優先して適用されます。"
|
499 |
|
500 |
+
#: ../lib/pz-linkcard-settings.php:176
|
501 |
msgid "How to (Japanese only)"
|
502 |
msgstr "使い方"
|
503 |
|
504 |
+
#: ../lib/pz-linkcard-settings.php:184
|
505 |
msgid "Position settings"
|
506 |
msgstr "配置の設定"
|
507 |
|
508 |
+
#: ../lib/pz-linkcard-settings.php:187
|
509 |
msgid "Use blockquote tag"
|
510 |
msgstr "BLOCKQUOTEタグを使用する"
|
511 |
|
512 |
+
#: ../lib/pz-linkcard-settings.php:188
|
513 |
msgid "without using DIV tag, and use BLOCKQUOTE tag"
|
514 |
msgstr "<BLOCKQUOTE>で囲んで引用扱いにします"
|
515 |
|
516 |
+
#: ../lib/pz-linkcard-settings.php:192
|
517 |
msgid "Link the whole"
|
518 |
msgstr "カード全体をリンク"
|
519 |
|
520 |
+
#: ../lib/pz-linkcard-settings.php:196
|
521 |
msgid "Enclose the entire card at anchor"
|
522 |
msgstr ""
|
523 |
"カード全体をAタグで囲って、どこをクリックしてもリンク先を開くようにします。"
|
524 |
|
525 |
+
#: ../lib/pz-linkcard-settings.php:202
|
526 |
msgid "Margin"
|
527 |
msgstr "余白"
|
528 |
|
529 |
+
#: ../lib/pz-linkcard-settings.php:209 ../lib/pz-linkcard-settings.php:242
|
530 |
msgid "Margin top"
|
531 |
msgstr "上の余白"
|
532 |
|
533 |
+
#: ../lib/pz-linkcard-settings.php:211 ../lib/pz-linkcard-settings.php:227
|
534 |
+
#: ../lib/pz-linkcard-settings.php:244 ../lib/pz-linkcard-settings.php:260
|
535 |
+
#: ../lib/pz-linkcard-settings.php:274 ../lib/pz-linkcard-settings.php:296
|
536 |
+
#: ../lib/pz-linkcard-settings.php:314 ../lib/pz-linkcard-settings.php:332
|
537 |
msgid "Not defined"
|
538 |
msgstr "設定しない"
|
539 |
|
540 |
+
#: ../lib/pz-linkcard-settings.php:212 ../lib/pz-linkcard-settings.php:228
|
541 |
+
#: ../lib/pz-linkcard-settings.php:252 ../lib/pz-linkcard-settings.php:268
|
542 |
+
#: ../lib/pz-linkcard-settings.php:282 ../lib/pz-linkcard-settings.php:304
|
543 |
+
#: ../lib/pz-linkcard-settings.php:315 ../lib/pz-linkcard-settings.php:333
|
544 |
msgid "0"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: ../lib/pz-linkcard-settings.php:213 ../lib/pz-linkcard-settings.php:229
|
548 |
+
#: ../lib/pz-linkcard-settings.php:245 ../lib/pz-linkcard-settings.php:261
|
549 |
+
#: ../lib/pz-linkcard-settings.php:275 ../lib/pz-linkcard-settings.php:297
|
550 |
+
#: ../lib/pz-linkcard-settings.php:316 ../lib/pz-linkcard-settings.php:334
|
551 |
+
#: ../lib/pz-linkcard-settings.php:452
|
552 |
msgid "4px"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: ../lib/pz-linkcard-settings.php:214 ../lib/pz-linkcard-settings.php:230
|
556 |
+
#: ../lib/pz-linkcard-settings.php:246 ../lib/pz-linkcard-settings.php:262
|
557 |
+
#: ../lib/pz-linkcard-settings.php:276 ../lib/pz-linkcard-settings.php:298
|
558 |
+
#: ../lib/pz-linkcard-settings.php:317 ../lib/pz-linkcard-settings.php:335
|
559 |
+
#: ../lib/pz-linkcard-settings.php:453
|
560 |
msgid "8px"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../lib/pz-linkcard-settings.php:215 ../lib/pz-linkcard-settings.php:231
|
564 |
+
#: ../lib/pz-linkcard-settings.php:247 ../lib/pz-linkcard-settings.php:263
|
565 |
+
#: ../lib/pz-linkcard-settings.php:277 ../lib/pz-linkcard-settings.php:299
|
566 |
+
#: ../lib/pz-linkcard-settings.php:318 ../lib/pz-linkcard-settings.php:336
|
567 |
+
#: ../lib/pz-linkcard-settings.php:454
|
568 |
msgid "16px"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: ../lib/pz-linkcard-settings.php:216 ../lib/pz-linkcard-settings.php:232
|
572 |
+
#: ../lib/pz-linkcard-settings.php:249 ../lib/pz-linkcard-settings.php:265
|
573 |
+
#: ../lib/pz-linkcard-settings.php:279 ../lib/pz-linkcard-settings.php:301
|
574 |
+
#: ../lib/pz-linkcard-settings.php:319 ../lib/pz-linkcard-settings.php:337
|
575 |
+
#: ../lib/pz-linkcard-settings.php:455
|
576 |
msgid "32px"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../lib/pz-linkcard-settings.php:217 ../lib/pz-linkcard-settings.php:233
|
580 |
+
#: ../lib/pz-linkcard-settings.php:250 ../lib/pz-linkcard-settings.php:266
|
581 |
+
#: ../lib/pz-linkcard-settings.php:280 ../lib/pz-linkcard-settings.php:302
|
582 |
+
#: ../lib/pz-linkcard-settings.php:320 ../lib/pz-linkcard-settings.php:338
|
583 |
+
msgid "40px"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: ../lib/pz-linkcard-settings.php:218 ../lib/pz-linkcard-settings.php:234
|
587 |
+
#: ../lib/pz-linkcard-settings.php:251 ../lib/pz-linkcard-settings.php:267
|
588 |
+
#: ../lib/pz-linkcard-settings.php:281 ../lib/pz-linkcard-settings.php:303
|
589 |
+
#: ../lib/pz-linkcard-settings.php:321 ../lib/pz-linkcard-settings.php:339
|
590 |
+
#: ../lib/pz-linkcard-settings.php:456
|
591 |
msgid "64px"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: ../lib/pz-linkcard-settings.php:225 ../lib/pz-linkcard-settings.php:258
|
595 |
msgid "Margin left"
|
596 |
msgstr "左の余白"
|
597 |
|
598 |
+
#: ../lib/pz-linkcard-settings.php:248 ../lib/pz-linkcard-settings.php:264
|
599 |
+
#: ../lib/pz-linkcard-settings.php:278 ../lib/pz-linkcard-settings.php:300
|
600 |
msgid "24px"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../lib/pz-linkcard-settings.php:272 ../lib/pz-linkcard-settings.php:312
|
604 |
msgid "Margin right"
|
605 |
msgstr "右の余白"
|
606 |
|
607 |
+
#: ../lib/pz-linkcard-settings.php:288 ../lib/pz-linkcard-settings.php:418
|
608 |
+
#: ../lib/pz-linkcard-settings.php:510
|
609 |
msgid "Width"
|
610 |
msgstr "幅"
|
611 |
|
612 |
+
#: ../lib/pz-linkcard-settings.php:289 ../lib/pz-linkcard-settings.php:420
|
613 |
+
#: ../lib/pz-linkcard-settings.php:578 ../lib/pz-linkcard-settings.php:607
|
614 |
+
#: ../lib/pz-linkcard-settings.php:633 ../lib/pz-linkcard-settings.php:662
|
615 |
+
#: ../lib/pz-linkcard-settings.php:690 ../lib/pz-linkcard-settings.php:719
|
616 |
msgid "Height"
|
617 |
msgstr "高さ"
|
618 |
|
619 |
+
#: ../lib/pz-linkcard-settings.php:294 ../lib/pz-linkcard-settings.php:330
|
620 |
msgid "Margin bottom"
|
621 |
msgstr "下の余白"
|
622 |
|
623 |
+
#: ../lib/pz-linkcard-settings.php:327
|
624 |
msgid "Centering"
|
625 |
msgstr "中央に寄せる"
|
626 |
|
627 |
+
#: ../lib/pz-linkcard-settings.php:351
|
628 |
msgid "Display settings"
|
629 |
msgstr "表示の設定"
|
630 |
|
631 |
+
#: ../lib/pz-linkcard-settings.php:354
|
632 |
msgid "Layout"
|
633 |
msgstr "外観設定"
|
634 |
|
635 |
+
#: ../lib/pz-linkcard-settings.php:360 ../lib/pz-linkcard-settings.php:557
|
636 |
msgid "Site information"
|
637 |
msgstr "サイト情報"
|
638 |
|
639 |
+
#: ../lib/pz-linkcard-settings.php:363
|
640 |
msgid "Top"
|
641 |
msgstr "上側"
|
642 |
|
643 |
+
#: ../lib/pz-linkcard-settings.php:364
|
644 |
msgid "Above the title"
|
645 |
msgstr "タイトルの上側"
|
646 |
|
647 |
+
#: ../lib/pz-linkcard-settings.php:365
|
648 |
msgid "Bottom"
|
649 |
msgstr "下側"
|
650 |
|
651 |
+
#: ../lib/pz-linkcard-settings.php:367
|
652 |
msgid "Use SiteName"
|
653 |
msgstr "サイト名称を使用"
|
654 |
|
655 |
+
#: ../lib/pz-linkcard-settings.php:372
|
656 |
+
msgid "For internal links, display the posting date"
|
657 |
+
msgstr "内部リンクの場合に投稿日を表示する"
|
658 |
+
|
659 |
+
#: ../lib/pz-linkcard-settings.php:379
|
660 |
msgid "Make additional information heading display"
|
661 |
msgstr "付加情報を見出し表示にする"
|
662 |
|
663 |
+
#: ../lib/pz-linkcard-settings.php:386
|
664 |
msgid "Turn off the anchor text underlining"
|
665 |
msgstr "リンク文字のアンダーラインを除去する"
|
666 |
|
667 |
+
#: ../lib/pz-linkcard-settings.php:393
|
668 |
msgid "Separator line"
|
669 |
msgstr "区切り線"
|
670 |
|
671 |
+
#: ../lib/pz-linkcard-settings.php:401
|
672 |
msgid "Display URL"
|
673 |
msgstr "リンク先URLの表示"
|
674 |
|
675 |
+
#: ../lib/pz-linkcard-settings.php:404
|
676 |
msgid "Under title"
|
677 |
msgstr "タイトルの下"
|
678 |
|
679 |
+
#: ../lib/pz-linkcard-settings.php:405 ../lib/pz-linkcard-settings.php:542
|
680 |
msgid "Bihind site-info"
|
681 |
msgstr "サイト情報の後ろ"
|
682 |
|
683 |
+
#: ../lib/pz-linkcard-settings.php:410 ../lib/pz-linkcard-settings.php:747
|
684 |
+
#: ../lib/pz-linkcard-settings.php:815 ../lib/pz-linkcard-settings.php:883
|
685 |
msgid "Thumbnail"
|
686 |
msgstr "サムネイル"
|
687 |
|
688 |
+
#: ../lib/pz-linkcard-settings.php:413
|
689 |
msgid "Right"
|
690 |
msgstr "右側"
|
691 |
|
692 |
+
#: ../lib/pz-linkcard-settings.php:414
|
693 |
msgid "Left"
|
694 |
msgstr "左側"
|
695 |
|
696 |
+
#: ../lib/pz-linkcard-settings.php:415
|
697 |
msgid "Upper"
|
698 |
msgstr "上側"
|
699 |
|
700 |
+
#: ../lib/pz-linkcard-settings.php:422 ../lib/pz-linkcard-settings.php:444
|
701 |
msgid "Shadow"
|
702 |
msgstr "影を付ける"
|
703 |
|
704 |
+
#: ../lib/pz-linkcard-settings.php:427
|
705 |
msgid "Hollow content area"
|
706 |
msgstr "記事の情報に枠を付ける"
|
707 |
|
708 |
+
#: ../lib/pz-linkcard-settings.php:432
|
709 |
msgid "Display excerpt"
|
710 |
msgstr "抜粋文を表示する"
|
711 |
|
712 |
+
#: ../lib/pz-linkcard-settings.php:437
|
713 |
msgid "Hollow"
|
714 |
msgstr "内側に影を付ける"
|
715 |
|
716 |
+
#: ../lib/pz-linkcard-settings.php:449
|
717 |
msgid "Round a square"
|
718 |
msgstr "角を丸める"
|
719 |
|
720 |
+
#: ../lib/pz-linkcard-settings.php:463
|
721 |
msgid "Thinning at mouseover"
|
722 |
msgstr "マウスでポイントしたときに表示を薄くする"
|
723 |
|
724 |
+
#: ../lib/pz-linkcard-settings.php:491
|
725 |
msgid "Border"
|
726 |
msgstr "枠線の太さ"
|
727 |
|
728 |
+
#: ../lib/pz-linkcard-settings.php:493 ../lib/pz-linkcard-settings.php:562
|
729 |
+
#: ../lib/pz-linkcard-settings.php:591 ../lib/pz-linkcard-settings.php:617
|
730 |
+
#: ../lib/pz-linkcard-settings.php:646 ../lib/pz-linkcard-settings.php:674
|
731 |
+
#: ../lib/pz-linkcard-settings.php:703
|
732 |
msgid "Color"
|
733 |
msgstr "色"
|
734 |
|
735 |
+
#: ../lib/pz-linkcard-settings.php:498
|
736 |
msgid "none"
|
737 |
msgstr "なし"
|
738 |
|
739 |
+
#: ../lib/pz-linkcard-settings.php:499
|
740 |
msgid "solid"
|
741 |
msgstr "solid/実線"
|
742 |
|
743 |
+
#: ../lib/pz-linkcard-settings.php:500
|
744 |
msgid "dotted"
|
745 |
msgstr "dotted/点線"
|
746 |
|
747 |
+
#: ../lib/pz-linkcard-settings.php:501
|
748 |
msgid "dashed"
|
749 |
msgstr "dashed/破線"
|
750 |
|
751 |
+
#: ../lib/pz-linkcard-settings.php:502
|
752 |
msgid "double"
|
753 |
msgstr "double/二重線"
|
754 |
|
755 |
+
#: ../lib/pz-linkcard-settings.php:503
|
756 |
msgid "groove"
|
757 |
msgstr "groove/立体(へこみ)"
|
758 |
|
759 |
+
#: ../lib/pz-linkcard-settings.php:504
|
760 |
msgid "ridge"
|
761 |
msgstr "ridge/立体(隆起)"
|
762 |
|
763 |
+
#: ../lib/pz-linkcard-settings.php:505
|
764 |
msgid "inset"
|
765 |
msgstr "inset/立体(押したボタンのような効果)"
|
766 |
|
767 |
+
#: ../lib/pz-linkcard-settings.php:506
|
768 |
msgid "outset"
|
769 |
msgstr "outset/立体(ボタンのような効果)"
|
770 |
|
771 |
+
#: ../lib/pz-linkcard-settings.php:518
|
772 |
msgid "Reset img style"
|
773 |
msgstr "CSSリセット(img)"
|
774 |
|
775 |
+
#: ../lib/pz-linkcard-settings.php:519
|
776 |
msgid ""
|
777 |
"When unnecessary frame is displayed on the image, you can improve it by case"
|
778 |
msgstr "画像がずれて表示されるときに改善される可能性が有ります(推奨)"
|
779 |
|
780 |
+
#: ../lib/pz-linkcard-settings.php:523 ../lib/pz-linkcard-settings.php:698
|
781 |
msgid "More button"
|
782 |
msgstr "続きを読むボタン"
|
783 |
|
784 |
+
#: ../lib/pz-linkcard-settings.php:527
|
785 |
msgid "Text link"
|
786 |
msgstr "テキストリンク"
|
787 |
|
788 |
+
#: ../lib/pz-linkcard-settings.php:528
|
789 |
msgid "Simple button"
|
790 |
msgstr "シンプルなボタン"
|
791 |
|
792 |
+
#: ../lib/pz-linkcard-settings.php:529
|
793 |
msgid "Blue"
|
794 |
msgstr "ブルー"
|
795 |
|
796 |
+
#: ../lib/pz-linkcard-settings.php:530
|
797 |
msgid "Dark"
|
798 |
msgstr "ダーク"
|
799 |
|
800 |
+
#: ../lib/pz-linkcard-settings.php:532
|
801 |
msgid "*"
|
802 |
msgstr "※"
|
803 |
|
804 |
+
#: ../lib/pz-linkcard-settings.php:532
|
805 |
msgid ""
|
806 |
"It is recommended that you leave the card height blank when using this "
|
807 |
"setting."
|
808 |
msgstr "この設定を使用するときはカードの高さを空欄にすることをお勧めします。"
|
809 |
|
810 |
+
#: ../lib/pz-linkcard-settings.php:537
|
811 |
msgid "Display SNS Count"
|
812 |
msgstr "シェア数を表示する"
|
813 |
|
814 |
+
#: ../lib/pz-linkcard-settings.php:541
|
815 |
msgid "Bihind title"
|
816 |
msgstr "タイトルの後ろ"
|
817 |
|
818 |
+
#: ../lib/pz-linkcard-settings.php:544
|
819 |
msgid "Twitter"
|
820 |
msgstr "ツイッター"
|
821 |
|
822 |
+
#: ../lib/pz-linkcard-settings.php:545
|
823 |
msgid "Facebook"
|
824 |
msgstr "フェイスブック(シェア数)"
|
825 |
|
826 |
+
#: ../lib/pz-linkcard-settings.php:546
|
827 |
msgid "Hatena"
|
828 |
msgstr "はてなブックマーク"
|
829 |
|
830 |
+
#: ../lib/pz-linkcard-settings.php:547
|
831 |
msgid "Pocket"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../lib/pz-linkcard-settings.php:553
|
835 |
msgid "Letter settings"
|
836 |
msgstr "文字の設定"
|
837 |
|
838 |
+
#: ../lib/pz-linkcard-settings.php:565 ../lib/pz-linkcard-settings.php:594
|
839 |
+
#: ../lib/pz-linkcard-settings.php:620 ../lib/pz-linkcard-settings.php:649
|
840 |
+
#: ../lib/pz-linkcard-settings.php:677 ../lib/pz-linkcard-settings.php:706
|
841 |
msgid "Outline"
|
842 |
msgstr "縁取り"
|
843 |
|
844 |
+
#: ../lib/pz-linkcard-settings.php:575 ../lib/pz-linkcard-settings.php:604
|
845 |
+
#: ../lib/pz-linkcard-settings.php:630 ../lib/pz-linkcard-settings.php:659
|
846 |
+
#: ../lib/pz-linkcard-settings.php:687 ../lib/pz-linkcard-settings.php:716
|
847 |
msgid "Size"
|
848 |
msgstr "大きさ"
|
849 |
|
850 |
+
#: ../lib/pz-linkcard-settings.php:581 ../lib/pz-linkcard-settings.php:636
|
851 |
+
#: ../lib/pz-linkcard-settings.php:693 ../lib/pz-linkcard-settings.php:722
|
852 |
msgid "Length"
|
853 |
msgstr "桁数"
|
854 |
|
855 |
+
#: ../lib/pz-linkcard-settings.php:586 ../lib/pz-linkcard-settings.php:770
|
856 |
+
#: ../lib/pz-linkcard-settings.php:837 ../lib/pz-linkcard-settings.php:891
|
857 |
msgid "Added information"
|
858 |
msgstr "付加情報"
|
859 |
|
860 |
+
#: ../lib/pz-linkcard-settings.php:727
|
861 |
msgid "Resize"
|
862 |
msgstr "幅に合わせて縮小"
|
863 |
|
864 |
+
#: ../lib/pz-linkcard-settings.php:728
|
865 |
msgid "Adjust thumbnail and letter size according to width"
|
866 |
msgstr "画面幅に合わせて文字とサムネイルの大きさを調整します。"
|
867 |
|
868 |
+
#: ../lib/pz-linkcard-settings.php:735
|
869 |
msgid "External link settings"
|
870 |
msgstr "外部リンクの設定"
|
871 |
|
872 |
+
#: ../lib/pz-linkcard-settings.php:739 ../lib/pz-linkcard-settings.php:807
|
873 |
+
#: ../lib/pz-linkcard-settings.php:875
|
874 |
msgid "Background Color"
|
875 |
msgstr "背景色"
|
876 |
|
877 |
+
#: ../lib/pz-linkcard-settings.php:743
|
878 |
msgid "Background image"
|
879 |
msgstr "背景画像"
|
880 |
|
881 |
+
#: ../lib/pz-linkcard-settings.php:751 ../lib/pz-linkcard-settings.php:763
|
882 |
+
#: ../lib/pz-linkcard-settings.php:819 ../lib/pz-linkcard-settings.php:830
|
883 |
msgid "Direct"
|
884 |
msgstr "直接取得する"
|
885 |
|
886 |
+
#: ../lib/pz-linkcard-settings.php:752 ../lib/pz-linkcard-settings.php:764
|
887 |
+
#: ../lib/pz-linkcard-settings.php:820 ../lib/pz-linkcard-settings.php:831
|
888 |
msgid "Use WebAPI"
|
889 |
msgstr "WebAPIを利用する"
|
890 |
|
891 |
+
#: ../lib/pz-linkcard-settings.php:753 ../lib/pz-linkcard-settings.php:765
|
892 |
+
#: ../lib/pz-linkcard-settings.php:821 ../lib/pz-linkcard-settings.php:832
|
893 |
msgid "Use WebAPI ,If can not direct"
|
894 |
msgstr "直接取得できない場合、WebAPIを利用する"
|
895 |
|
896 |
+
#: ../lib/pz-linkcard-settings.php:759 ../lib/pz-linkcard-settings.php:826
|
897 |
+
#: ../lib/pz-linkcard-settings.php:887
|
898 |
msgid "Favicon"
|
899 |
msgstr "サイトアイコン"
|
900 |
|
901 |
+
#: ../lib/pz-linkcard-settings.php:774 ../lib/pz-linkcard-settings.php:841
|
902 |
msgid "Text of more button"
|
903 |
msgstr "続きを読むボタンの文字"
|
904 |
|
905 |
+
#: ../lib/pz-linkcard-settings.php:778 ../lib/pz-linkcard-settings.php:845
|
906 |
+
#: ../lib/pz-linkcard-settings.php:895
|
907 |
msgid "Open new window/tab"
|
908 |
msgstr "新しいウィンドウで開く"
|
909 |
|
910 |
+
#: ../lib/pz-linkcard-settings.php:782 ../lib/pz-linkcard-settings.php:849
|
911 |
msgid "All client"
|
912 |
msgstr "すべての端末"
|
913 |
|
914 |
+
#: ../lib/pz-linkcard-settings.php:783 ../lib/pz-linkcard-settings.php:850
|
915 |
msgid "Other than mobile"
|
916 |
msgstr "モバイル端末以外"
|
917 |
|
918 |
+
#: ../lib/pz-linkcard-settings.php:788 ../lib/pz-linkcard-settings.php:855
|
919 |
msgid "Get contents"
|
920 |
msgstr "記事取得方法"
|
921 |
|
922 |
+
#: ../lib/pz-linkcard-settings.php:790 ../lib/pz-linkcard-settings.php:861
|
923 |
msgid "Initially acquired only from the content"
|
924 |
msgstr "カード管理画面に記録されている内容から表示する"
|
925 |
|
926 |
+
#: ../lib/pz-linkcard-settings.php:794
|
927 |
msgid "Set nofollow"
|
928 |
msgstr "nofollowを付与する"
|
929 |
|
930 |
+
#: ../lib/pz-linkcard-settings.php:795
|
931 |
msgid "In the case of an external site, it puts the \"nofollow\""
|
932 |
msgstr "外部リンクのリンクを nofollow にする"
|
933 |
|
934 |
+
#: ../lib/pz-linkcard-settings.php:798
|
935 |
msgid "Use HatenaBlogCard"
|
936 |
msgstr "はてなブログカードを利用する"
|
937 |
|
938 |
+
#: ../lib/pz-linkcard-settings.php:799
|
939 |
msgid "External links will use Always HatenaBlogCard."
|
940 |
msgstr "外部リンクは「はてなブログカード」を利用する"
|
941 |
|
942 |
+
#: ../lib/pz-linkcard-settings.php:799 ../lib/pz-linkcard-settings.php:1120
|
943 |
msgid "(Not recommended)"
|
944 |
msgstr "(非推奨)"
|
945 |
|
946 |
+
#: ../lib/pz-linkcard-settings.php:804
|
947 |
msgid "Internal link settings"
|
948 |
msgstr "内部リンクの設定"
|
949 |
|
950 |
+
#: ../lib/pz-linkcard-settings.php:811 ../lib/pz-linkcard-settings.php:879
|
951 |
msgid "Background Image"
|
952 |
msgstr "背景画像"
|
953 |
|
954 |
+
#: ../lib/pz-linkcard-settings.php:859
|
955 |
msgid "Always get the latest from the content"
|
956 |
msgstr "常に最新の記事内容から抜粋文を作成する"
|
957 |
|
958 |
+
#: ../lib/pz-linkcard-settings.php:860
|
959 |
msgid "Always get the latest from the excerpt"
|
960 |
msgstr "抜粋文が設定されている投稿はそちらを優先する"
|
961 |
|
962 |
+
#: ../lib/pz-linkcard-settings.php:866
|
963 |
msgid "Retry get PID"
|
964 |
msgstr "記事URLの再取得"
|
965 |
|
966 |
+
#: ../lib/pz-linkcard-settings.php:867
|
967 |
msgid "When the `Post ID` can not be acquired, it is acquired again."
|
968 |
msgstr "記事IDが取得できなかった場合に、リダイレクト先のURLを取得する。"
|
969 |
|
970 |
+
#: ../lib/pz-linkcard-settings.php:872
|
971 |
msgid "Same-page link settings"
|
972 |
msgstr "同ページへのリンクの設定"
|
973 |
|
974 |
+
#: ../lib/pz-linkcard-settings.php:884 ../lib/pz-linkcard-settings.php:888
|
975 |
+
#: ../lib/pz-linkcard-settings.php:896
|
976 |
msgid "It is common with setting Internal-link"
|
977 |
msgstr "内部リンク用の設定が使用されます"
|
978 |
|
979 |
+
#: ../lib/pz-linkcard-settings.php:901
|
980 |
msgid "Web-API settings"
|
981 |
msgstr "画像取得APIの設定"
|
982 |
|
983 |
+
#: ../lib/pz-linkcard-settings.php:904
|
984 |
msgid "Favicon API"
|
985 |
msgstr "ファビコンの取得API"
|
986 |
|
987 |
+
#: ../lib/pz-linkcard-settings.php:907
|
988 |
msgid ""
|
989 |
"%DOMAIN% replace to domain name (ex. poporon.poponet.jp )<br>%DOMAIN_URL% "
|
990 |
"replace to domain URL (ex. http://poporon.poponet.jp )"
|
993 |
"%DOMAIN_URL% と記述するとドメインのURL(例.http://poporon.poponet.jp)に置き"
|
994 |
"換わります。"
|
995 |
|
996 |
+
#: ../lib/pz-linkcard-settings.php:908 ../lib/pz-linkcard-settings.php:917
|
997 |
msgid "%URL% replace to URL."
|
998 |
msgstr "%URL% と記述すると記事のURLに置き換わります。"
|
999 |
|
1000 |
+
#: ../lib/pz-linkcard-settings.php:909 ../lib/pz-linkcard-settings.php:918
|
1001 |
msgid "ex1."
|
1002 |
msgstr "例1."
|
1003 |
|
1004 |
+
#: ../lib/pz-linkcard-settings.php:910 ../lib/pz-linkcard-settings.php:919
|
1005 |
msgid "ex2."
|
1006 |
msgstr "例2."
|
1007 |
|
1008 |
+
#: ../lib/pz-linkcard-settings.php:914
|
1009 |
msgid "Thumbnail API"
|
1010 |
msgstr "サムネイル画像の取得API"
|
1011 |
|
1012 |
+
#: ../lib/pz-linkcard-settings.php:925
|
1013 |
msgid "Check link settings"
|
1014 |
msgstr "リンク先チェックの設定"
|
1015 |
|
1016 |
+
#: ../lib/pz-linkcard-settings.php:928
|
1017 |
msgid "Do not link at error"
|
1018 |
msgstr "エラーのときリンクしない"
|
1019 |
|
1020 |
+
#: ../lib/pz-linkcard-settings.php:929
|
1021 |
msgid "When access status is \"403\", \"404\", \"410\", unlink"
|
1022 |
msgstr "ステータスが「403」「404」「410」のときにリンクを無効にします"
|
1023 |
|
1024 |
+
#: ../lib/pz-linkcard-settings.php:932
|
1025 |
msgid "SSL verification disabled"
|
1026 |
msgstr "SSL検証を無効"
|
1027 |
|
1028 |
+
#: ../lib/pz-linkcard-settings.php:933
|
1029 |
msgid "Try setting if the contents of the SSL site can not be acquired."
|
1030 |
msgstr ""
|
1031 |
"SSLサイトのタイトルや記事内容が取得できない場合に設定することで取得できる可能"
|
1032 |
"性があります。"
|
1033 |
|
1034 |
+
#: ../lib/pz-linkcard-settings.php:936
|
1035 |
msgid "Follow location"
|
1036 |
msgstr "リダイレクト処理"
|
1037 |
|
1038 |
+
#: ../lib/pz-linkcard-settings.php:937
|
1039 |
msgid "Track when the link destination is redirected."
|
1040 |
msgstr "リンク先がリダイレクトされている場合に追跡します。"
|
1041 |
|
1042 |
+
#: ../lib/pz-linkcard-settings.php:940
|
1043 |
msgid "Set referer"
|
1044 |
msgstr "リファラーの通知"
|
1045 |
|
1046 |
+
#: ../lib/pz-linkcard-settings.php:941
|
1047 |
msgid "Notify the article URL to the link destination."
|
1048 |
msgstr "リンク先に記事のURLを知らせます。"
|
1049 |
|
1050 |
+
#: ../lib/pz-linkcard-settings.php:944
|
1051 |
msgid "Use User-Agent"
|
1052 |
msgstr "ユーザーエージェントの通知"
|
1053 |
|
1054 |
+
#: ../lib/pz-linkcard-settings.php:946
|
1055 |
msgid "Notify using Pz-LinkCard to the link destination."
|
1056 |
msgstr "リンク先にPz-LinkCardを使用していることを知らせます。"
|
1057 |
|
1058 |
+
#: ../lib/pz-linkcard-settings.php:951
|
1059 |
msgid "Broken link checker"
|
1060 |
msgstr "リンク切れチェック"
|
1061 |
|
1062 |
+
#: ../lib/pz-linkcard-settings.php:952
|
1063 |
msgid "Alive confirmation of the link destination."
|
1064 |
msgstr "リンク先がアクセスできるか定期的に確認します。"
|
1065 |
|
1066 |
+
#: ../lib/pz-linkcard-settings.php:955
|
1067 |
msgid "Broken link count"
|
1068 |
msgstr "リンク切れカウント"
|
1069 |
|
1070 |
+
#: ../lib/pz-linkcard-settings.php:956
|
1071 |
msgid "The number of broken links is displayed next to the submenu."
|
1072 |
msgstr "サブメニューの横にリンク切れの件数を表示します。"
|
1073 |
|
1074 |
+
#: ../lib/pz-linkcard-settings.php:959
|
1075 |
msgid "Multi-site compatible"
|
1076 |
msgstr "サブディレクトリを外部リンクにする"
|
1077 |
|
1078 |
+
#: ../lib/pz-linkcard-settings.php:960
|
1079 |
msgid ""
|
1080 |
"In the case of the multi-site of the subdirectory type, the site under the "
|
1081 |
"subdirectory is judged as an external site."
|
1083 |
"サブディレクトリ型のマルチサイトの場合で、メインサイトからサブサイトを外部サ"
|
1084 |
"イトとして判定する。"
|
1085 |
|
1086 |
+
#: ../lib/pz-linkcard-settings.php:965
|
1087 |
msgid "Editor settings"
|
1088 |
msgstr "エディターの設定"
|
1089 |
|
1090 |
+
#: ../lib/pz-linkcard-settings.php:968
|
1091 |
msgid "ShortCode 1"
|
1092 |
msgstr "ショートコード 1"
|
1093 |
|
1094 |
+
#: ../lib/pz-linkcard-settings.php:970 ../lib/pz-linkcard-settings.php:988
|
1095 |
+
#: ../lib/pz-linkcard-settings.php:993 ../lib/pz-linkcard-settings.php:998
|
1096 |
msgid "Case-sensitive"
|
1097 |
msgstr "大文字と小文字を区別します"
|
1098 |
|
1099 |
+
#: ../lib/pz-linkcard-settings.php:973
|
1100 |
msgid "Use inlinetext"
|
1101 |
msgstr "ショートコードで囲んだ文字列"
|
1102 |
|
1103 |
+
#: ../lib/pz-linkcard-settings.php:977
|
1104 |
msgid "No use"
|
1105 |
msgstr "使用しない"
|
1106 |
|
1107 |
+
#: ../lib/pz-linkcard-settings.php:978
|
1108 |
msgid "Use to excerpt"
|
1109 |
msgstr "抜粋文として使用"
|
1110 |
|
1111 |
+
#: ../lib/pz-linkcard-settings.php:979
|
1112 |
msgid "Use to title"
|
1113 |
msgstr "タイトルとして使用"
|
1114 |
|
1115 |
+
#: ../lib/pz-linkcard-settings.php:982
|
1116 |
msgid "This setting applies only to the Shortcode1"
|
1117 |
msgstr "ショートコード1にのみ適用されます"
|
1118 |
|
1119 |
+
#: ../lib/pz-linkcard-settings.php:986
|
1120 |
msgid "ShortCode 2"
|
1121 |
msgstr "ショートコード 2"
|
1122 |
|
1123 |
+
#: ../lib/pz-linkcard-settings.php:991
|
1124 |
msgid "ShortCode 3"
|
1125 |
msgstr "ショートコード 3"
|
1126 |
|
1127 |
+
#: ../lib/pz-linkcard-settings.php:996
|
1128 |
msgid "ShortCode 4"
|
1129 |
msgstr "ショートコード 4"
|
1130 |
|
1131 |
+
#: ../lib/pz-linkcard-settings.php:1001
|
1132 |
msgid "Parameters"
|
1133 |
msgstr "パラメータ"
|
1134 |
|
1135 |
+
#: ../lib/pz-linkcard-settings.php:1004
|
1136 |
msgid ""
|
1137 |
"For any shortcode you can change the title and excerpt with `title` "
|
1138 |
"parameter and `content` parameter"
|
1140 |
"どのショートコードでも title パラメータと content パラメータでタイトルと抜粋"
|
1141 |
"文を指定できます。"
|
1142 |
|
1143 |
+
#: ../lib/pz-linkcard-settings.php:1009
|
1144 |
msgid "Convert text link"
|
1145 |
msgstr "テキストリンク行の変換"
|
1146 |
|
1147 |
+
#: ../lib/pz-linkcard-settings.php:1010
|
1148 |
msgid "Convert lines with text link only to Linkcard."
|
1149 |
msgstr "テキストリンクだけの行をリンクカードに変換する。"
|
1150 |
|
1151 |
+
#: ../lib/pz-linkcard-settings.php:1013
|
1152 |
msgid "Convert URL"
|
1153 |
msgstr "URL行の変換"
|
1154 |
|
1155 |
+
#: ../lib/pz-linkcard-settings.php:1014
|
1156 |
msgid "Convert lines with URL only to Linkcard."
|
1157 |
msgstr "URLだけの行をリンクカードに変換する。"
|
1158 |
|
1159 |
+
#: ../lib/pz-linkcard-settings.php:1017
|
1160 |
msgid "Only external link"
|
1161 |
msgstr "外部リンクのみ変換"
|
1162 |
|
1163 |
+
#: ../lib/pz-linkcard-settings.php:1018
|
1164 |
msgid "Conversion only external link"
|
1165 |
msgstr "外部リンクのときのみ変換します"
|
1166 |
|
1167 |
+
#: ../lib/pz-linkcard-settings.php:1022
|
1168 |
msgid "Add insert button"
|
1169 |
msgstr "リンクカードボタンを追加"
|
1170 |
|
1171 |
+
#: ../lib/pz-linkcard-settings.php:1023
|
1172 |
msgid "Add insert button to visual editor."
|
1173 |
msgstr "ビジュアルエディタにリンクカードを挿入するボタンを追加する。"
|
1174 |
|
1175 |
+
#: ../lib/pz-linkcard-settings.php:1026
|
1176 |
msgid "Add quick tag"
|
1177 |
msgstr "クイックタグを追加"
|
1178 |
|
1179 |
+
#: ../lib/pz-linkcard-settings.php:1027
|
1180 |
msgid "Add quick tag button to text editor."
|
1181 |
msgstr "テキストエディタにリンクカードを挿入するボタンを追加する。"
|
1182 |
|
1183 |
+
#: ../lib/pz-linkcard-settings.php:1033
|
1184 |
msgid "Advanced settings"
|
1185 |
msgstr "詳しい人向けの設定"
|
1186 |
|
1187 |
+
#: ../lib/pz-linkcard-settings.php:1036
|
1188 |
msgid "Trailing slash"
|
1189 |
msgstr "末尾のスラッシュ"
|
1190 |
|
1191 |
+
#: ../lib/pz-linkcard-settings.php:1040
|
1192 |
msgid "As it"
|
1193 |
msgstr "そのまま"
|
1194 |
|
1195 |
+
#: ../lib/pz-linkcard-settings.php:1041
|
1196 |
msgid "When only domain name, remove"
|
1197 |
msgstr "ドメイン名のみのときだけ削除"
|
1198 |
|
1199 |
+
#: ../lib/pz-linkcard-settings.php:1042
|
1200 |
msgid "Always remove"
|
1201 |
msgstr "常に削除"
|
1202 |
|
1203 |
+
#: ../lib/pz-linkcard-settings.php:1048
|
1204 |
msgid "CSS to be added"
|
1205 |
msgstr "追加するスタイルシート"
|
1206 |
|
1207 |
+
#: ../lib/pz-linkcard-settings.php:1052
|
1208 |
msgid "specified CSS"
|
1209 |
msgstr "指定したCSSを使用"
|
1210 |
|
1211 |
+
#: ../lib/pz-linkcard-settings.php:1053
|
1212 |
msgid "Use specified CSS file"
|
1213 |
msgstr "指定したCSSファイルを使用する"
|
1214 |
|
1215 |
+
#: ../lib/pz-linkcard-settings.php:1056 ../lib/pz-linkcard-settings.php:1060
|
1216 |
msgid "CSS file"
|
1217 |
msgstr "CSSファイル名"
|
1218 |
|
1219 |
+
#: ../lib/pz-linkcard-settings.php:1057
|
1220 |
msgid "(ex. https://exsample.com/style.css )"
|
1221 |
msgstr "例.https://exsample.com/style.css"
|
1222 |
|
1223 |
+
#: ../lib/pz-linkcard-settings.php:1064
|
1224 |
msgid "CSS URL"
|
1225 |
msgstr "CSSファイルのURL"
|
1226 |
|
1227 |
+
#: ../lib/pz-linkcard-settings.php:1069
|
1228 |
msgid "Class ID to be added(for PC)"
|
1229 |
msgstr "PCのときに追加するクラス名"
|
1230 |
|
1231 |
+
#: ../lib/pz-linkcard-settings.php:1073
|
1232 |
msgid "Class ID to be added(for Mobile)"
|
1233 |
msgstr "モバイルのときに追加するクラス名"
|
1234 |
|
1235 |
+
#: ../lib/pz-linkcard-settings.php:1078
|
1236 |
msgid "Do shortcode"
|
1237 |
msgstr "ショートコード 実行"
|
1238 |
|
1239 |
+
#: ../lib/pz-linkcard-settings.php:1079
|
1240 |
msgid "Force shortcode development."
|
1241 |
msgstr "リンク・URLから変換したときにショートコードを強制的に実行する。"
|
1242 |
|
1243 |
+
#: ../lib/pz-linkcard-settings.php:1083
|
1244 |
msgid "Google AMP URL"
|
1245 |
msgstr "URLによるAMP判断"
|
1246 |
|
1247 |
+
#: ../lib/pz-linkcard-settings.php:1084
|
1248 |
msgid "If the URL is AMP, display simple."
|
1249 |
msgstr ""
|
1250 |
"アクセスされたURLの末尾が「/amp」「/amp/」「/?amp=1」の場合、簡易表示に切り替"
|
1251 |
"える。"
|
1252 |
|
1253 |
+
#: ../lib/pz-linkcard-settings.php:1088
|
1254 |
msgid "IDNA Convert"
|
1255 |
msgstr "IDNAドメインの表示"
|
1256 |
|
1257 |
+
#: ../lib/pz-linkcard-settings.php:1089
|
1258 |
msgid "Convert domain name from IDNA ASCII to Unicode."
|
1259 |
msgstr ""
|
1260 |
"IDNAのASCII方式でエンコードされたドメイン名をUnicodeに変換して表示します(日"
|
1261 |
"本語ドメインなど)"
|
1262 |
|
1263 |
+
#: ../lib/pz-linkcard-settings.php:1093
|
1264 |
msgid "Relative URL"
|
1265 |
msgstr "相対指定URL"
|
1266 |
|
1267 |
+
#: ../lib/pz-linkcard-settings.php:1094
|
1268 |
msgid "For relative-specified URLs, complement the site URL."
|
1269 |
msgstr "相対指定のURLの場合、サイトURLを補完します。"
|
1270 |
|
1271 |
+
#: ../lib/pz-linkcard-settings.php:1098
|
1272 |
msgid "Display link to author page"
|
1273 |
msgstr "プラグイン名を表示する"
|
1274 |
|
1275 |
+
#: ../lib/pz-linkcard-settings.php:1102
|
1276 |
msgid "Plugin URL"
|
1277 |
msgstr "プラグインページURL"
|
1278 |
|
1279 |
+
#: ../lib/pz-linkcard-settings.php:1106
|
1280 |
msgid "Plugin name"
|
1281 |
msgstr "プラグイン名"
|
1282 |
|
1283 |
+
#: ../lib/pz-linkcard-settings.php:1110
|
1284 |
msgid "Plugin version"
|
1285 |
msgstr "プラグインバージョン"
|
1286 |
|
1287 |
+
#: ../lib/pz-linkcard-settings.php:1114
|
1288 |
msgid "Saved datetime"
|
1289 |
msgstr "保存した日時"
|
1290 |
|
1291 |
+
#: ../lib/pz-linkcard-settings.php:1119
|
1292 |
msgid "Display elapsed time"
|
1293 |
msgstr "実行時間の表示"
|
1294 |
|
1295 |
+
#: ../lib/pz-linkcard-settings.php:1120
|
1296 |
msgid "Output the elapsed time to HTML comment."
|
1297 |
msgstr "作成にかかった時間をコメントとしてHTMLへ出力する"
|
1298 |
|
1299 |
+
#: ../lib/pz-linkcard-settings.php:1126
|
1300 |
msgid "Initialize"
|
1301 |
msgstr "初期化"
|
1302 |
|
1303 |
+
#: ../lib/pz-linkcard-settings.php:1129
|
1304 |
msgid "Return to the initial setting"
|
1305 |
msgstr "設定を初期状態へ戻す"
|
1306 |
|
1307 |
+
#: ../lib/pz-linkcard-settings.php:1135
|
1308 |
msgid "etc"
|
1309 |
msgstr "その他"
|
1310 |
|
1311 |
+
#: ../lib/pz-linkcard-settings.php:1138
|
1312 |
msgid "Author's site"
|
1313 |
msgstr "作者のサイト"
|
1314 |
|
1315 |
+
#: ../lib/pz-linkcard-settings.php:1139
|
1316 |
msgid "Popozure."
|
1317 |
msgstr "ぽぽづれ。"
|
1318 |
|
1319 |
+
#: ../lib/pz-linkcard-settings.php:1139
|
1320 |
msgid "Poporon's PC daily diary"
|
1321 |
msgstr "ぽぽろんのパソコンつれづれ(ズレズレ?)日記"
|
1322 |
|
1323 |
+
#: ../lib/pz-linkcard-settings.php:1142
|
1324 |
msgid "When in trouble"
|
1325 |
msgstr "困ったときは"
|
1326 |
|
1327 |
+
#: ../lib/pz-linkcard-settings.php:1143
|
1328 |
msgid "Twitter account"
|
1329 |
msgstr "ツイッター アカウント"
|
1330 |
|
1331 |
+
#: ../lib/pz-linkcard-settings.php:1146
|
1332 |
msgid "Donation"
|
1333 |
msgstr "寄付"
|
1334 |
|
1335 |
+
#: ../lib/pz-linkcard-style.php:569
|
1336 |
msgid "Style sheet saved."
|
1337 |
msgstr "設定を元にスタイルシートを自動生成しました。"
|
1338 |
|
1339 |
+
#: ../lib/pz-linkcard-style.php:571
|
1340 |
msgid "Style sheet failed."
|
1341 |
msgstr "スタイルシートの自動生成に失敗しました。"
|
1342 |
|
1343 |
+
#~ msgid "Insert Pz-LinkCard"
|
1344 |
+
#~ msgstr "リンクカード作成"
|
1345 |
+
|
1346 |
+
#~ msgid "Editor button JS saved."
|
1347 |
+
#~ msgstr "ビジュアルエディタに挿入ボタンを追加しました。"
|
1348 |
+
|
1349 |
+
#~ msgid "Editor button JS failed."
|
1350 |
+
#~ msgstr "ビジュアルエディタのボタンの生成に失敗しました。"
|
1351 |
+
|
1352 |
#~ msgid "Radius"
|
1353 |
#~ msgstr "角を丸める"
|
1354 |
|
lib/pz-linkcard-js.php
DELETED
@@ -1,44 +0,0 @@
|
|
1 |
-
<?php if (!function_exists("get_option")) die; ?>
|
2 |
-
<?php
|
3 |
-
if (!$this->options['flg-edit-insert']) {
|
4 |
-
return;
|
5 |
-
}
|
6 |
-
|
7 |
-
$temp_file = $this->plugin_dir_path.'templete/mce-pz-lkc-templete.js';
|
8 |
-
|
9 |
-
$js_dir = $this->upload_dir_path.'js/';
|
10 |
-
if (!is_dir($js_dir) && !wp_mkdir_p($js_dir)) {
|
11 |
-
$js_dir = $this->plugin_dir_path.'js/';
|
12 |
-
if (!is_dir($js_dir) && !wp_mkdir_p($js_dir)) {
|
13 |
-
$js_dir = null;
|
14 |
-
$result = false;
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
if ($js_dir) {
|
19 |
-
$js_file = $js_dir.'mce-pz-lkc.js';
|
20 |
-
|
21 |
-
copy($this->plugin_dir_path.'img/button.png' , $js_dir.'button.png' );
|
22 |
-
|
23 |
-
$file_text = file_get_contents($temp_file);
|
24 |
-
if ($file_text) {
|
25 |
-
$file_text = str_replace('/*TITLE*/', __('Insert Pz-LinkCard', $this->text_domain), $file_text );
|
26 |
-
$file_text = str_replace('/*PROMPT*/', __('Input URL', $this->text_domain), $file_text );
|
27 |
-
$file_text = str_replace('/*CODE*/', $this->options['code1'], $file_text );
|
28 |
-
|
29 |
-
$result = file_put_contents($js_file, $file_text );
|
30 |
-
}
|
31 |
-
}
|
32 |
-
|
33 |
-
global $pagenow;
|
34 |
-
if (isset($pagenow) && $pagenow == 'options-general.php') {
|
35 |
-
if ($result == true) {
|
36 |
-
echo '<div class="updated fade"><p><strong>'.__('Editor button JS saved.', $this->text_domain).'</strong></p></div>';
|
37 |
-
} else {
|
38 |
-
echo '<div class="error fade"><p><strong>'.__('Editor button JS failed.', $this->text_domain).'</strong></p></div>';
|
39 |
-
}
|
40 |
-
}
|
41 |
-
unset($temp_file);
|
42 |
-
unset($js_file);
|
43 |
-
unset($file_text);
|
44 |
-
unset($result);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lib/pz-linkcard-modal.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if (!function_exists("get_option")) die;
|
2 |
+
echo '<div id="pz-lkc-modal">'.PHP_EOL;
|
3 |
+
echo ' <div id="pz-lkc-close"><a>×</a></div>'.PHP_EOL;
|
4 |
+
echo ' <div id="pz-lkc-content">'.PHP_EOL;
|
5 |
+
echo ' <form action="" method="post">'.PHP_EOL;
|
6 |
+
echo ' <label>'.__('Input URL', $this->text_domain).'</label><br />'.PHP_EOL;
|
7 |
+
echo ' <input id="pz-lkc-code" type="hidden" value="'.$this->options['code1'].'">'.PHP_EOL;
|
8 |
+
echo ' <input id="pz-lkc-url" type="text" size="60">'.PHP_EOL;
|
9 |
+
echo ' <input id="pz-lkc-insert" type="submit" value="'.__('Insert', $this->text_domain).'" onClick="return false;" >'.PHP_EOL;
|
10 |
+
echo ' </form>'.PHP_EOL;
|
11 |
+
echo ' </div>'.PHP_EOL;
|
12 |
+
echo '</div>'.PHP_EOL;
|
13 |
+
echo '<div id="pz-lkc-overlay"></div>'.PHP_EOL;
|
lib/pz-linkcard-settings.php
CHANGED
@@ -116,7 +116,6 @@
|
|
116 |
echo '<div class="error fade"><p><strong>'.__('Not changed.', $this->text_domain).'</strong></p></div>';
|
117 |
}
|
118 |
$this->pz_SetStyle();
|
119 |
-
$this->pz_SetJS();
|
120 |
}
|
121 |
}
|
122 |
?>
|
@@ -215,6 +214,7 @@
|
|
215 |
<option value="8px" <?php if($this->options['margin-top'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
216 |
<option value="16px" <?php if($this->options['margin-top'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
217 |
<option value="32px" <?php if($this->options['margin-top'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
218 |
<option value="64px" <?php if($this->options['margin-top'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
219 |
</select>
|
220 |
</td>
|
@@ -230,6 +230,7 @@
|
|
230 |
<option value="8px" <?php if($this->options['margin-left'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
231 |
<option value="16px" <?php if($this->options['margin-left'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
232 |
<option value="32px" <?php if($this->options['margin-left'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
233 |
<option value="64px" <?php if($this->options['margin-left'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
234 |
</select>
|
235 |
</td>
|
@@ -246,6 +247,7 @@
|
|
246 |
<option value="16px" <?php if($this->options['card-top'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
247 |
<option value="24px" <?php if($this->options['card-top'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
248 |
<option value="32px" <?php if($this->options['card-top'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
249 |
<option value="64px" <?php if($this->options['card-top'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
250 |
<option value="0" <?php if($this->options['card-top'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
251 |
</select>
|
@@ -261,6 +263,7 @@
|
|
261 |
<option value="16px" <?php if($this->options['card-left'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
262 |
<option value="24px" <?php if($this->options['card-left'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
263 |
<option value="32px" <?php if($this->options['card-left'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
264 |
<option value="64px" <?php if($this->options['card-left'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
265 |
<option value="0" <?php if($this->options['card-left'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
266 |
</select>
|
@@ -274,6 +277,7 @@
|
|
274 |
<option value="16px" <?php if($this->options['card-right'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
275 |
<option value="24px" <?php if($this->options['card-right'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
276 |
<option value="32px" <?php if($this->options['card-right'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
277 |
<option value="64px" <?php if($this->options['card-right'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
278 |
<option value="0" <?php if($this->options['card-right'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
279 |
</select>
|
@@ -295,6 +299,7 @@
|
|
295 |
<option value="16px" <?php if($this->options['card-bottom'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
296 |
<option value="24px" <?php if($this->options['card-bottom'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
297 |
<option value="32px" <?php if($this->options['card-bottom'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
298 |
<option value="64px" <?php if($this->options['card-bottom'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
299 |
<option value="0" <?php if($this->options['card-bottom'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
300 |
</select>
|
@@ -312,6 +317,7 @@
|
|
312 |
<option value="8px" <?php if($this->options['margin-right'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
313 |
<option value="16px" <?php if($this->options['margin-right'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
314 |
<option value="32px" <?php if($this->options['margin-right'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
315 |
<option value="64px" <?php if($this->options['margin-right'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
316 |
</select>
|
317 |
</td>
|
@@ -329,6 +335,7 @@
|
|
329 |
<option value="8px" <?php if($this->options['margin-bottom'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
330 |
<option value="16px" <?php if($this->options['margin-bottom'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
331 |
<option value="32px" <?php if($this->options['margin-bottom'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
|
|
332 |
<option value="64px" <?php if($this->options['margin-bottom'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
333 |
</select>
|
334 |
</td>
|
@@ -360,6 +367,13 @@
|
|
360 |
<label><input name="properties[use-sitename]" type="checkbox" id="check" value="1" <?php checked(isset($this->options['use-sitename']) ? $this->options['use-sitename'] : null, 1); ?> /><?php _e('Use SiteName', $this->text_domain); ?></label>
|
361 |
</td>
|
362 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
<tr>
|
364 |
<td>
|
365 |
<label><input name="properties[heading]" type="checkbox" id="check" value="1" <?php checked(isset($this->options['heading']) ? $this->options['heading'] : null, 1); ?> /><?php _e('Make additional information heading display', $this->text_domain); ?></label>
|
116 |
echo '<div class="error fade"><p><strong>'.__('Not changed.', $this->text_domain).'</strong></p></div>';
|
117 |
}
|
118 |
$this->pz_SetStyle();
|
|
|
119 |
}
|
120 |
}
|
121 |
?>
|
214 |
<option value="8px" <?php if($this->options['margin-top'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
215 |
<option value="16px" <?php if($this->options['margin-top'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
216 |
<option value="32px" <?php if($this->options['margin-top'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
217 |
+
<option value="40px" <?php if($this->options['margin-top'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
218 |
<option value="64px" <?php if($this->options['margin-top'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
219 |
</select>
|
220 |
</td>
|
230 |
<option value="8px" <?php if($this->options['margin-left'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
231 |
<option value="16px" <?php if($this->options['margin-left'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
232 |
<option value="32px" <?php if($this->options['margin-left'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
233 |
+
<option value="40px" <?php if($this->options['margin-left'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
234 |
<option value="64px" <?php if($this->options['margin-left'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
235 |
</select>
|
236 |
</td>
|
247 |
<option value="16px" <?php if($this->options['card-top'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
248 |
<option value="24px" <?php if($this->options['card-top'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
249 |
<option value="32px" <?php if($this->options['card-top'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
250 |
+
<option value="40px" <?php if($this->options['card-top'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
251 |
<option value="64px" <?php if($this->options['card-top'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
252 |
<option value="0" <?php if($this->options['card-top'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
253 |
</select>
|
263 |
<option value="16px" <?php if($this->options['card-left'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
264 |
<option value="24px" <?php if($this->options['card-left'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
265 |
<option value="32px" <?php if($this->options['card-left'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
266 |
+
<option value="40px" <?php if($this->options['card-left'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
267 |
<option value="64px" <?php if($this->options['card-left'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
268 |
<option value="0" <?php if($this->options['card-left'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
269 |
</select>
|
277 |
<option value="16px" <?php if($this->options['card-right'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
278 |
<option value="24px" <?php if($this->options['card-right'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
279 |
<option value="32px" <?php if($this->options['card-right'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
280 |
+
<option value="40px" <?php if($this->options['card-right'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
281 |
<option value="64px" <?php if($this->options['card-right'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
282 |
<option value="0" <?php if($this->options['card-right'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
283 |
</select>
|
299 |
<option value="16px" <?php if($this->options['card-bottom'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
300 |
<option value="24px" <?php if($this->options['card-bottom'] == '24px') echo 'selected="selected"'; ?>><?php _e('24px', $this->text_domain); ?></option>
|
301 |
<option value="32px" <?php if($this->options['card-bottom'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
302 |
+
<option value="40px" <?php if($this->options['card-bottom'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
303 |
<option value="64px" <?php if($this->options['card-bottom'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
304 |
<option value="0" <?php if($this->options['card-bottom'] == '0') echo 'selected="selected"'; ?>><?php _e('0', $this->text_domain); ?></option>
|
305 |
</select>
|
317 |
<option value="8px" <?php if($this->options['margin-right'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
318 |
<option value="16px" <?php if($this->options['margin-right'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
319 |
<option value="32px" <?php if($this->options['margin-right'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
320 |
+
<option value="40px" <?php if($this->options['margin-right'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
321 |
<option value="64px" <?php if($this->options['margin-right'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
322 |
</select>
|
323 |
</td>
|
335 |
<option value="8px" <?php if($this->options['margin-bottom'] == '8px') echo 'selected="selected"'; ?>><?php _e('8px', $this->text_domain); ?></option>
|
336 |
<option value="16px" <?php if($this->options['margin-bottom'] == '16px') echo 'selected="selected"'; ?>><?php _e('16px', $this->text_domain); ?></option>
|
337 |
<option value="32px" <?php if($this->options['margin-bottom'] == '32px') echo 'selected="selected"'; ?>><?php _e('32px', $this->text_domain); ?></option>
|
338 |
+
<option value="40px" <?php if($this->options['margin-bottom'] == '40px') echo 'selected="selected"'; ?>><?php _e('40px', $this->text_domain); ?></option>
|
339 |
<option value="64px" <?php if($this->options['margin-bottom'] == '64px') echo 'selected="selected"'; ?>><?php _e('64px', $this->text_domain); ?></option>
|
340 |
</select>
|
341 |
</td>
|
367 |
<label><input name="properties[use-sitename]" type="checkbox" id="check" value="1" <?php checked(isset($this->options['use-sitename']) ? $this->options['use-sitename'] : null, 1); ?> /><?php _e('Use SiteName', $this->text_domain); ?></label>
|
368 |
</td>
|
369 |
</tr>
|
370 |
+
<tr>
|
371 |
+
<td>
|
372 |
+
<label><input name="properties[display-date]" type="checkbox" id="check" value="1" <?php checked(isset($this->options['display-date']) ? $this->options['display-date'] : null, 1); ?> /><?php _e('For internal links, display the posting date', $this->text_domain); ?></label>
|
373 |
+
</td>
|
374 |
+
<td>
|
375 |
+
</td>
|
376 |
+
</tr>
|
377 |
<tr>
|
378 |
<td>
|
379 |
<label><input name="properties[heading]" type="checkbox" id="check" value="1" <?php checked(isset($this->options['heading']) ? $this->options['heading'] : null, 1); ?> /><?php _e('Make additional information heading display', $this->text_domain); ?></label>
|
pz-linkcard.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
-
Version: 2.2.
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
@@ -66,6 +66,7 @@ class Pz_LinkCard {
|
|
66 |
'use-hatena' => null,
|
67 |
'display-url' => '1',
|
68 |
'display-excerpt' => '1',
|
|
|
69 |
'trim-title' => 80,
|
70 |
'trim-count' => 250,
|
71 |
'trim-sitename' => 45,
|
@@ -169,7 +170,7 @@ class Pz_LinkCard {
|
|
169 |
'invalid-time' => null,
|
170 |
'plugin-link' => null,
|
171 |
'plugin-name' => 'Pz-LinkCard',
|
172 |
-
'plugin-version' => '2.2.
|
173 |
'plugin-url' => 'https://popozure.info/pz-linkcard',
|
174 |
'pz-hbc-options' => null,
|
175 |
'debug-time' => null
|
@@ -237,8 +238,8 @@ class Pz_LinkCard {
|
|
237 |
register_deactivation_hook (__FILE__, array($this, 'deactivate') ); // 無効化したときの処理
|
238 |
add_action ('admin_menu', array($this, 'add_menu') ); // 設定メニュー
|
239 |
add_action ('admin_enqueue_scripts', array($this, 'enqueue_admin') ); // 設定メニュー用スクリプト
|
240 |
-
add_action ('admin_print_footer_scripts', array($this, '
|
241 |
-
|
242 |
add_filter ('mce_buttons', array($this, 'add_mce_button') ); // ビジュアルエディタ用ボタン
|
243 |
add_filter ('mce_external_plugins', array($this, 'add_mce_plugin') ); // ビジュアルエディタ用ボタン
|
244 |
add_filter ('plugin_action_links_'.$this->plugin_basename, array($this, 'action_links') ); // プラグイン画面
|
@@ -517,6 +518,7 @@ class Pz_LinkCard {
|
|
517 |
$site_name = (isset($data['site_name']) ? $data['site_name'] : null);
|
518 |
$title = (isset($data['title']) ? $data['title'] : null);
|
519 |
$excerpt = (isset($data['excerpt']) ? $data['excerpt'] : null);
|
|
|
520 |
$thumbnail_url = (isset($data['thumbnail']) ? $data['thumbnail'] : null);
|
521 |
$favicon_url = (isset($data['favicon']) ? $data['favicon'] : null);
|
522 |
$result_code = (isset($data['result_code']) ? $data['result_code'] : null);
|
@@ -758,7 +760,7 @@ class Pz_LinkCard {
|
|
758 |
|
759 |
// サムネイル
|
760 |
if ($thumbnail) {
|
761 |
-
$thumbnail = '<
|
762 |
}
|
763 |
|
764 |
// 日本語ドメイン対応
|
@@ -794,10 +796,15 @@ class Pz_LinkCard {
|
|
794 |
} else {
|
795 |
$added_info = '';
|
796 |
}
|
797 |
-
$
|
|
|
|
|
|
|
|
|
|
|
798 |
|
799 |
// 記事内容
|
800 |
-
//$content = '<div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><
|
801 |
|
802 |
// Google AMPに対応
|
803 |
if ( (function_exists('is_amp_endpoint') && is_amp_endpoint()) || isset($this->amp) || ( isset($this->options['flg-amp-url']) && ( preg_match('/\/amp\/?$/i', $_SERVER["REQUEST_URI"]) || preg_match('/\?amp=1$/i', $_SERVER["REQUEST_URI"]) ) ) ) {
|
@@ -807,16 +814,16 @@ class Pz_LinkCard {
|
|
807 |
// HTMLタグ作成
|
808 |
switch (isset($this->options['info-position']) ? $this->options['info-position'] : null) {
|
809 |
case '1':
|
810 |
-
$tag = $wrap_op.$a_op_all.'<div class="lkc-card">'.$domain_info.'<div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><
|
811 |
break;
|
812 |
case '2':
|
813 |
-
$tag = $wrap_op.$a_op_all.'<div class="lkc-card"><div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><
|
814 |
break;
|
815 |
case '3':
|
816 |
-
$tag = $wrap_op.$a_op_all.'<div class="lkc-card"><div class="lkc-content">'.$a_op.$thumbnail.$domain_info.'<div class="lkc-title"><
|
817 |
break;
|
818 |
default:
|
819 |
-
$tag = $wrap_op.$a_op_all.'<div class="lkc-card"><div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><
|
820 |
}
|
821 |
}
|
822 |
|
@@ -1209,6 +1216,7 @@ class Pz_LinkCard {
|
|
1209 |
$title = $post->post_title; // 記事タイトル
|
1210 |
$excerpt = $post->post_content; // 記事内容から抜粋
|
1211 |
}
|
|
|
1212 |
$thumbnail_id = get_post_thumbnail_id( $post_id ); // サムネイル
|
1213 |
if ($this->options['debug-time']) {
|
1214 |
echo '<!-- Pz-LkC [TID='.$thumbnail_id.'] /-->'.PHP_EOL;
|
@@ -1292,17 +1300,17 @@ class Pz_LinkCard {
|
|
1292 |
$location = substr($url, mb_strlen($domain_url)); // ドメイン名以降
|
1293 |
|
1294 |
// データセット
|
1295 |
-
if ($data['title']
|
1296 |
$before['mod_title'] = 0;
|
1297 |
} else {
|
1298 |
$before['mod_title'] = 1;
|
1299 |
}
|
1300 |
-
if ($data['excerpt']
|
1301 |
$before['mod_excerpt'] = 0;
|
1302 |
} else {
|
1303 |
$before['mod_excerpt'] = 1;
|
1304 |
}
|
1305 |
-
if (
|
1306 |
$data['use_post_id1'] = get_the_ID();
|
1307 |
}
|
1308 |
$data['scheme'] = $scheme;
|
@@ -1311,8 +1319,10 @@ class Pz_LinkCard {
|
|
1311 |
$data['site_name'] = $site_name;
|
1312 |
$data['title'] = $title;
|
1313 |
$data['excerpt'] = $excerpt;
|
|
|
1314 |
$data['thumbnail'] = $thumbnail;
|
1315 |
$data['favicon'] = $favicon;
|
|
|
1316 |
$data['result_code'] = $result_code;
|
1317 |
$data['alive_result'] = $result_code;
|
1318 |
$data['favicon'] = $favicon;
|
@@ -1635,15 +1645,17 @@ class Pz_LinkCard {
|
|
1635 |
wp_enqueue_script ('colorpicker-script', plugins_url('js/color-picker.js', __FILE__), array('wp-color-picker'), false, true);
|
1636 |
// wp_enqueue_media();
|
1637 |
// wp_enqueue_script ('media-uploader', plugins_url("media-uploader.js", __FILE__), array('jquery'), false, false);
|
|
|
1638 |
}
|
1639 |
|
1640 |
// 管理画面時のスタイルシート、スクリプト設定
|
1641 |
-
public function
|
1642 |
if ($this->options['flg-edit-qtag']) {
|
1643 |
if (wp_script_is('quicktags') ) {
|
1644 |
echo '<script>QTags.addButton(\'pz-lkc\',\''.__('Linkcard', $this->text_domain ).'\',\'['.$this->options['code1'].' url="\',\'"]\',\'\',\''.__('Make Linkcard', $this->text_domain ).'\');</script>';
|
1645 |
}
|
1646 |
}
|
|
|
1647 |
}
|
1648 |
|
1649 |
// 管理画面時の注意書き設定
|
@@ -1661,18 +1673,8 @@ class Pz_LinkCard {
|
|
1661 |
return $buttons;
|
1662 |
}
|
1663 |
public function add_mce_plugin($plugins) {
|
1664 |
-
$
|
1665 |
-
|
1666 |
-
if (!file_exists($js_path)) {
|
1667 |
-
$js_path = $this->plugin_dir_path.'js/mce-pz-lkc.js';
|
1668 |
-
$js_url = $this->plugin_dir_url .'js/mce-pz-lkc.js';
|
1669 |
-
if (!file_exists($js_path)) {
|
1670 |
-
$js_path = null;
|
1671 |
-
$js_url = null;
|
1672 |
-
}
|
1673 |
-
}
|
1674 |
-
if ($js_url) {
|
1675 |
-
$plugins['pz_linkcard'] = $js_url;
|
1676 |
}
|
1677 |
return $plugins;
|
1678 |
}
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
+
Version: 2.2.6
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
66 |
'use-hatena' => null,
|
67 |
'display-url' => '1',
|
68 |
'display-excerpt' => '1',
|
69 |
+
'display-date' => '1',
|
70 |
'trim-title' => 80,
|
71 |
'trim-count' => 250,
|
72 |
'trim-sitename' => 45,
|
170 |
'invalid-time' => null,
|
171 |
'plugin-link' => null,
|
172 |
'plugin-name' => 'Pz-LinkCard',
|
173 |
+
'plugin-version' => '2.2.6',
|
174 |
'plugin-url' => 'https://popozure.info/pz-linkcard',
|
175 |
'pz-hbc-options' => null,
|
176 |
'debug-time' => null
|
238 |
register_deactivation_hook (__FILE__, array($this, 'deactivate') ); // 無効化したときの処理
|
239 |
add_action ('admin_menu', array($this, 'add_menu') ); // 設定メニュー
|
240 |
add_action ('admin_enqueue_scripts', array($this, 'enqueue_admin') ); // 設定メニュー用スクリプト
|
241 |
+
add_action ('admin_print_footer_scripts', array($this, 'add_footer') ); // テキストエディタ用クイックタグ
|
242 |
+
add_action ('admin_notices', array($this, 'add_notices')); // 注意書き
|
243 |
add_filter ('mce_buttons', array($this, 'add_mce_button') ); // ビジュアルエディタ用ボタン
|
244 |
add_filter ('mce_external_plugins', array($this, 'add_mce_plugin') ); // ビジュアルエディタ用ボタン
|
245 |
add_filter ('plugin_action_links_'.$this->plugin_basename, array($this, 'action_links') ); // プラグイン画面
|
518 |
$site_name = (isset($data['site_name']) ? $data['site_name'] : null);
|
519 |
$title = (isset($data['title']) ? $data['title'] : null);
|
520 |
$excerpt = (isset($data['excerpt']) ? $data['excerpt'] : null);
|
521 |
+
$post_date = (isset($data['post_date']) ? $data['post_date'] : null);
|
522 |
$thumbnail_url = (isset($data['thumbnail']) ? $data['thumbnail'] : null);
|
523 |
$favicon_url = (isset($data['favicon']) ? $data['favicon'] : null);
|
524 |
$result_code = (isset($data['result_code']) ? $data['result_code'] : null);
|
760 |
|
761 |
// サムネイル
|
762 |
if ($thumbnail) {
|
763 |
+
$thumbnail = '<figure class="lkc-thumbnail">'.$thumbnail.'</figure>';
|
764 |
}
|
765 |
|
766 |
// 日本語ドメイン対応
|
796 |
} else {
|
797 |
$added_info = '';
|
798 |
}
|
799 |
+
if ($this->options['display-date'] && $link_type) {
|
800 |
+
$post_date = '<div class="lkc-date">'.date('Y.m.d', strtotime($post_date)).'</div>';
|
801 |
+
} else {
|
802 |
+
$post_date = '';
|
803 |
+
}
|
804 |
+
$domain_info = '<div class="lkc-info">'.$a_op.'<div class="lkc-domain"'.$site_title.'>'.$favicon.' '.$site_name.'</div>'.$added_info.$a_cl.$sns_info.$url2.$post_date.'</div>';
|
805 |
|
806 |
// 記事内容
|
807 |
+
//$content = '<div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><div class="lkc-title-text">'.$title.'</div>'.$a_cl.$sns_title.'</div>'.$url1.'<div class="lkc-excerpt">'.$excerpt.'</div>'.$moretag.'</div>';
|
808 |
|
809 |
// Google AMPに対応
|
810 |
if ( (function_exists('is_amp_endpoint') && is_amp_endpoint()) || isset($this->amp) || ( isset($this->options['flg-amp-url']) && ( preg_match('/\/amp\/?$/i', $_SERVER["REQUEST_URI"]) || preg_match('/\?amp=1$/i', $_SERVER["REQUEST_URI"]) ) ) ) {
|
814 |
// HTMLタグ作成
|
815 |
switch (isset($this->options['info-position']) ? $this->options['info-position'] : null) {
|
816 |
case '1':
|
817 |
+
$tag = $wrap_op.$a_op_all.'<div class="lkc-card">'.$domain_info.'<div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><div class="lkc-title-text">'.$title.'</div>'.$a_cl.$sns_title.'</div>'.$url1.'<div class="lkc-excerpt">'.$excerpt.'</div>'.$moretag.'</div><div class="clear"></div></div>'.$a_cl_all.$wrap_cl;
|
818 |
break;
|
819 |
case '2':
|
820 |
+
$tag = $wrap_op.$a_op_all.'<div class="lkc-card"><div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><div class="lkc-title-text">'.$title.'</div>'.$a_cl.$sns_title.'</div>'.$url1.'<div class="lkc-excerpt">'.$excerpt.'</div>'.$moretag.'</div>'.$domain_info.'<div class="clear"></div></div>'.$a_cl_all.$wrap_cl;
|
821 |
break;
|
822 |
case '3':
|
823 |
+
$tag = $wrap_op.$a_op_all.'<div class="lkc-card"><div class="lkc-content">'.$a_op.$thumbnail.$domain_info.'<div class="lkc-title"><div class="lkc-title-text">'.$title.'</div>'.$a_cl.$sns_title.$url1.'</div><div class="lkc-excerpt">'.$excerpt.'</div>'.$moretag.'</div><div class="clear"></div></div>'.$a_cl_all.$wrap_cl;
|
824 |
break;
|
825 |
default:
|
826 |
+
$tag = $wrap_op.$a_op_all.'<div class="lkc-card"><div class="lkc-content">'.$a_op.$thumbnail.'<div class="lkc-title"><div class="lkc-title-text">'.$title.'</div>'.$a_cl.$sns_title.'</div>'.$url1.'<div class="lkc-excerpt">'.$excerpt.'</div>'.$moretag.'</div><div class="clear"></div></div>'.$a_cl_all.$wrap_cl;
|
827 |
}
|
828 |
}
|
829 |
|
1216 |
$title = $post->post_title; // 記事タイトル
|
1217 |
$excerpt = $post->post_content; // 記事内容から抜粋
|
1218 |
}
|
1219 |
+
$post_date = $post->post_date;
|
1220 |
$thumbnail_id = get_post_thumbnail_id( $post_id ); // サムネイル
|
1221 |
if ($this->options['debug-time']) {
|
1222 |
echo '<!-- Pz-LkC [TID='.$thumbnail_id.'] /-->'.PHP_EOL;
|
1300 |
$location = substr($url, mb_strlen($domain_url)); // ドメイン名以降
|
1301 |
|
1302 |
// データセット
|
1303 |
+
if (isset($data['title']) && $data['title'] == $title ) {
|
1304 |
$before['mod_title'] = 0;
|
1305 |
} else {
|
1306 |
$before['mod_title'] = 1;
|
1307 |
}
|
1308 |
+
if (isset($data['excerpt']) && $data['excerpt'] == $excerpt ) {
|
1309 |
$before['mod_excerpt'] = 0;
|
1310 |
} else {
|
1311 |
$before['mod_excerpt'] = 1;
|
1312 |
}
|
1313 |
+
if (!isset($data['use_post_id1'])) {
|
1314 |
$data['use_post_id1'] = get_the_ID();
|
1315 |
}
|
1316 |
$data['scheme'] = $scheme;
|
1319 |
$data['site_name'] = $site_name;
|
1320 |
$data['title'] = $title;
|
1321 |
$data['excerpt'] = $excerpt;
|
1322 |
+
$data['post_date'] = $post_date;
|
1323 |
$data['thumbnail'] = $thumbnail;
|
1324 |
$data['favicon'] = $favicon;
|
1325 |
+
$data['charset'] = 'UTF-8';
|
1326 |
$data['result_code'] = $result_code;
|
1327 |
$data['alive_result'] = $result_code;
|
1328 |
$data['favicon'] = $favicon;
|
1645 |
wp_enqueue_script ('colorpicker-script', plugins_url('js/color-picker.js', __FILE__), array('wp-color-picker'), false, true);
|
1646 |
// wp_enqueue_media();
|
1647 |
// wp_enqueue_script ('media-uploader', plugins_url("media-uploader.js", __FILE__), array('jquery'), false, false);
|
1648 |
+
wp_enqueue_style('pz-lkc-admin', plugin_dir_url (__FILE__).'css/admin.css');
|
1649 |
}
|
1650 |
|
1651 |
// 管理画面時のスタイルシート、スクリプト設定
|
1652 |
+
public function add_footer() {
|
1653 |
if ($this->options['flg-edit-qtag']) {
|
1654 |
if (wp_script_is('quicktags') ) {
|
1655 |
echo '<script>QTags.addButton(\'pz-lkc\',\''.__('Linkcard', $this->text_domain ).'\',\'['.$this->options['code1'].' url="\',\'"]\',\'\',\''.__('Make Linkcard', $this->text_domain ).'\');</script>';
|
1656 |
}
|
1657 |
}
|
1658 |
+
require_once ('lib/pz-linkcard-modal.php');
|
1659 |
}
|
1660 |
|
1661 |
// 管理画面時の注意書き設定
|
1673 |
return $buttons;
|
1674 |
}
|
1675 |
public function add_mce_plugin($plugins) {
|
1676 |
+
if ($this->options['flg-edit-insert']) {
|
1677 |
+
$plugins['pz_linkcard'] = $this->plugin_dir_url.'js/mce.js';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1678 |
}
|
1679 |
return $plugins;
|
1680 |
}
|
readme.txt
CHANGED
@@ -163,6 +163,14 @@ A7.
|
|
163 |
5. "Write shortcode and url"
|
164 |
|
165 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
Ver2.2.5
|
167 |
* 内部リンクでもnofollow指定できるように修正。
|
168 |
Modified: Fixed to be able to specify nofollow even for internal links.
|
163 |
5. "Write shortcode and url"
|
164 |
|
165 |
== Changelog ==
|
166 |
+
Ver2.2.6
|
167 |
+
* 「余白」の値に「40px」を追加。
|
168 |
+
Added: Added "40px" to "Margin" value.
|
169 |
+
* ドメイン名(サイト名称)にマウスカーソルを重ねたときにアンダーラインが表示されないように変更。
|
170 |
+
Modified: Changed so that the underline is not displayed when the mouse cursor is moved over the domain name (site name).
|
171 |
+
* 挿入ボタンを押したとき、モーダルウィンドウが開くように変更。
|
172 |
+
Modified: Changed to open a modal window when the insert button is pressed.
|
173 |
+
|
174 |
Ver2.2.5
|
175 |
* 内部リンクでもnofollow指定できるように修正。
|
176 |
Modified: Fixed to be able to specify nofollow even for internal links.
|
templete/mce-pz-lkc-templete.js
DELETED
@@ -1,21 +0,0 @@
|
|
1 |
-
(function() {
|
2 |
-
tinymce.create('tinymce.plugins.pzlinkcard', {
|
3 |
-
init: function(ed, url){
|
4 |
-
ed.addButton('pz_linkcard',{
|
5 |
-
title: '/*TITLE*/',
|
6 |
-
image: url + '/button.png',
|
7 |
-
cmd: 'insert_pz_linkcard'
|
8 |
-
});
|
9 |
-
ed.addCommand('insert_pz_linkcard', function() {
|
10 |
-
var insert_tag = window.prompt('/*PROMPT*/', 'http://');
|
11 |
-
if (insert_tag !== null) {
|
12 |
-
ed.execCommand('mceInsertContent', 0, '[/*CODE*/ url="' + insert_tag + '"]');
|
13 |
-
}
|
14 |
-
});
|
15 |
-
},
|
16 |
-
createControl: function(n, cm) {
|
17 |
-
return null;
|
18 |
-
}
|
19 |
-
});
|
20 |
-
tinymce.PluginManager.add('pz_linkcard',tinymce.plugins.pzlinkcard);
|
21 |
-
})();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templete/pz-linkcard-templete.css
CHANGED
@@ -189,7 +189,6 @@
|
|
189 |
/*OUTCOLOR-INFO*/
|
190 |
/*SIZE-INFO*/
|
191 |
/*HEIGHT-INFO*/
|
192 |
-
text-decoration: underline;
|
193 |
display: inline /*IMPORTANT*/;
|
194 |
}
|
195 |
.lkc-favicon {
|
@@ -265,6 +264,15 @@
|
|
265 |
font-weight: bold /*IMPORTANT*/;
|
266 |
white-space: nowrap;
|
267 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
.clear {
|
269 |
clear: both;
|
270 |
}
|
189 |
/*OUTCOLOR-INFO*/
|
190 |
/*SIZE-INFO*/
|
191 |
/*HEIGHT-INFO*/
|
|
|
192 |
display: inline /*IMPORTANT*/;
|
193 |
}
|
194 |
.lkc-favicon {
|
264 |
font-weight: bold /*IMPORTANT*/;
|
265 |
white-space: nowrap;
|
266 |
}
|
267 |
+
.lkc-date {
|
268 |
+
/*COLOR-INFO*/
|
269 |
+
/*OUTCOLOR-INFO*/
|
270 |
+
/*SIZE-INFO*/
|
271 |
+
/*HEIGHT-INFO*/
|
272 |
+
text-decoration: none;
|
273 |
+
display: inline /*IMPORTANT*/;
|
274 |
+
float: right;
|
275 |
+
}
|
276 |
.clear {
|
277 |
clear: both;
|
278 |
}
|