summaryrefslogtreecommitdiff
path: root/modules/akismet/helpers/akismet.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/akismet/helpers/akismet.php')
-rw-r--r--modules/akismet/helpers/akismet.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/akismet/helpers/akismet.php b/modules/akismet/helpers/akismet.php
index 12d7a106..df4e7cfe 100644
--- a/modules/akismet/helpers/akismet.php
+++ b/modules/akismet/helpers/akismet.php
@@ -30,10 +30,10 @@ class akismet_Core {
public static function get_configure_form() {
$form = new Forge("admin/akismet", "", "post");
- $group = $form->group("configure_akismet")->label(_("Configure Akismet"));
- $group->input("api_key")->label(_("API Key"))->value(module::get_var("akismet", "api_key"));
- $group->api_key->error_messages("invalid", _("The API key you provided is invalid."));
- $group->submit(_("Save"));
+ $group = $form->group("configure_akismet")->label(t("Configure Akismet"));
+ $group->input("api_key")->label(t("API Key"))->value(module::get_var("akismet", "api_key"));
+ $group->api_key->error_messages("invalid", t("The API key you provided is invalid."));
+ $group->submit(t("Save"));
return $form;
}