You are here

function locale_theme in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/locale/locale.module \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',
    ),
  );
}