From ea409c732e402350e6d1985cd5038c3a162692c8 Mon Sep 17 00:00:00 2001
From: Daniel Wehner <daniel.wehner@erdfisch.de>
Date: Sun, 19 Aug 2012 12:09:02 +0200
Subject: [PATCH] Issue #1736722 by dawehner, lund.mikkel: Fix default
 input_required text to not wrap the value with t().

---
 lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php b/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php
index 5f7d9f7c2d83..b66645abc22e 100644
--- a/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php
+++ b/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php
@@ -28,7 +28,7 @@ class InputRequired extends ExposedFormPluginBase {
   function option_definition() {
     $options = parent::option_definition();
 
-    $options['text_input_required'] = array('default' => t('Select any filter and click on Apply to see results'), 'translatable' => TRUE);
+    $options['text_input_required'] = array('default' => 'Select any filter and click on Apply to see results', 'translatable' => TRUE);
     $options['text_input_required_format'] = array('default' => NULL);
     return $options;
   }
-- 
GitLab