WooCommerce 订阅 - 通知翻译不起作用
WooCommerce Subscription - Notice translation is not working
即使我在 .po/.mo 文件中添加日语 (ja) 消息,WooCommerce 通知也不会被翻译 [PoEdit]
Complete checkout to resubscribe.
if ( WC()->cart->get_cart_contents_count() != 0 ) {
wc_add_notice( __( 'Complete checkout to resubscribe', 'woocommerce-subscriptions' ), 'success' );
}
我检查了代码,它正在通过翻译功能。从 wp-admin 切换到不同的语言。没有任何效果。
有什么解决办法吗?
我成功了。单击 "Update from Sources" 时,我的翻译文件未通过 poedit
更新
实际上在“includes/class-wc-subscriptions-change-payment-gateway.php
”#L41 文件中有一个错误说不正确 - 当我检查双引号符号时,它看起来像是倒置的双引号符号。更正并更新 po 并保存后,翻译已反映在站点中。
即使我在 .po/.mo 文件中添加日语 (ja) 消息,WooCommerce 通知也不会被翻译 [PoEdit]
Complete checkout to resubscribe.
if ( WC()->cart->get_cart_contents_count() != 0 ) {
wc_add_notice( __( 'Complete checkout to resubscribe', 'woocommerce-subscriptions' ), 'success' );
}
我检查了代码,它正在通过翻译功能。从 wp-admin 切换到不同的语言。没有任何效果。 有什么解决办法吗?
我成功了。单击 "Update from Sources" 时,我的翻译文件未通过 poedit
更新
实际上在“includes/class-wc-subscriptions-change-payment-gateway.php
”#L41 文件中有一个错误说不正确 - 当我检查双引号符号时,它看起来像是倒置的双引号符号。更正并更新 po 并保存后,翻译已反映在站点中。