Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
917 B
2
Indexable
Never
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 );