From 3924c529f200a77cec23d4491a16621fed65d796 Sun, 26 Mar 2017 14:35:30 +0200 From: hass Date: Sun, 26 Mar 2017 14:35:15 +0200 Subject: [PATCH] Issue #2864115 by hass: Optimize translatable string diff --git a/handlers/views_handler_field.inc b/handlers/views_handler_field.inc index 65210d9..a6f355b 100644 --- a/handlers/views_handler_field.inc +++ b/handlers/views_handler_field.inc @@ -540,7 +540,7 @@ $form['element_class_enable'] = array( '#type' => 'checkbox', - '#title' => t('Create a CSS class'), + '#title' => t('Add CSS class'), '#dependency' => array( 'edit-options-element-type-enable' => array(1), ), @@ -579,7 +579,7 @@ ); $form['element_label_class_enable'] = array( '#type' => 'checkbox', - '#title' => t('Create a CSS class'), + '#title' => t('Add CSS class'), '#dependency' => array( 'edit-options-element-label-type-enable' => array(1) ), @@ -619,7 +619,7 @@ $form['element_wrapper_class_enable'] = array( '#type' => 'checkbox', - '#title' => t('Create a CSS class'), + '#title' => t('Add CSS class'), '#dependency' => array( 'edit-options-element-wrapper-type-enable' => array(1), ), diff --git a/plugins/views_plugin_style_table.inc b/plugins/views_plugin_style_table.inc index 45ed976..4166dd3 100644 --- a/plugins/views_plugin_style_table.inc +++ b/plugins/views_plugin_style_table.inc @@ -293,7 +293,7 @@ '#type' => 'checkbox', '#title' => t('Show the empty text in the table'), '#default_value' => $this->options['empty_table'], - '#description' => t('Per default the table is hidden for an empty view. With this option it is posible to show an empty table with the text in it.'), + '#description' => t('Per default the table is hidden for an empty view. With this option it is possible to show an empty table with the text in it.'), ); $form['description_markup'] = array(