Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -1691,6 +1691,8 @@ |
1692 | 1692 | Transliterator |
1693 | 1693 | magicfile = Transliterator/Transliterator.i18n.magic.php |
1694 | 1694 | |
| 1695 | +Tree And Menu |
| 1696 | + |
1695 | 1697 | Trusted Math |
1696 | 1698 | |
1697 | 1699 | Trusted XFF |
Index: trunk/extensions/TreeAndMenu/TreeAndMenu.i18n.php |
— | — | @@ -0,0 +1,16 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for the TreeAndMenu extension. |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +$messages = array(); |
| 11 | + |
| 12 | +/** English */ |
| 13 | +$messages['en'] = array( |
| 14 | + 'treeandmenu-desc' => "Adds <code><nowiki>#tree</nowiki></code> and <code><nowiki>#menu</nowiki></code> parser functions which contain bullet-lists to be rendered as collapsible treeview's or dropdown menus. |
| 15 | +The treeview's use the [http://www.destroydrop.com/javascripts/tree dTree] JavaScript tree menu, and the dropdown menu's use [http://www.htmldog.com/articles/suckerfish/dropdowns/ Son of Suckerfish]", |
| 16 | +); |
| 17 | + |
Property changes on: trunk/extensions/TreeAndMenu/TreeAndMenu.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 18 | + native |
Index: trunk/extensions/TreeAndMenu/TreeAndMenu.php |
— | — | @@ -30,9 +30,7 @@ |
31 | 31 | 'name' => 'TreeAndMenu', |
32 | 32 | 'author' => array( '[http://www.organicdesign.co.nz/User:Nad Nad]', '[http://www.organicdesign.co.nz/User:Sven Sven]' ), |
33 | 33 | 'url' => 'http://www.mediawiki.org/wiki/Extension:TreeAndMenu', |
34 | | - 'description' => 'Adds #tree and #menu parser functions which contain bullet-lists to be rendered as collapsible treeview\'s or dropdown menus. |
35 | | - The treeview\'s use the [http://www.destroydrop.com/javascripts/tree dTree] JavaScript tree menu, |
36 | | - and the dropdown menu\'s use [http://www.htmldog.com/articles/suckerfish/dropdowns/ Son of Suckerfish]', |
| 34 | + 'descriptionmsg' => 'treeandmenu-desc', |
37 | 35 | 'version' => TREEANDMENU_VERSION |
38 | 36 | ); |
39 | 37 | |