diff options
| author | root <root@sleepydogs.net> | 2009-09-13 09:01:55 -0700 | 
|---|---|---|
| committer | root <root@sleepydogs.net> | 2009-09-13 09:01:55 -0700 | 
| commit | c62d1f440f077ba806b7ff0c6b90ef89c79b2fd3 (patch) | |
| tree | b64f05e2a7bd8db7200e3c407904e255826b4cf2 /modules/akismet/views | |
| parent | b96ac1eb81b7ccd5bd050ffab0ca9ce1feec8f4f (diff) | |
| parent | caa2002d7777e0ceb884d4c628650804620ca2b6 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/akismet/views')
| -rw-r--r-- | modules/akismet/views/admin_akismet.html.php | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/akismet/views/admin_akismet.html.php b/modules/akismet/views/admin_akismet.html.php index 9963f223..009d8810 100644 --- a/modules/akismet/views/admin_akismet.html.php +++ b/modules/akismet/views/admin_akismet.html.php @@ -2,11 +2,13 @@  <div id="gAdminAkismet">    <h1> <?= t("Akismet Spam Filtering") ?> </h1>    <p> -    <?= t("Akismet is a free, automated spam filtering service.  In order to use it, you need to sign up for a <a href=\"http://wordpress.com/api-keys\">Wordpress.com API Key</a>, which is also free.  Your comments will be automatically relayed to <a href=\"http://akismet.com\">Akismet.com</a> where they'll be scanned for spam.  Spam messages will be flagged accordingly and hidden from your vistors until you approve or delete them.") ?> +  <?= t("Akismet is a free, automated spam filtering service.  In order to use it, you need to sign up for a <a href=\"%api_key_url\">Wordpress.com API Key</a>, which is also free.  Your comments will be automatically relayed to <a href=\"%akismet_url\">Akismet.com</a> where they'll be scanned for spam.  Spam messages will be flagged accordingly and hidden from your vistors until you approve or delete them.", +        array("api_key_url" => "http://wordpress.com/api-keys", +              "akismet_url" => "http://akismet.com")) ?>    </p>    <? if ($valid_key): ?> -  <div class="gSuccess"> +  <div class="gModuleStatus gSuccess">      <?= t("Your API Key is valid.  Your comments will be filtered!") ?>    </div>    <? endif ?>  | 
