locale_theme()
Implements hook_theme().
File
- core/modules/locale/locale.module, line 184
- Enables the translation of the user interface to languages other than English.
Code
function locale_theme() {
return array(
'locale_translation_last_check' => array(
'variables' => array('last' => NULL),
'file' => 'locale.pages.inc',
),
'locale_translation_update_info' => array(
'variables' => array('updates' => array(), 'not_found' => array()),
'file' => 'locale.pages.inc',
),
);
}
Please login to continue.