function i18nmenu_help in Internationalization 5
Same name and namespace in other branches
- 5.3 contrib/i18nmenu.module \i18nmenu_help()
- 5.2 contrib/i18nmenu.module \i18nmenu_help()
- 6 i18nmenu/i18nmenu.module \i18nmenu_help()
File
- contrib/
i18nmenu.module, line 39
Code
function i18nmenu_help($section = 'admin/help#i18nmenu') {
switch ($section) {
case 'admin/help#i18nmenu':
return t('
<p>This module provides support for translatable custom menu items:</p>
<ul>
<li>Create menus as usual, with names in English. If the menu is already created, no changes are needeed</li>
<li>Show the menu in some block</li>
<li>Switch language to some non english one -while viewing the block-, so the <i>locales</i> table is populated with the new strings</li>
<li>Use the localization system to translate menu item strings</li>
</ul>');
}
}