diff --git a/persistent_login.module b/persistent_login.module
index 658fb61..06550be 100644
--- a/persistent_login.module
+++ b/persistent_login.module
@@ -12,6 +12,7 @@ admin/config/system/persistent_login
 ");
 
 define('PERSISTENT_LOGIN_MAXLIFE', 30);
+define('PERSISTENT_LOGIN_FORM_LABEL', 'Remember me');
 
 /**
  * Implements hook_help().
@@ -172,13 +173,13 @@ function persistent_login_form_alter(&$form, $form_state, $form_id) {
   if (isset($form['account']) && is_array($form['account'])) {
     $form['account']['persistent_login'] = array(
       '#type' => 'checkbox',
-      '#title' => t('Remember me'),
+      '#title' => variable_get('persistent_login_form_label', PERSISTENT_LOGIN_FORM_LABEL),
     );
   }
   else {
     $form['persistent_login'] = array(
       '#type' => 'checkbox',
-      '#title' => t('Remember me'),
+      '#title' => variable_get('persistent_login_form_label', PERSISTENT_LOGIN_FORM_LABEL),
     );
   }
 
@@ -468,7 +469,8 @@ function _persistent_login_check() {
       drupal_session_destroy_uid($uid);
       // Log the event, warn the user.
       watchdog('security', 'Stolen Persistent Login session for user %user detected.', array('%user' => $r['name']), WATCHDOG_ERROR);
-      drupal_set_message(t('<p><b>SECURITY ALERT!</b></p><p>You previously logged in to this site and checked the <em>Remember me</em> box.  At that time, this site stored a "login cookie" on your web browser that it uses to identify you each time you return.  However, the login cookie that your browser just provided is incorrect.  One possible cause of this error is that your web browser cookies have been stolen and used by someone else to impersonate you at this site.</p><p>As a precaution, we logged out all of your current sessions and deactivated all your remembered logins to this site.  You can log in again now.</p>'), 'error');
+      $remember_me_label = variable_get('persistent_login_form_label', PERSISTENT_LOGIN_FORM_LABEL);
+      drupal_set_message(t('<p><b>SECURITY ALERT!</b></p><p>You previously logged in to this site and checked the <em>'. $remember_me_label .'</em> box.  At that time, this site stored a "login cookie" on your web browser that it uses to identify you each time you return.  However, the login cookie that your browser just provided is incorrect.  One possible cause of this error is that your web browser cookies have been stolen and used by someone else to impersonate you at this site.</p><p>As a precaution, we logged out all of your current sessions and deactivated all your remembered logins to this site.  You can log in again now.</p>'), 'error');
       drupal_goto();
       return;
     }
diff --git a/persistent_login.pages.inc b/persistent_login.pages.inc
index e3ee6f8..437a777 100644
--- a/persistent_login.pages.inc
+++ b/persistent_login.pages.inc
@@ -39,6 +39,15 @@ function persistent_login_admin_settings($form, &$form_state) {
     '#description' => t('The maximum number of Persistent Logins remembered per user.'),
   );
 
+  $form['persistent_login_form_label'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Remember me label'),
+    '#size' => 40,
+    '#maxlength' => 40,
+    '#default_value' => variable_get('persistent_login_form_label', PERSISTENT_LOGIN_FORM_LABEL),
+    '#description' => t('The login form field label.'),
+  );
+
   $form['persistent_login_cookie_prefix'] = array(
     '#type' => 'textfield',
     '#title' => t('Cookie name prefix'),
