From d46b0afe88b3d55a96aaf9db7c1ba85525de0f6f Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 26 Apr 2016 19:41:54 +0100 Subject: [PATCH] Issue #2669394 by dagmar, jchin1968, Camster: Views Row Class Number is Missing --- core/modules/views/src/Plugin/views/style/StylePluginBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/views/src/Plugin/views/style/StylePluginBase.php b/core/modules/views/src/Plugin/views/style/StylePluginBase.php index 648b17868071..34b3eea01615 100644 --- a/core/modules/views/src/Plugin/views/style/StylePluginBase.php +++ b/core/modules/views/src/Plugin/views/style/StylePluginBase.php @@ -345,7 +345,7 @@ abstract class StylePluginBase extends PluginBase { $form['default_row_class'] = array( '#title' => $this->t('Add views row classes'), - '#description' => $this->t('Add the default row classes like views-row-1 to the output. You can use this to quickly reduce the amount of markup the view provides by default, at the cost of making it more difficult to apply CSS.'), + '#description' => $this->t('Add the default row classes like @classes to the output. You can use this to quickly reduce the amount of markup the view provides by default, at the cost of making it more difficult to apply CSS.', array('@classes' => 'views-row')), '#type' => 'checkbox', '#default_value' => $this->options['default_row_class'], );