Skip to content

Commit

Permalink
Fix l10n message for akismet, extracting URLs from the message
Browse files Browse the repository at this point in the history
  • Loading branch information
andyst committed Aug 5, 2009
1 parent 7ad0808 commit 2d63348
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/akismet/views/admin_akismet.html.php
Expand Up @@ -2,7 +2,9 @@
<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): ?>
Expand Down

0 comments on commit 2d63348

Please sign in to comment.