function locale_update_6003

6.x locale.install locale_update_6003()

Prune strings with no translations (will be automatically re-registered if still in use)

Related topics

File

drupal-6.x/modules/locale/locale.install, line 141

Code

function locale_update_6003() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {locales_source} WHERE lid NOT IN (SELECT lid FROM {locales_target})");
  return $ret;
}