Advertisement
eventsmanager

translate message "The email address......"

Jun 20th, 2013
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function my_em_text_rewrites($translation, $orig) {
  2. switch ($orig) {
  3. case 'The email address isn’t correct.' :
  4. $translation = 'The email address should not be empty: ';
  5. break;
  6. case '<strong>ERROR</strong>: The email address isn&#8217;t correct.' :
  7. $translation = '<strong>ERROR</strong>: The email address should not be empty. ';
  8. break;
  9. }
  10. return $translation;
  11. }
  12. add_action ( 'gettext', 'my_em_text_rewrites', 1, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement