Browse Source

Improved language vars - refs #4776

Yannick Warnier 12 years ago
parent
commit
3a645f182b
2 changed files with 2 additions and 2 deletions
  1. 1 1
      main/admin/cli.php
  2. 1 1
      main/admin/system_management.php

+ 1 - 1
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)

+ 1 - 1
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);