diff --git a/core/modules/views/src/Plugin/views/pager/SqlBase.php b/core/modules/views/src/Plugin/views/pager/SqlBase.php
index a3d0d22..bf1b21d 100644
--- a/core/modules/views/src/Plugin/views/pager/SqlBase.php
+++ b/core/modules/views/src/Plugin/views/pager/SqlBase.php
@@ -101,13 +101,12 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
       '#tree' => TRUE,
       '#title' => $this->t('Exposed options'),
       '#input' => TRUE,
-      '#description' => $this->t('Exposing this options allows users to define their values in a exposed form when view is displayed'),
+      '#description' => $this->t('Allow user to control selected display options for this view.'),
     );
 
     $form['expose']['items_per_page'] = array(
       '#type' => 'checkbox',
-      '#title' => $this->t('Expose items per page'),
-      '#description' => $this->t('When checked, users can determine how many items per page show in a view'),
+      '#title' => $this->t('Allow user to control the number of items displayed in this view'),
       '#default_value' => $this->options['expose']['items_per_page'],
     );
 
@@ -115,7 +114,6 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
       '#type' => 'textfield',
       '#title' => $this->t('Items per page label'),
       '#required' => TRUE,
-      '#description' => $this->t('Label to use in the exposed items per page form element.'),
       '#default_value' => $this->options['expose']['items_per_page_label'],
       '#states' => array(
         'invisible' => array(
@@ -140,15 +138,13 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
 
     $form['expose']['items_per_page_options_all'] = array(
       '#type' => 'checkbox',
-      '#title' => $this->t('Include all items option'),
-      '#description' => $this->t('If checked, an extra item will be included to items per page to display all items'),
+      '#title' => $this->t('Allow user to to display all items'),
       '#default_value' => $this->options['expose']['items_per_page_options_all'],
     );
 
     $form['expose']['items_per_page_options_all_label'] = array(
       '#type' => 'textfield',
       '#title' => $this->t('All items label'),
-      '#description' => $this->t('Which label will be used to display all items'),
       '#default_value' => $this->options['expose']['items_per_page_options_all_label'],
       '#states' => array(
         'invisible' => array(
@@ -159,8 +155,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
 
     $form['expose']['offset'] = array(
       '#type' => 'checkbox',
-      '#title' => $this->t('Expose Offset'),
-      '#description' => $this->t('When checked, users can determine how many items should be skipped at the beginning.'),
+      '#title' => $this->t('Allow user to specify number of items skipped from beginning of this view.'),
       '#default_value' => $this->options['expose']['offset'],
     );
 
@@ -168,7 +163,6 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
       '#type' => 'textfield',
       '#title' => $this->t('Offset label'),
       '#required' => TRUE,
-      '#description' => $this->t('Label to use in the exposed offset form element.'),
       '#default_value' => $this->options['expose']['offset_label'],
       '#states' => array(
         'invisible' => array(
