You are here

function theme_entity_translation_overview_outdated in Entity Translation 7

Theme wrapper for the entity translation language outdated translation.

1 theme call to theme_entity_translation_overview_outdated()
entity_translation_overview in ./entity_translation.admin.inc
Translations overview page callback.

File

./entity_translation.admin.inc, line 452
The entity translation user interface.

Code

function theme_entity_translation_overview_outdated($variables) {
  $message = $variables['message'];
  return ' - <span class="marker">' . $message . '</span>';
}