actions - Translate are not working for standard admin

I'm developing a plugin which uses strings of the "default" textdomain, but several strings will not show

I'm developing a plugin which uses strings of the "default" textdomain, but several strings will not shown translated.

My locale language is "de_DE" (german). I try to access the word "Count", which is available inside the "admin-de_DE.po" file. (To make sure, the loaded .mo file is actual, I compiled it with Poedit and Loco for debugging.) Other strings of that file will be shown translated, for example "[Pending]" as "[Ausstehend]", but not "Count" as "Anzahl".

What is my mistake?

add_action( 'admin_init', 'action_admin_init' );
function action_admin_init() {
  _e( 'Count' );
}

I'm developing a plugin which uses strings of the "default" textdomain, but several strings will not shown translated.

My locale language is "de_DE" (german). I try to access the word "Count", which is available inside the "admin-de_DE.po" file. (To make sure, the loaded .mo file is actual, I compiled it with Poedit and Loco for debugging.) Other strings of that file will be shown translated, for example "[Pending]" as "[Ausstehend]", but not "Count" as "Anzahl".

What is my mistake?

add_action( 'admin_init', 'action_admin_init' );
function action_admin_init() {
  _e( 'Count' );
}
Share Improve this question asked Jul 16, 2019 at 8:29 TahtuTahtu 1173 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

The only instance of "Count" I can see in the default domain's admin file has a context value of "Number/count of items". So your code should be:

add_action( 'admin_init', 'action_admin_init' );
function action_admin_init() {
  _ex( 'Count', 'Number/count of items' );
}

Ref: _ex.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745318421a4622328.html

相关推荐

  • actions - Translate are not working for standard admin

    I'm developing a plugin which uses strings of the "default" textdomain, but several strings will not show

    6小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信