function locale_theme

Implements hook_theme().

File

drupal/core/modules/locale/locale.module, line 253
Enables the translation of the user interface to languages other than English.

Code

function locale_theme() {
  return array(
    'locale_translate_edit_form_strings' => array(
      'render element' => 'form',
      'file' => 'locale.pages.inc',
    ),
    'locale_translation_last_check' => array(
      'variables' => array(
        'last' => NULL,
      ),
      'file' => 'locale.pages.inc',
    ),
    'locale_translation_update_info' => array(
      'arguments' => array(
        'updates' => array(),
        'not_found' => array(),
      ),
      'file' => 'locale.pages.inc',
    ),
  );
}