맛집 여행 캠핑 일상 생활

워드프레스 Warning: sprintf() 워닝 본문

IT이야기

워드프레스 Warning: sprintf() 워닝

영은파더♥ 2018. 4. 10. 10:45

워드프레스 Warning: sprintf() 워닝


우커머스를 설치하고 설정작업을 하다보니 아래와 같은 에러메시지가 나오네요~

Warning: sprintf(): Too few arguments in 

C:\xampp\htdocs\wordpress\wp-content\plugins\woocommerce\includes\admin\class-wc-admin-help.php on line 53

Warning: sprintf(): Too few arguments in 

C:\xampp\htdocs\wordpress\wp-content\plugins\woocommerce\includes\gateways\paypal\class-wc-gateway-paypal.php on line 37


수정을 위해서는 POEDIT 로 번역을 편집하고 .po 를 .mo 로 변환하여야 합니다.


class-wc-admin-help.php 53 라인

/* translators: %s: Forum URL */

__( 'For further assistance with WooCommerce core you can use the <a href="%1$s">community forum</a>. If you need help with premium extensions sold by WooCommerce, please <a href="%2$s">use our helpdesk</a>.', 'woocommerce' ),

'https://wordpress.org/support/plugin/woocommerce',

'https://woocommerce.com/my-account/tickets/?utm_source=helptab&utm_medium=product&utm_content=tickets&utm_campaign=woocommerceplugin'

실제론 51 라인이더군요~

sprintf 문법 오류인가 봅니다.


For further 문구가 있는 파일을 검색합니다.

msgid "For further assistance with WooCommerce core you can use the <a href=\"%1$s\">community forum</a>. If you need help with premium extensions sold by WooCommerce, please <a href=\"%2$s\">use our helpdesk</a>."

msgstr "WooCommerce 코어에 대한 추가 도움을 받기 위해 %s커뮤티니 포럼%s을 사용할 수 있습니다. WooThemes에서 구매할 수 있는 프리미엄 애드온에 대해 도움이 필요하면 %s당사의 기술 지원팀을%s 이용하십시오."


msgstr 을 아래 처럼 수정해주면 됩니다.

msgstr "WooCommerce 코어에 대한 추가 도움을 받기 위해 <a href=\"%1$s\">커뮤티니 포럼</a>을 사용할 수 있습니다. WooThemes에서 구매할 수 있는 프리미엄 애드온에 대해 도움이 필요하면 <a href=\"%2$s\">당사의 기술 지원팀을</a> 이용하십시오."


수정은 POEDIT 프로그램으로 변경을 한 뒤에 .po 를 .mo 로 변환합니다.

프로그램은 https://poedit.net/ 여기에서 다운로드 받으시면 됩니다.

수정하고 저장을 누르면 됩니다.


Trackback : | Comments :