Changeset 494 for trunk/modules/user_guide
- Timestamp:
- 09/03/2007 09:22:15 PM (15 months ago)
- Location:
- trunk/modules/user_guide
- Files:
-
- 1 added
- 2 modified
-
i18n/en/User_guide.php (modified) (1 diff)
-
i18n/en/User_guide_menu.php (added)
-
views/user_guide/template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/user_guide/i18n/en/User_guide.php
r493 r494 4 4 $lang = array 5 5 ( 6 /**7 * Kohana User Guide Menu8 * Topics in Categories (Eg, General, Libraries)9 * Articles in Sections (Eg, Installation)10 * Libraries and Helpers are in alphabetic order11 * Other Categories are in logical order12 */13 'menu' => array14 (15 'Kohana' => array16 (17 'About',18 'Requirements',19 'Downloads',20 'Installation',21 'Links'22 ),23 'General' => array24 (25 'Definitions',26 'Bootstrapping',27 'Configuration',28 'Libraries',29 'Controllers',30 'Models',31 'Views',32 'Helpers'33 ),34 'Libraries' => array35 (36 'Cache',37 'Controller',38 'Database',39 'Encryption',40 'Input',41 'Loader',42 'Model',43 'Pagination',44 'Router',45 'Session',46 'URI',47 'View'48 ),49 'Helpers' => array50 (51 'Cookie',52 'File',53 'Html',54 'Text',55 'Url'56 )57 ),58 6 'title' => 'Kohana User Guide', 59 7 'copyright' => 'copyright (c) %s Kohana Team :: All rights reserved :: Rendered in {execution_time} seconds using {memory_usage}MB of memory', -
trunk/modules/user_guide/views/user_guide/template.php
r487 r494 37 37 <?php 38 38 39 foreach(Kohana::lang('user_guide .menu') as $category => $menu):39 foreach(Kohana::lang('user_guide_menu') as $category => $menu): 40 40 41 41 $active = (strtolower($category) == $active_category) ? ' active' : '';
