Skip to content

Instantly share code, notes, and snippets.

@mbischof
Last active October 13, 2015 13:07
Show Gist options
  • Save mbischof/4199891 to your computer and use it in GitHub Desktop.
Save mbischof/4199891 to your computer and use it in GitHub Desktop.
onMissingTranslation
<?php
'components' => array(
'messages' => array(
'onMissingTranslation' => function ($event) {
echo sprintf('missing Translation: %s.%s.%s', $event->language, $event->category, $event->message);
exit;
}
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment