From 10b835834711701b085195d07f4f9579299958c4 Mon Sep 17 00:00:00 2001 From: hass <hass@85918.no-reply.drupal.org> Date: Sun, 27 May 2012 12:33:11 +0200 Subject: [PATCH] Issue #1601848 by hass: t('Click sort column') cause context sensitive translation issues. --- modules/field/views_handler_field_field.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/field/views_handler_field_field.inc b/modules/field/views_handler_field_field.inc index 7fa66fdc3d96..8790baf05f04 100644 --- a/modules/field/views_handler_field_field.inc +++ b/modules/field/views_handler_field_field.inc @@ -401,7 +401,7 @@ function options_form(&$form, &$form_state) { else { $form['click_sort_column'] = array( '#type' => 'select', - '#title' => t('Click sort column'), + '#title' => t('Column used for click sorting'), '#options' => drupal_map_assoc($column_names), '#default_value' => $this->options['click_sort_column'], '#description' => t('Used by Style: Table to determine the actual column to click sort the field on. The default is usually fine.'), -- GitLab