Translate certain strings
-
Hi,
I tried to translate days of the week (mon, tue…) and months into other language and I wasn’t capable. I tried using Loco Translate and also using a tweak like this but I wasn’t sucesfull (I could with “Search events…” and “day, week, month” but not other ones):
add_filter( ‘gettext’, ‘bbloomer_translate_woocommerce_string’, 999 );
function bbloomer_translate_woocommerce_string( $translated ) {
$translated = str_ireplace( ‘TEXTO-ORIGEN’, ‘TU-TRADUCCION’, $translated );
return $translated;
}How can I translate that strings?
Thanks!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Translate certain strings’ is closed to new replies.