OSDN Git Service

git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/plugin@1020 1ca29b6e-896d...
[nucleus-jp/nucleus-plugins.git] / NP_TrackBack / branches / DOM-branch / trackback / language / english.php
1 <?php
2 // plugin description
3 define('_TB_DESCRIPTION',               'Send trackbacks to other weblogs and receive tracbacks from others.');
4
5 // BLOG settings messages
6 define('_TB_isAcceptWOLinkDef',         'Accept pings w/o link ? (blog default)');
7 define('_TB_isAcceptWOLinkDef_VAL',     'yes|yes|no (block)|block|no (ignore)|ignore');
8 define('_TB_AllowTrackBack',            'Accept pings to this blog');
9 define('_TB_NotifyEmailBlog',           'Which e-mail address to send these notification to?');
10
11 // ITEM add/eit form messages
12 define('_TB_LIST_IT',                   'List it');
13 define('_TB_ItemAcceptPing',            'Accept pings');
14 define('_TB_isAcceptWOLink',            'Accept pings w/o link ?');
15 define('_TB_isAcceptWOLink_VAL',        'default|default|yes|yes|no|no');
16
17 // Global plugin options messages
18 define('_TB_AcceptPing',                'Accept pings');
19 define('_TB_SendPings',                 'Allow sending pings');
20 define('_TB_AutoXMLHttp',               'Auto-detect Trackback URLs as you type');
21 define('_TB_CheckIDs',                  'Only allow valid itemids as trackback-ids');
22 define('_TB_NotifyEmail',               'Which e-mail address to send these notification to?');
23 define('_TB_DropTable',                 'Clear the database when uninstalling');
24 define('_TB_HideUrl',                   'Hide external URL');
25 define('_TB_ajaxEnabled',               'Enable Ajax ?');
26
27 // notify e-mail template
28 define('_TB_NORTIFICATION_MAIL_BODY',   "Your weblog received a new trackback from <%blogname%> for ID <%tb_id%>. "
29                                                                           . "Below are the full details:\n\n"
30                                                                           . "URL:\t<%url%>\nTitle:\t<%title%>\nExcerpt:\t<%excerpt%>\nBlogname:\t<%blogname%>");
31 define('_TB_NORTIFICATION_MAIL_TITLE',  "New Trackback received for ID <%tb_id%>");
32
33 // template title
34 define('_TB_dateFormat',                'Date format');
35 define('_TB_tplHeader',                 'Header');
36 define('_TB_tplEmpty',                  'Empty');
37 define('_TB_tplItem',                   'Item');
38 define('_TB_tplFooter',                 'Footer');
39 define('_TB_tplLocalHeader',            'Header (Local)');
40 define('_TB_tplLocalEmpty',             'Empty (Local)');
41 define('_TB_tplLocalItem',              'Item (Local)');
42 define('_TB_tplLocalFooter',            'Footer (Local)');
43 define('_TB_tplNO_ACCEPT',              'No accept message');
44 define('_TB_tplTbNone',                 'Trackback count (none)');
45 define('_TB_tplTbOne',                  'Trackback count (one)');
46 define('_TB_tplTbMore',                 'Trackback count (more)');
47
48 // template values
49 define('_TB_dateFormat_VAL',            "%e/%m/%g");
50 define('_TB_tplHeader_VAL',             "<div class=\"tb\">\n\t<div class=\"head\">Trackback</div><%admin%>\n\n");
51 define('_TB_tplEmpty_VAL',              "\t<div class=\"empty\">\n"
52                                                                           . "\t\tThere are currently no trackbacks for this item.\n\t</div>\n\n");
53 define('_TB_tplItem_VAL',               "\t<div class=\"item\">\n\t\t<div class=\"name\"><%name%></div>\n"
54                                                                           . "\t\t<div class=\"body\">\n\t\t\t<a href=\"<%url%>\"><%title%>:</a> <%excerpt%>\n"
55                                                                           . "\t\t</div>\n\t\t<div class=\"date\">\n\t\t\t<%date%>\n\t\t</div>\n\t</div>\n\n");
56 define('_TB_tplFooter_VAL',             "\t<div class=\"info\">\n\t\tUse this <a href=\"<%action%>\">TrackBack url</a> "
57                                                                           . "to ping this item (right-click, copy link target).\n"
58                                                                           . "\t\tIf your blog does not support Trackbacks you can manually add your trackback by using "
59                                                                           . "<a href=\"<%form%>\" onclick=\"window.open(this.href, 'trackback', 'scrollbars=yes,width=600,height=340,left=10,top=10,status=yes,resizable=yes'); return false;\">"
60                                                                           . "this form</a>.\n\t</div>\n</div>");
61 define('_TB_tplLocalHeader_VAL',        "<div class=\"tblocal\">\n\t<div class=\"head\">Local Trackback</div>\n\n");
62 define('_TB_tplLocalEmpty_VAL',         "");
63 define('_TB_tplLocalItem_VAL',          "\t<div class=\"item\">\n\t\t<div class=\"body\">\n\t\t\t<%delete%> <a href=\"<%url%>\">"
64                                                                           . "<%title%></a>: <%excerpt%>\n\t\t</div>\n\t\t<div class=\"date\">\n\t\t\t<%timestamp%>\n"
65                                                                           . "\t\t</div>\n\t</div>\n\n");
66 define('_TB_tplLocalFooter_VAL',        "\t</div>");
67
68 // error messages
69 define('_TB_msgNOTALLOWED_SEND',        "You're not allowed to send pings");
70 define('_TB_msgDISABLED_SEND',          "Sending trackback pings is disabled");
71 define('_TB_msgNO_SENDER_URL',          "No ping URL");
72 define('_TB_msgBAD_SENDER_URL',         'Bad ping URL');
73 define('_TB_msgCOULDNOT_SEND_PING',     'Could not send ping: %s');
74 define('_TB_msgRESP_HTTP_ERROR',        'An error occurred: HTTP Error: [%s] %s');
75 define('_TB_msgAN_ERROR_OCCURRED',      "An error occurred: %s");
76 define('_TB_msgTBID_IS_MISSING',        "TrackBack ID is missing (tb_id)");
77 define('_TB_msgTB_COULDNOT_TB_UPDATE',  'Could not update trackback data: %s');
78 define('_TB_msgDUPLICATED_TB_BLOCKED',  "Trackback: Duplicated Blocked Trackback [ignore] (itemid:%d from: %s)");
79 define('_TB_msgLINK_CHECK_OK',          "Trackback: LinkCheck OK. (link: %s pat: %s )");
80 define('_TB_msgLINK_CHECK_IGNORE',      "Trackback: LinkCheck NG. [ignore] (itemid:%d from: %s cnt: %s pat: %s)");
81 define('_TB_msgLINK_CHECK_BLOCK',       "Trackback: LinkCheck NG. [block] (itemid:%d from: %s cnt: %s pat: %s)");
82 define('_TB_msgCOULDNOT_SAVE_DOUBLE',   'Could not save trackback data, possibly because of a double entry: ');
83
84
85
86
87