function locale_translation_clear_status

Clear the translation status cache.

1 call to locale_translation_clear_status()
locale_system_file_system_settings_submit in drupal/core/modules/locale/locale.module
Submit handler for the file system settings form.

File

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

Code

function locale_translation_clear_status() {
  state()
    ->delete('locale_translation_status');
  state()
    ->delete('locale_translation_status_last_update');
}