diff --git plugins/views_plugin_exposed_form.inc plugins/views_plugin_exposed_form.inc
index d64e5e0..50ad6f8 100644
--- plugins/views_plugin_exposed_form.inc
+++ plugins/views_plugin_exposed_form.inc
@@ -33,6 +33,7 @@ class views_plugin_exposed_form extends views_plugin {
     $options = parent::option_definition();
     $options['submit_button'] = array('default' => 'Apply', 'translatable' => TRUE);
     $options['reset_button'] = array('default' => FALSE, 'bool' => TRUE);
+    $options['reset_button_label'] = array('default' => 'Reset', 'translatable' => TRUE);
     $options['exposed_sorts_label'] = array('default' => 'Sort By', 'translatable' => TRUE);
     $options['sort_asc_label'] = array('default' => 'Asc', 'translatable' => TRUE);
     $options['sort_desc_label'] = array('default' => 'Desc', 'translatable' => TRUE);
@@ -55,6 +56,18 @@ class views_plugin_exposed_form extends views_plugin {
       '#default_value' => $this->options['reset_button'],
     );
 
+    $form['reset_button_label'] = array(
+     '#type' => 'textfield',
+      '#title' => t('Reset button label'),
+      '#description' => t('Text to display in the reset button of the exposed form.'),
+      '#default_value' => $this->options['reset_button_label'],
+      '#required' => TRUE,
+      '#dependency' => array(
+        'edit-exposed-form-options-reset-button' => array(1)
+      ),
+      '#process' => array('views_process_dependency'),
+    );
+
     $form['exposed_sorts_label'] = array(
       '#type' => 'textfield',
       '#title' => t('Exposed sorts label'),
@@ -147,7 +160,7 @@ class views_plugin_exposed_form extends views_plugin {
   function exposed_form_alter(&$form, &$form_state) {
     if (!empty($this->options['reset_button'])) {
       $form['reset'] = array(
-        '#value' => t('Reset'),
+        '#value' => t($this->options['reset_button_label']),
         '#type' => 'submit',
       );
     }
