From 9b242c429678500c545eb613dba9d28e3910b1f6 Mon Sep 17 00:00:00 2001 From: git <git@1846648.no-reply.drupal.org> Date: Sun, 19 Aug 2012 10:40:58 +0200 Subject: [PATCH] Issue #1739154 by lund.mikkel: Fixed Bad translation of All causes double translation. --- lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php b/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php index 9369131f9d90..8036e159cb84 100644 --- a/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php +++ b/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php @@ -189,7 +189,7 @@ function option_definition() { 'contains' => array( 'value' => array('default' => 'all'), 'title_enable' => array('default' => FALSE, 'bool' => TRUE), - 'title' => array('default' => t('All'), 'translatable' => TRUE), + 'title' => array('default' => 'All', 'translatable' => TRUE), ), ); $options['title_enable'] = array('default' => FALSE, 'bool' => TRUE); -- GitLab