1<?php
2
3/**
4 * english language file
5 *
6 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
7 * @author     Gina Haeussge <osd@foosel.net>
8 */
9
10$lang['enable_pingback'] = 'Enable pingbacks.';
11$lang['enable_trackback'] = 'Enable trackbacks.';
12$lang['order'] = 'Order in which to try to send linkbacks.';
13$lang['range'] = 'How many kilobytes to fetch from linked page for autodiscovery.';
14$lang['allow_guests'] = 'Allow non-registered users to send linkbacks.';
15$lang['enabled_namespaces'] = 'Namespaces where the sending of linkbacks should be enabled by default (comma-separated list, * enables linkbacks by default everywhere).';
16$lang['ping_internal'] = 'Also ping internal links e.g. for crossreferencing former blog entries.';
17$lang['show_trackback_url'] = 'Show trackback URL on enabled sites.';
18$lang['log_processing'] = 'Log processing of incoming linkbacks (Log will be called linkback.log and be located in the cache-dir).';
19
20$lang['usefavicon'] = 'Retrieve favicon for incoming linkbacks and display it.';
21$lang['favicon_default'] = 'URL of favicon to use if pinging page does not have one.';
22
23$lang['antispam_linkcount_enable'] = 'Enable linkcount antispam measure.';
24$lang['antispam_linkcount_moderate'] = 'If allowed linkcount exceeds, moderate linkback instead of deleting it.';
25$lang['antispam_linkcount_max'] = 'Maximum number of links to allow in excerpt without taking action.';
26
27$lang['antispam_wordblock_enable'] = 'Enable wordblock antispam measure.';
28$lang['antispam_wordblock_moderate'] = 'If linkback contains blacklisted words, moderate linkback instead of deleting it.';
29
30$lang['antispam_host_enable'] = 'Enable host antispam measure.';
31$lang['antispam_host_moderate'] = 'If hostname of sending site and remote address of the connection do not match, moderate linkback instead of deleting it.';
32
33$lang['antispam_link_enable'] = 'Enable link antispam measure.';
34$lang['antispam_link_moderate'] = 'If sending site does not contain a link to us, moderate linkback instead of deleting it.';
35
36$lang['akismet_enable'] = 'Enable Akismet antispam measure.';
37$lang['akismet_apikey'] = 'The <a href="http://wordpress.com/signup/">Akismet API Key</a>. The plugin will not work without!';
38$lang['akismet_moderate'] = 'If Akismet classifies linkback as spam, moderate it instead of deleting it.';
39