diff --git a/login_security.module b/login_security.module
index 70b47fe..4d2f012 100644
--- a/login_security.module
+++ b/login_security.module
@@ -15,16 +15,16 @@ define('LOGIN_SECURITY_HOST_WRONG_COUNT_HARD', 0);
 define('LOGIN_SECURITY_DISABLE_CORE_LOGIN_ERROR', 0);
 define('LOGIN_SECURITY_NOTICE_ATTEMPTS_AVAILABLE', 0);
 define('LOGIN_SECURITY_ACTIVITY_THRESHOLD', 0);
-define('LOGIN_SECURITY_NOTICE_ATTEMPTS_MESSAGE', t("You have used @user_current_count out of @user_block_attempts login attempts. After all @user_block_attempts have been used, you will be unable to login."));
-define('LOGIN_SECURITY_HOST_SOFT_BANNED', t("This host is not allowed to log in to @site. Please contact your site administrator."));
-define('LOGIN_SECURITY_HOST_HARD_BANNED', t("The IP address @ip is banned at @site, and will not be able to access any of its content from now on. Please contact the site administrator."));
-define('LOGIN_SECURITY_USER_BLOCKED', t("The user @username has been blocked due to failed login attempts."));
+define('LOGIN_SECURITY_NOTICE_ATTEMPTS_MESSAGE', "You have used @user_current_count out of @user_block_attempts login attempts. After all @user_block_attempts have been used, you will be unable to login.");
+define('LOGIN_SECURITY_HOST_SOFT_BANNED', "This host is not allowed to log in to @site. Please contact your site administrator.");
+define('LOGIN_SECURITY_HOST_HARD_BANNED', "The IP address @ip is banned at @site, and will not be able to access any of its content from now on. Please contact the site administrator.");
+define('LOGIN_SECURITY_USER_BLOCKED', "The user @username has been blocked due to failed login attempts.");
 define('LOGIN_SECURITY_USER_BLOCKED_EMAIL_USER', '');
-define('LOGIN_SECURITY_USER_BLOCKED_EMAIL_SUBJECT', t("Security action: The user @username has been blocked."));
-define('LOGIN_SECURITY_USER_BLOCKED_EMAIL_BODY', t("The user @username (@edit_uri) has been blocked at @site due to the amount of failed login attempts. Please check the logs for more information."));
+define('LOGIN_SECURITY_USER_BLOCKED_EMAIL_SUBJECT', "Security action: The user @username has been blocked.");
+define('LOGIN_SECURITY_USER_BLOCKED_EMAIL_BODY', "The user @username (@edit_uri) has been blocked at @site due to the amount of failed login attempts. Please check the logs for more information.");
 define('LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_USER', '');
-define('LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_SUBJECT', t("Security information: Unexpected login activity has been detected at @site."));
-define('LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_BODY', t("The configured threshold of @activity_threshold logins has been reached with a total of @tracking_current_count invalid login attempts. You should review your log information about login attempts at @site."));
+define('LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_SUBJECT', "Security information: Unexpected login activity has been detected at @site.");
+define('LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_BODY', "The configured threshold of @activity_threshold logins has been reached with a total of @tracking_current_count invalid login attempts. You should review your log information about login attempts at @site.");
 define('LOGIN_SECURITY_THRESHOLD_NOTIFIED', FALSE);
 
 /**
@@ -156,7 +156,7 @@ function login_security_soft_block_validate($form, &$form_state) {
   // Check for host login attempts: Soft.
   if ($variables['@soft_block_attempts'] >= 1) {
     if ($variables['@ip_current_count'] >= $variables['@soft_block_attempts']) {
-      form_set_error('submit', login_security_t(variable_get('login_security_host_soft_banned', LOGIN_SECURITY_HOST_SOFT_BANNED), $variables));
+      form_set_error('submit', login_security_t(t(variable_get('login_security_host_soft_banned', LOGIN_SECURITY_HOST_SOFT_BANNED), $variables)));
     }
   }
 }
@@ -194,7 +194,7 @@ function login_security_validate($form, &$form_state) {
         watchdog('login_security', 'Ongoing attack detected: Suspicious activity detected in login form submissions. Too many invalid login attempts threshold reached: currently @tracking_current_count events are tracked, and threshold is configured for @activity_threshold attempts.', $variables, WATCHDOG_WARNING);
         variable_set('login_security_threshold_notified', TRUE);
         // Submit email only if required.
-        $login_activity_email_user = variable_get('login_security_login_activity_email_user', LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_USER);
+        $login_activity_email_user = t(variable_get('login_security_login_activity_email_user', LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_USER));
         if ($login_activity_email_user !== '') {
           $from = variable_get('site_mail', ini_get('sendmail_from'));
           $admin_mail = db_query_range("SELECT mail FROM {users} WHERE name = :name", 0, 1, array(':name' => $login_activity_email_user))->fetchField();
@@ -254,7 +254,7 @@ function login_security_validate($form, &$form_state) {
       // Should the user be advised about the remaining login attempts?
       $notice_user = variable_get('login_security_notice_attempts_available', LOGIN_SECURITY_NOTICE_ATTEMPTS_AVAILABLE);
       if (($notice_user == TRUE) && ($variables['@user_block_attempts'] > 0) && $variables['@user_block_attempts'] >= $variables['@user_current_count']) {
-        $message_raw = variable_get('login_security_notice_attempts_message', LOGIN_SECURITY_NOTICE_ATTEMPTS_MESSAGE);
+        $message_raw = t(variable_get('login_security_notice_attempts_message', LOGIN_SECURITY_NOTICE_ATTEMPTS_MESSAGE));
 
         // Simple flag that can be changed using hook_alter (see below).
         $display_block_attempts = TRUE;
@@ -381,7 +381,7 @@ function login_user_block_ip($variables) {
   drupal_write_record('blocked_ips', $block);
   watchdog('login_security', 'Banned IP address @ip due to security configuration.', $variables, WATCHDOG_NOTICE, l(t('view/delete blocked IPs'), "admin/config/people/ip-blocking"));
   // Using form_set_error because it may disrupt current form submission.
-  form_set_error('void', login_security_t(variable_get('login_security_host_hard_banned', LOGIN_SECURITY_HOST_HARD_BANNED), $variables));
+  form_set_error('void', login_security_t(t(variable_get('login_security_host_hard_banned', LOGIN_SECURITY_HOST_HARD_BANNED), $variables)));
 }
 
 /**
@@ -405,10 +405,10 @@ function login_user_block_user_name($variables) {
       // user messages.
       watchdog('user', 'Blocked user @username due to security configuration.', $variables, WATCHDOG_NOTICE, l(t('edit user'), "user/{$variables['@uid']}/edit", array('query' => array('destination' => 'admin/user/user'))));
       // Also notify the user that account has been blocked.
-      form_set_error('void', login_security_t(variable_get('login_security_user_blocked', LOGIN_SECURITY_USER_BLOCKED), $variables));
+      form_set_error('void', login_security_t(t(variable_get('login_security_user_blocked', LOGIN_SECURITY_USER_BLOCKED), $variables)));
 
       // Send admin email.
-      $user_blocked_email_user = variable_get('login_security_user_blocked_email_user', LOGIN_SECURITY_USER_BLOCKED_EMAIL_USER);
+      $user_blocked_email_user = t(variable_get('login_security_user_blocked_email_user', LOGIN_SECURITY_USER_BLOCKED_EMAIL_USER));
       if ($user_blocked_email_user !== '') {
         $from = variable_get('site_mail', ini_get('sendmail_from'));
         $admin_mail = db_select('users', 'u')
@@ -482,13 +482,13 @@ function _login_security_get_variables_by_name($name) {
 function login_security_mail($key, &$message, $variables) {
   switch ($key) {
     case 'block_user_notify':
-      $message['subject'] = login_security_t(variable_get('login_security_user_blocked_email_subject', LOGIN_SECURITY_USER_BLOCKED_EMAIL_SUBJECT), $variables);
-      $message['body'][] = login_security_t(variable_get('login_security_user_blocked_email_body', LOGIN_SECURITY_USER_BLOCKED_EMAIL_BODY), $variables);
+      $message['subject'] = login_security_t(t(variable_get('login_security_user_blocked_email_subject', LOGIN_SECURITY_USER_BLOCKED_EMAIL_SUBJECT), $variables));
+      $message['body'][] = login_security_t(t(variable_get('login_security_user_blocked_email_body', LOGIN_SECURITY_USER_BLOCKED_EMAIL_BODY), $variables));
       break;
 
     case 'login_activity_notify':
-      $message['subject'] = login_security_t(variable_get('login_security_login_activity_email_subject', LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_SUBJECT), $variables);
-      $message['body'][] = login_security_t(variable_get('login_security_login_activity_email_body', LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_BODY), $variables);
+      $message['subject'] = login_security_t(t(variable_get('login_security_login_activity_email_subject', LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_SUBJECT), $variables));
+      $message['body'][] = login_security_t(t(variable_get('login_security_login_activity_email_body', LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_BODY), $variables));
       break;
   }
 }
@@ -533,7 +533,7 @@ function login_security_nagios() {
     // Attack is happening.
     if ($condition) {
       $status = NAGIOS_STATUS_CRITICAL;
-      $text = login_security_t(LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_SUBJECT, $variables);
+      $text = login_security_t(t(LOGIN_SECURITY_LOGIN_ACTIVITY_EMAIL_SUBJECT), $variables);
     }
     // All is normal.
     else {
