How to translate timestamp?

时间:2019-02-21 作者:Buramiko

这个脚本的主题是我在文章中购买的输出“3天前于2019年2月21日发布”。但是,我无法翻译“%s ago”,其中包括分钟、小时、天等变量。仅翻译这些变量的最佳方法是什么?

<?php esc_html_e( \'Published\', \'enews\' ); ?>
<?php printf(esc_html__( \'%s ago\', \'enews\' ), human_time_diff( get_the_time( \'U\' ), current_time( \'timestamp\' ) ) );?> 
<?php esc_html_e( \'on\', \'enews\' ); ?><time itemprop="datePublished" datetime="<?php the_time(\'Y-m-d\'); ?>">
<?php the_time(get_option(\'date_format\')); ?></time>

1 个回复
SO网友:Tim

这个"%s" 将替换为WordPress核心“默认”文本域中翻译的字符串。e、 g。"%s mins", "%s hours", 等

在您的核心翻译文件中找到这些内容,并进行翻译。

相关推荐

Translation for plugin

我修改了a。po文件,基本上是我以txt文件的形式打开并进行了更改,但是我上传了它,并且更改不起作用。我想知道我是否需要一个特殊的软件来做和生成一个新的。mo每次我做出改变,或者我错过了什么?提前感谢