From 3a645f182b8bcf5d8757c964a2c3466dc2e3f502 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Mon, 23 Jul 2012 10:52:01 -0500 Subject: [PATCH] Improved language vars - refs #4776 --- main/admin/cli.php | 2 +- main/admin/system_management.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main/admin/cli.php b/main/admin/cli.php index c683c7aed3..5960bbe88c 100644 --- a/main/admin/cli.php +++ b/main/admin/cli.php @@ -22,7 +22,7 @@ api_protect_admin_script(); * Main code */ // setting the name of the tool -$tool_name = get_lang('CLI'); +$tool_name = get_lang('CommandLineInterpreter'); // setting breadcrumbs $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); // including the header file (which includes the banner itself) diff --git a/main/admin/system_management.php b/main/admin/system_management.php index c7cfa90dc7..5f72488a87 100644 --- a/main/admin/system_management.php +++ b/main/admin/system_management.php @@ -53,7 +53,7 @@ class SystemManagementPage extends AdminPage if ($access_url_id === 1) { if (api_is_windows_os()) { - $message2 .= get_lang('SpaceUsedOnSystemCannotBeMeasuresOnWindows'); + $message2 .= get_lang('SpaceUsedOnSystemCannotBeMeasuredOnWindows'); } else { $dir = api_get_path(SYS_PATH); $du = exec('du -sh ' . $dir, $err);