webcompanysale
posted this
01 May 2017

HI
I WANT THAT BUTTON IN FRANCE LANGUAGE
Vote to pay developers attention to this features or issue.
HI
I WANT THAT BUTTON IN FRANCE LANGUAGE
It's simple, check the documentation of that:
https://docs.woocommerce.com/document/woocommerce-localization
I TRANSLLTE ALL FIELD AND DONT SEE THAT WORDS
I TRANSLLTE ALL FIELD AND DONT SEE THAT WORDSHow did you translate it? Loco Translate?
How did you translate it? Loco Translate?HI
I INSTALLED LOCO TRANSLATE AND NOT FIND THE TRANSLATIONS LIKE IN IMAGE.
I NEED THE SITE IN FRANCE LANGUAGE
THANKS
Add this to your Settings -> CMS code field:
add_filter( 'gettext', 'wps_translate_words_array' );
add_filter( 'ngettext', 'wps_translate_words_array' );
function wps_translate_words_array( $translated ) {
$words = array(
// 'word to translate' = > 'translation'
'Proceed to Checkout →' => 'your text ',
);
$translated = str_ireplace( array_keys($words), $words, $translated );
return $translated;
}
**Add this to your Settings -> CMS code field:**
add_filter( 'gettext', 'wps_translate_words_array' );
add_filter( 'ngettext', 'wps_translate_words_array' );
function wps_translate_words_array( $translated ) {
$words = array(
// 'word to translate' = > 'translation'
'Proceed to Checkout →' => 'your text ',
);
$translated = str_ireplace( array_keys($words), $words, $translated );
return $translated;
}
this is for all ta translations in this page?
this is for all ta translations in this page?