Skip to content
Snippets Groups Projects
Commit 14708544 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2031885 by droplet: Add t() context to 'Order' string.

parent cb7f3159
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ function theme_field_multiple_value_form($variables) {
'colspan' => 2,
'class' => array('field-label'),
),
t('Order'),
t('Order', array(), array('context' => 'Sort order')),
);
$rows = array();
......
......@@ -218,7 +218,7 @@ public function exposedFormAlter(&$form, &$form_state) {
$form['sort_order'] = array(
'#type' => 'select',
'#options' => $sort_order,
'#title' => t('Order'),
'#title' => t('Order', array(), array('context' => 'Sort order')),
'#default_value' => $default_sort_order,
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment