Click to expand the diff!
```diff
diff --git a/administrator/language/en-GB/plg_system_cache.ini b/administrator/language/en-GB/plg_system_cache.ini
index a88193c3fb29..51fff51d03fb 100644
--- a/administrator/language/en-GB/plg_system_cache.ini
+++ b/administrator/language/en-GB/plg_system_cache.ini
@@ -7,5 +7,5 @@ PLG_CACHE_FIELD_BROWSERCACHE_LABEL="Use Browser Caching"
PLG_CACHE_FIELD_EXCLUDE_DESC="Specify which URLs you want to exclude from caching, each on a separate line. Regular expressions are supported, eg. about\-[a-z]+ - will exclude all URLs that have 'about-', for example 'about-us', 'about-me', 'about-joomla' etc. /component/users/ - will exclude all URLs that have /component/users/. com_users - will exclude all Users component pages."
PLG_CACHE_FIELD_EXCLUDE_LABEL="Exclude URLs"
PLG_CACHE_FIELD_EXCLUDE_MENU_ITEMS_LABEL="Exclude Menu Items"
-PLG_CACHE_XML_DESCRIPTION="Provides page caching."
+PLG_CACHE_XML_DESCRIPTION="Provides page caching. This is only suitable for sites that have static content or content that does not change frequently."
PLG_SYSTEM_CACHE="System - Page Cache"
diff --git a/administrator/language/en-GB/plg_system_cache.sys.ini b/administrator/language/en-GB/plg_system_cache.sys.ini
index ad7b7a3f0d73..89b27dbec6df 100644
--- a/administrator/language/en-GB/plg_system_cache.sys.ini
+++ b/administrator/language/en-GB/plg_system_cache.sys.ini
@@ -3,5 +3,5 @@
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8
-PLG_CACHE_XML_DESCRIPTION="Provides page caching."
+PLG_CACHE_XML_DESCRIPTION="Provides page caching. This is only suitable for sites that have static content or content that does not change frequently."
PLG_SYSTEM_CACHE="System - Page Cache"
```
New language relevant PR in upstream repo: https://github.com/joomla/joomla-cms/pull/43378 Here are the upstream changes:
Click to expand the diff!
```diff diff --git a/administrator/language/en-GB/plg_system_cache.ini b/administrator/language/en-GB/plg_system_cache.ini index a88193c3fb29..51fff51d03fb 100644 --- a/administrator/language/en-GB/plg_system_cache.ini +++ b/administrator/language/en-GB/plg_system_cache.ini @@ -7,5 +7,5 @@ PLG_CACHE_FIELD_BROWSERCACHE_LABEL="Use Browser Caching" PLG_CACHE_FIELD_EXCLUDE_DESC="Specify which URLs you want to exclude from caching, each on a separate line. Regular expressions are supported, eg.about\-[a-z]+ - will exclude all URLs that have 'about-', for example 'about-us', 'about-me', 'about-joomla' etc.
/component/users/ - will exclude all URLs that have /component/users/.
com_users - will exclude all Users component pages." PLG_CACHE_FIELD_EXCLUDE_LABEL="Exclude URLs" PLG_CACHE_FIELD_EXCLUDE_MENU_ITEMS_LABEL="Exclude Menu Items" -PLG_CACHE_XML_DESCRIPTION="Provides page caching." +PLG_CACHE_XML_DESCRIPTION="Provides page caching. This is only suitable for sites that have static content or content that does not change frequently." PLG_SYSTEM_CACHE="System - Page Cache" diff --git a/administrator/language/en-GB/plg_system_cache.sys.ini b/administrator/language/en-GB/plg_system_cache.sys.ini index ad7b7a3f0d73..89b27dbec6df 100644 --- a/administrator/language/en-GB/plg_system_cache.sys.ini +++ b/administrator/language/en-GB/plg_system_cache.sys.ini @@ -3,5 +3,5 @@ ; License GNU General Public License version 2 or later; see LICENSE.txt ; Note : All ini files need to be saved as UTF-8 -PLG_CACHE_XML_DESCRIPTION="Provides page caching." +PLG_CACHE_XML_DESCRIPTION="Provides page caching. This is only suitable for sites that have static content or content that does not change frequently." PLG_SYSTEM_CACHE="System - Page Cache" ```