Unverified Commit 7fb03ff9 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3064523 by andypost, Kartagis, Sutharsan: Add t() context to "Order" string for views module

(cherry picked from commit 75df2611)
parent 9a161f42
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ protected function showSortForm(&$form, FormStateInterface $form_state) {
    $options = $this->sortOptions();
    if (!empty($options)) {
      $form['order'] = [
        '#title' => $this->t('Order'),
        '#title' => $this->t('Order', [], ['context' => 'Sort order']),
        '#type' => 'radios',
        '#options' => $options,
        '#default_value' => $this->options['order'],