是否将语言本地化添加到Java脚本警报? 时间:2018-01-31 作者:Steve 我有一系列插件的语言文件。一切正常。如果添加javascript警报,如何翻译警报的文本?PHP将是__(\'example text\', \'context\');JS的等效值是什么alert(\'example text\');有可能吗? 1 个回复 SO网友:John Dee 这是一种不用wp_localize_script. 当我想在HEREDOC中可视化输出时,我用表单和脚本这样做。我将一个变量命名为类似于母语英语中的字符串的名称,首先命名为l18n,然后将其放在heredoc中的位置:$someText = __(\'Some Text\', \'myPluginSlug\'); $helloWorld = __(\'Hello World!!\', \'myPluginSlug\'); $output = <<<OUTPUT $someText <script> alert(\'$helloWorld\'); </script> OUTPUT; return $output; 结束 文章导航