diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-20 02:08:03 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-20 02:08:03 +0000 |
commit | a5a9a79fa6a162d556b27020c3489fc2f27077e1 (patch) | |
tree | fecbd84d2087a22a4225817f58ec760a6e20a28b | |
parent | 0f10f37c1656d0fa9e4eb90ccb367c6a0293b4e7 (diff) |
Internationalize.
-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 237d6ff0..c3615889 100644 --- a/core/views/admin_block_platform.html.php +++ b/core/views/admin_block_platform.html.php @@ -1,15 +1,15 @@ <? defined("SYSPATH") or die("No direct script access."); ?> <ul> <li> - Operating System: <?= PHP_OS ?> + <? printf(_("Operating System: %s"), PHP_OS) ?> </li> <li> - Apache: <?= apache_get_version() ?> + <? printf(_("Apache: %s"), apache_get_version()) ?> </li> <li> - PHP <?= phpversion() ?> + <? printf(_("PHP %s"), phpversion()) ?> </li> <li> - MySQL: <?= mysql_get_server_info() ?> + <? printf(_("MySQL: %s"), mysql_get_server_info()) ?> </li> </ul> |