I'm trying to implode an array of values that are wrapped in a i18n function as shown here:
<?php echo implode( ', ', __($joblanguages, 'my-text-domain') ); ?>
I'm getting the following error message:
Warning: Illegal offset type in isset or empty in /Applications/XAMPP/xamppfiles/htdocs/vemas-2012/wp-includes/pomo/translations.php on line 72
Is there any way to fix this and get the values in the chosen language?
Thanks in advance!