Woocommerce电子邮件中日期的翻译错误

时间:2018-10-24 15:17:33

标签: php wordpress woocommerce

Woocommerce发送的客户收到的电子邮件中的日期不进行翻译。

/templates/emails/email-order-details.php中,我有以下内容:

echo wp_kses_post( $before . sprintf( __( 'Order #%s', 'woocommerce' ) . $after . ' (<time datetime="%s">%s</time>)', $order->get_order_number(), $order->get_date_created()->format( 'c' ), wc_format_datetime( $order->get_date_created() ) ) );

wc_format_datetime()的结果是“ 2018年10月24日”,而不是“ 2018年10月24日”(法语)。

所有其他内容都用法语翻译。 我还尝试将这段代码添加到另一页中,并且它可以正常工作。

谢谢!

0 个答案:

没有答案