Sure would appreciate the same. Do contact me at http://portfoliotheme.org/contact-us/ to send across the translated file and I will incorporate the same into the plugin. Thanks!
The text domain is already added and it is ‘livemesh-so-widgets’. What exactly are you missing?
I see this warning/error for lots of plugins hosted here. Let me take a closer look in next few days and get back to you. Thank you.
For information,
I also began to translate into French with PoEdit.
I get a good translation with livemesh-so-widgets-fr_FR.mo
in plugin language repository but not with the classical fr_FR.mo
Suggestion for helping translation,
in includes/helper-functions.php : Line 138
Modify
function lsow_entry_published($format = "M d, Y") {
$published = '<span class="published"><abbr title="' . sprintf(get_the_time(esc_html__('l, F, Y, g:i a', 'livemesh-so-widgets'))) . '">' . sprintf(get_the_time($format)) . '</abbr></span>';
return $published;
By
function lsow_entry_published($format = "M d, Y") {
$published = '<span class="published"><abbr title="' . sprintf(get_the_time(esc_html__('l, F, Y, g:i a', 'livemesh-so-widgets'))) . '">' . sprintf(get_the_date()) . '</abbr></span>';
return $published;
and suppress $link= (…) return $link; that’s not active code
get_the_date() use the default local date format
or if you prefer a more cutimized code put the format inside translation domain : sprintf(get_the_time(esc_html__(‘M d, Y’, ‘livemesh-so-widgets’)))