Q
Size: a a a
Q
Q
ST
ST
ST
Q
ST
ST
add_filter( 'gettext', 'cyb_filter_gettext', 10, 3 );
function cyb_filter_gettext( $translated, $original, $domain ) {
// Use the text string exactly as it is in the translation file
if ( $translated == "None" ) {
$translated = "View All";
}
return $translated;
}
ST
ST
ST
ST
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'None' :
$translated_text = __( 'Choose all', 'my_theme' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
N
В
В
В
ST
N
ST
N