New module 'Internationalization'

This commit is contained in:
Manuel Cillero 2017-07-26 13:27:55 +02:00
parent e997e7a20c
commit 003589f73e
47 changed files with 8417 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?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();
}