From 999c957d88e0bd64658671406b5d70129741b95a Mon Sep 17 00:00:00 2001 From: WuhuaChen Date: Fri, 10 Nov 2023 16:01:35 -0500 Subject: [PATCH] Update LSCacheForm.php --- src/Form/LSCacheForm.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Form/LSCacheForm.php b/src/Form/LSCacheForm.php index 5a5cf57..cf18367 100644 --- a/src/Form/LSCacheForm.php +++ b/src/Form/LSCacheForm.php @@ -60,7 +60,7 @@ public function buildForm(array $form, FormStateInterface $form_state) { $form['clear_cache']['warmup_this'] = [ '#type' => 'submit', - '#value' => t('Warmup this site'), + '#value' => t('Warm up this site'), '#submit' => ['::submitWarmup'], ]; @@ -85,7 +85,7 @@ public function buildForm(array $form, FormStateInterface $form_state) { '#type' => 'textfield', '#title' => $this->t('Public Cache TTL'), '#default_value' => $config->get('lite_speed_cache.max_age'), - '#description' => $this->t('Amount of time for which page should be cached by LiteSpeed Webserver public cache (Seconds).'), + '#description' => $this->t('Amount of time for which page should be cached by LiteSpeed Web Server public cache (Seconds).'), ); $options = ['Off','On']; @@ -118,7 +118,7 @@ public function buildForm(array $form, FormStateInterface $form_state) { '#type' => 'textfield', '#title' => $this->t('Private Cache TTL'), '#default_value' => $config->get('lite_speed_cache.private_max_age'), - '#description' => $this->t('Amount of time for which page should be cached by LiteSpeed Webserver private cache (Seconds).'), + '#description' => $this->t('Amount of time for which ESI blocks should be cached by LiteSpeed Web Server private cache (Seconds).'), ); $form['cache_login']['esi_blocks'] = array(