summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/system/system.admin.inc
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/system/system.admin.inc')
-rw-r--r--core/modules/system/system.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc
index ce55fca7bf6b..bdadaddff9ae 100644
--- a/core/modules/system/system.admin.inc
+++ b/core/modules/system/system.admin.inc
@@ -336,11 +336,11 @@ function template_preprocess_system_themes_page(&$variables) {
}
elseif (!empty($theme->module_dependencies_disabled)) {
if (!empty($theme->insufficient_module_permissions)) {
- $current_theme['incompatible'] = t('This theme requires the listed modules to operate correctly. They must first be enabled by a user with permissions to do so.');
+ $current_theme['incompatible'] = t('This theme requires the listed modules to operate correctly. They must first be installed by a user with permissions to do so.');
}
else {
$modules_url = (string) Url::fromRoute('system.modules_list')->toString();
- $current_theme['incompatible'] = t('This theme requires the listed modules to operate correctly. They must first be enabled via the <a href=":modules_url">Extend page</a>.', [
+ $current_theme['incompatible'] = t('This theme requires the listed modules to operate correctly. They must first be installed via the <a href=":modules_url">Extend page</a>.', [
':modules_url' => $modules_url,
]);
}