jesseeproductions

The Events Calendar Translate Venue to Place

Sep 4th, 2014
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function filter_translations($translation, $text, $domain) {
  2. if ($domain == 'tribe-events-calendar') {
  3. switch ($text) {
  4. case 'Venue':
  5. $translation = 'Place';
  6. break;
  7. }
  8. switch ($text) {
  9. case 'Organizer':
  10. $translation = 'Instructor';
  11. break;
  12. }
  13. }
  14. return $translation;
  15. }
  16. add_filter('gettext', 'filter_translations', 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment