Improved language vars - refs #4776

skala
Yannick Warnier 13 years ago
parent d687504fa8
commit 3a645f182b
  1. 2
      main/admin/cli.php
  2. 2
      main/admin/system_management.php

@ -22,7 +22,7 @@ api_protect_admin_script();
* Main code * Main code
*/ */
// setting the name of the tool // setting the name of the tool
$tool_name = get_lang('CLI'); $tool_name = get_lang('CommandLineInterpreter');
// setting breadcrumbs // setting breadcrumbs
$interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
// including the header file (which includes the banner itself) // including the header file (which includes the banner itself)

@ -53,7 +53,7 @@ class SystemManagementPage extends AdminPage
if ($access_url_id === 1) { if ($access_url_id === 1) {
if (api_is_windows_os()) { if (api_is_windows_os()) {
$message2 .= get_lang('SpaceUsedOnSystemCannotBeMeasuresOnWindows'); $message2 .= get_lang('SpaceUsedOnSystemCannotBeMeasuredOnWindows');
} else { } else {
$dir = api_get_path(SYS_PATH); $dir = api_get_path(SYS_PATH);
$du = exec('du -sh ' . $dir, $err); $du = exec('du -sh ' . $dir, $err);

Loading…
Cancel
Save