mirror of
https://github.com/moodle/moodle.git
synced 2025-01-23 16:48:36 +01:00
ee8b1abe65
- new Coding Guidelines - new Philosophy page - new dedicated styles sheet for all pages - better table of contents in left frame - source fixups all over The styles are very boring - I'll work on that next time! Also, we'll get David's optimisation page and a student manual in there.
32 lines
980 B
PHP
32 lines
980 B
PHP
<?php // $Id$
|
|
// Names of the documentation files
|
|
// Files with a definition "-" are treated as spacers
|
|
|
|
$string['-about'] = "About Moodle";
|
|
$string['intro.html'] = "Introduction";
|
|
$string['background.html'] = "Background";
|
|
$string['philosophy.html'] = "Philosophy";
|
|
$string['licence.html'] = "License";
|
|
$string['features.html'] = "Features";
|
|
$string['release.html'] = "Release Notes";
|
|
$string['future.html'] = "Future";
|
|
$string['credits.html'] = "Credits";
|
|
|
|
$string['-installation'] = "Administration";
|
|
$string['install.html'] = "Installation";
|
|
$string['faq.html'] = "Installation FAQ";
|
|
$string['installamp.html'] = "Apache, MySQL, PHP";
|
|
$string['upgrade.html'] = "Upgrading";
|
|
|
|
$string['-usage'] = "Using Moodle";
|
|
$string['teacher.html'] = "Teacher Manual";
|
|
$string['other.html'] = "Other Docs";
|
|
|
|
$string['-development'] = "Development";
|
|
$string['developer.html'] = "Developer Manual";
|
|
$string['coding.html'] = "Coding Guide";
|
|
$string['cvs.html'] = "Using CVS";
|
|
|
|
|
|
?>
|