Untitled
unknown
plain_text
3 years ago
917 B
9
Indexable
function daniele_product_tags_gettext( $translation, $text, $domain ) {
switch ( $translation ) {
case 'Products tagged “%s”' :
$translation = __( 'Products worn by %s', 'woocommerce' );
break;
case 'Produkte verschlagwortet mit „%s“' :
$translation = __( 'Produkte getragen von %s', 'woocommerce' );
break;
case 'Produits identifiés “%s”' :
$translation = __( 'Produits portés par %s', 'woocommerce' );
break;
case 'Prodotti taggati “%s”' :
$translation = __( 'Prodotti indossati da %s', 'woocommerce' );
break;
case 'Productos etiquetados “%s”' :
$translation = __( 'Productos usados por %s', 'woocommerce' );
break;
}
return $translation;
}
add_filter( 'gettext', 'daniele_product_tags_gettext', 20, 3 );Editor is loading...