setlocale for date

Use date_i18n( $format, $i ); echo date_i18n(‘j F Y’, strtotime( $event_date[0] ) ) . ‘ ‘ . date_i18n(‘j F Y’, strtotime( $event_from_time[0] ) ) . ‘ do ‘ . date_i18n(‘j F Y’, strtotime( $event_to_time[0] ) ); See also: How to integrate get_post_time with date_i18n function?

Woocomerce language

This is pretty common issue with translations. If you have downloaded po/mo woocommerce translation files, you probably put them now in wp-content/woocommerce/languages folder. Please if this is the case try to move them to global languages folder in wp-content/languages/plugins. Also note that if you are moving them to global folder they should look something like … Read more

Overwrite default WordPress wording

You can filter ‘gettext’. Sample code, not tested: add_filter( ‘gettext’, ‘wpse_65085_change_error_messages’, 10, 3 ); function wpse_65085_change_error_messages( $translated, $text, domain ) { if ( ‘default’ !== $domain ) { return $translated; } switch( $text ) { case ‘Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case … Read more