diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php b/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php index c35b5a5..7fc4419 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php @@ -43,8 +43,7 @@ public function buildOptionsForm(&$form, &$form_state) { // Add the HTTP status code, so it's easier for people to find it. array_walk($options, function($title, $code) use(&$options) { - $title = t($title); - $options[$code] = t('@title (@code)', array('@title' => $title, '@code' => $code)); + $options[$code] = t('@code (@title)', array('@code' => $code, '@title' => $title)); }); $form['status_code'] = array(