diff options
Diffstat (limited to 'core/views/admin_block_platform.html.php')
-rw-r--r-- | core/views/admin_block_platform.html.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/views/admin_block_platform.html.php b/core/views/admin_block_platform.html.php index 958097a1..2f13d5d9 100644 --- a/core/views/admin_block_platform.html.php +++ b/core/views/admin_block_platform.html.php @@ -1,15 +1,15 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <ul> <li> - <? printf(_("Operating System: %s"), PHP_OS) ?> + <?= t("Operating System: {{operating_system}}", array("operating_system" => PHP_OS)) ?> </li> <li> - <? printf(_("Apache: %s"), function_exists("apache_get_version") ? apache_get_version() : _("Unknown")) ?> + <?= t("Apache: {{apache_version}}", array("apache_version" => function_exists("apache_get_version") ? apache_get_version() : t("Unknown"))) ?> </li> <li> - <? printf(_("PHP: %s"), phpversion()) ?> + <?= t("PHP: {{php_version}}", array("php_version" => phpversion())) ?> </li> <li> - <? printf(_("MySQL: %s"), mysql_get_server_info()) ?> + <?= t("MySQL: {{mysql_version}}", array("mysql_version" => mysql_get_server_info())) ?> </li> </ul> |