summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaime Pérez <jaime.perez@uninett.no>2016-11-09 14:51:54 +0100
committerJaime Pérez <jaime.perez@uninett.no>2016-11-09 14:51:54 +0100
commitd66b9fd91424d89cd9fa619fcf243fbf1ef3e01f (patch)
tree973eb5387af88a47887597ea0acf06cfaba38f96
parent9c32b516564a4aae93457b85afb1f5fc2c1d2bb0 (diff)
downloadsimplesamlphp-d66b9fd91424d89cd9fa619fcf243fbf1ef3e01f.zip
simplesamlphp-d66b9fd91424d89cd9fa619fcf243fbf1ef3e01f.tar.gz
simplesamlphp-d66b9fd91424d89cd9fa619fcf243fbf1ef3e01f.tar.bz2
Add missing translations for “required” and “optional” strings when checking PHP extensions installed.
-rw-r--r--modules/core/www/frontpage_config.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/core/www/frontpage_config.php b/modules/core/www/frontpage_config.php
index b8cb6f9..7f92a6e 100644
--- a/modules/core/www/frontpage_config.php
+++ b/modules/core/www/frontpage_config.php
@@ -177,7 +177,11 @@ $t->data['links_federation'] = $links_federation;
$t->data['enablematrix'] = $enablematrix;
$t->data['funcmatrix'] = $funcmatrix;
-$t->data['requiredmap'] = array('recommended' => $t->noop('{core:frontpage:recommended}'));
+$t->data['requiredmap'] = array(
+ 'recommended' => $t->noop('{core:frontpage:recommended}'),
+ 'required' => $t->noop('{core:frontpage:required}'),
+ 'optional' => $t->noop('{core:frontpage:optional}'),
+);
$t->data['version'] = $config->getVersion();
$t->data['directory'] = dirname(dirname(dirname(dirname(__FILE__))));