我正在跟踪this 官方指南国际化我的插件。但我很困惑,如果字符串中有变量,是否需要提示?
printf(
/* translators: 1: Name of a city 2: ZIP code */
__( \'Your zip code is %2$s, and your city is %1$s.\', \'my-plugin\' ),
$city,
$zipcode
);
同样在本文档中,未提及在何处使用
load_plugin_textdomain
加载文本域。只提到了
Domain Path
. 我可以省略吗
load_plugin_textdomain
如果我使用
Domain Path
?