source: extensions/rv_akismet/admin.tpl @ 31936

Last change on this file since 31936 was 21632, checked in by ddtddt, 11 years ago

[extensions] - rv_akismet - Change key language

  • Property svn:eol-style set to LF
File size: 1.5 KB
Line 
1
2<p>{'This plugin verifies if your comments are spam using the <a href="http://www.akismet.com" target="_blank">akismet online service</a>.'|@translate}</p>
3
4<p>{'Akismet has caught'|@translate} <b>{$AKISMET_SPAM_COMMENTS} {'spam comments'|@translate}</b> {'out of'|@translate} {$AKISMET_CHECKED_COMMENTS} {'comments'|@translate} (<a href="{$AKISMET_RESET_STATS_URL}">{'reset counters'|@translate}</a>).
5{if ! empty($AKISMET_API_KEY)}
6{'More statistics on'|@translate} <a href="http://{$AKISMET_API_KEY}.web.akismet.com/1.0/user-stats.php?blog={$AKISMET_BLOG_URL|@escape:url}" target="_new">{'akismet site'|@translate}</a>.
7{/if}
8</p>
9<form method="post" class="properties">
10<fieldset>
11  <legend>{'Akismet configuration'|@translate}</legend>
12  <ul>
13 
14  <li>
15  <label>
16    {'Akismet API Key:'|@translate}
17    <input type="text" size="48" name="akismet_api_key" value="{$AKISMET_API_KEY}" />
18  </label>
19    <br/>{'Signup for a personal usage key here:'|@translate} <a href="http://akismet.com/personal/" target="_blank">http://akismet.com/personal/</a>.
20  </li>
21 
22  <br/>
23
24  <li>
25  <label>
26    {'Action when spam is detected:'|@translate}
27    <select name="akismet_spam_action">
28        {html_options values='moderate,reject'|@explode output='moderate,reject'|@explode selected=$AKISMET_SPAM_ACTION }
29    </select>
30  </label>
31  </li>
32
33  <p class="bottomButtons">
34    <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" {$TAG_INPUT_ENABLED}/>
35  </p>
36</fieldset>
37</form>
38<p><a href="{$AKISMET_TEST_URL}">{'Test your configuration'|@translate}</a>.</p>
Note: See TracBrowser for help on using the repository browser.