This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/i18n/i18nmenu/i18nmenu.install

16 lines
No EOL
263 B
Text

<?php
/**
* @file
* Installation file for i18nmenu module.
*/
/**
* Implementation of hook_enable().
*
* Create all strings from menus for translation.
*/
function i18nmenu_enable() {
drupal_load('module', 'i18nstrings');
i18nmenu_locale_refresh();
}